cURL Error: 0AufBox
https://blog.cojusna.top
Fri, 20 Feb 2026 10:54:55 +0000ro-RO
hourly
1 https://wordpress.org/?v=6.9.4https://blog.cojusna.top/wp-content/uploads/2026/02/cropped-24be6bb7c73bca2ad18b1a362831697a381a56cf-32x32.pngAufBox
https://blog.cojusna.top
3232Distribution comparison.
https://blog.cojusna.top/hello-world/
https://blog.cojusna.top/hello-world/#respondSat, 10 Jan 2026 12:34:00 +0000https://blog.cojusna.top/hello-world/This post is written by AI based on it’s memory of me.
Debian vs Arch (CachyOS) vs Fedora — A Practical Comparison After Using All Three
I’ve used Debian, Arch (CachyOS), and Fedora as daily drivers and for servers.
Each of them shaped how I think about Linux systems — stability, control, and update cadence.
This isn’t a “which is best” post.
It’s about what each one feels like in real use.
Debian — Stability and Long-Term Confidence
Debian is the distribution I trust the most when I want something to just work.
What I liked
Extremely stable (especially Stable branch)
Massive documentation and community support
Predictable behavior over time
Great for servers and long-term deployments
Once Debian is installed and configured, it barely surprises you. Updates are conservative, packages are well-tested, and the system feels “mature”.
What I didn’t like
Packages can be older
Hardware support may lag behind
Less “bleeding-edge” software without backports or manual installs
Debian feels like infrastructure.
If I were deploying something critical that must not break — Debian is my default choice.
Arch (CachyOS) — Control and Performance
Arch Linux is about control.
CachyOS adds performance tweaks and optimizations on top of Arch, making it more accessible and faster out of the box.
What I liked
Rolling release model (always up to date)
Full control over installed components
Minimalism — you build your system
Access to AUR (huge software ecosystem)
CachyOS optimizations for performance
Arch feels empowering. You know exactly what is running on your system because you chose it.
CachyOS makes Arch more practical by:
Providing optimized kernels
Preconfigured performance tweaks
Easier installation
What I didn’t like
Occasional breakage risk
Requires attention during upgrades
Not ideal for “set and forget”
Arch/CachyOS is perfect when you:
Want maximum control
Enjoy tweaking
Run modern hardware
Like understanding your system deeply
It feels like engineering your own environment.
Fedora — The Middle Ground
Fedora surprised me the most.
It combines:
Modern packages
Fast update cadence
Reasonable stability
Clean defaults
What I liked
New kernels quickly
Good hardware support
SELinux by default
Strong upstream alignment
Very clean GNOME experience
Fedora updates frequently, but not recklessly.
It feels modern without being chaotic.
What I didn’t like
Shorter release lifecycle compared to Debian
Slightly less minimal than Arch
Fedora feels like a balanced workstation OS:
More up-to-date than Debian
More stable than pure Arch
Less maintenance overhead than rolling release
Stability vs Control vs Freshness
Here’s how I mentally map them:
Distribution
Stability
Fresh Packages
Control
Maintenance Effort
Debian
Arch/CachyOS
Fedora
When I Would Choose Each
I’d choose Debian if:
It’s a server
It’s a production environment
I need long-term reliability
I don’t want surprises
I’d choose Arch/CachyOS if:
It’s a personal machine
I want full control
I care about performance tuning
I enjoy system customization
I’d choose Fedora if:
It’s a development workstation
I want new features without chaos
I want good hardware support
I want balance
Final Thoughts
Debian feels like infrastructure.
Arch (CachyOS) feels like control.
Fedora feels like balance.
After using all three, I don’t think there is a universally “best” distribution.
There is only the right tool for a specific mindset and purpose.
Right now, Fedora feels like the best compromise for a daily driver.
But Debian still wins my trust.
And Arch/CachyOS still wins my respect.
]]>
https://blog.cojusna.top/hello-world/feed/0Setting Up My Dev Environment
https://blog.cojusna.top/dev-environment/
https://blog.cojusna.top/dev-environment/#respondSat, 10 Jan 2026 12:34:00 +0000https://blog.cojusna.top/dev-environment/Setting Up My Dev Environment
A quick breakdown of my current development setup.
Tools
Tool
Purpose
neovim
Primary editor
tmux
Terminal multiplexer
zsh
Shell
docker
Containerization
Shell Config
# .zshrc essentials
export EDITOR="nvim"
alias gs="git status"
alias gc="git commit"
alias gp="git push"
# prompt
PROMPT='%F{green}❯%f '