mjrich wrote:
Sorry to hear that Debian didn't work out for you -- it's a brilliant distribution. Should you need it in future (and because I couldn't resist):
Thanks for your response. I really like the Debian philosophy; I like the "sticking to principles" aspect of Debian, and the fact that its a distribution that never seems to shy away from maintaining those principles, even if it is more difficult at times. There are things I really like about Debian in theory, but somehow, when the rubber hits the road, I just can never get the hang of it. And I've been using Linux almost exclusively since 1994 (Yggdrasil -> RedHat -> Fedora -> Arch) so ... I've seen my share of distributions, it's not like I'm unfamiliar with Unix administration in general. Debian has its own way of doing things and while I admire the principles, I somehow constantly get caught up in the myriad of little details every time I try to use Debian.
And just to give some examples of why Arch is just so much easier:
Quote:
bji wrote:
to install a package
apt-get update && apt-get install <package>
pacman -Sy <package>
Quote:
bji wrote:
or figure out what packages are installed on my system.
apt-cache policy <package>
or, dpkg --get-selections | grep foo
pacman -Q | grep foo
Quote:
bji wrote:
creating a new package
By modifying some existing source:
apt-get build-dep <package>
~~ Edit source code ~~
dpkg-buildpackage -rfakeroot -uc -b
Quote:
There is no simple tool for building a package "automatically" in Arch, at least not one that I know of. However, the process itself is simple enough that it doesn't really require such a tool.
Quote:
By converting from the Fedora rpm:
alien <package.rpm>
dpkg -i <package>
Not sure if you can do this in Arch. Probably not.
Quote:
Building a package completely from scratch is of course a little more complex, but how often do you need to do that ?

In my case, there were a few packages that I did need to build from source. They were:
- tmda
- tmda-cgi
- gallery2
I created Arch packages for them fairly easily, and added them to the AUR (Arch User Repository) easily too.
Anyway, nothing against Debian - like I said, I admire it and if I had more time to devote to it, I am sure it would be a great choice.