debtree, posted an article showing the evolution in size of the GNOME desktop environment in recent Debian releases. The picture he paints isn't particularly pretty: the default GNOME install has increased drastically in size over the years.To view parent comment, click here.
To read all comments associated with this story, please click here.
Rule one in Linux code land: don't believe anything Kroah Hartman says. I'm in full agreement with you on devfs. I used it, I liked it, I adapted a few drivers to use it, and followed the saga around it closely, essentially Greg "Arsehole" KH drove the devfs maintainer away by being a complete ass. Udev is the dumbest idea ever, why have a userspace daemon manage something that originates in kernel space in the first place? Oh, and as for your major/minor numbers, have an ls -l on your /dev... yep, device nodes still have them. At least most distros are smart enough to put udev's tree on a ram disk, but this is a cludgy workaround that shouldn't be necessary. Solaris, FreeBSD, OS X... and just about every other UNIX out there has used a devfs for years. Only in Linux land could an inferior idea displace a superior one because of loud voices.
Edited 2009-09-08 21:43 UTC
I'm sure you've read about Greg defending udev, but here it is anyway:
http://kernel.org/pub/linux/utils/kernel/hotplug/udev_vs_devfs
Sounds convincing enough for me.
That was indeed a major FAIL. I knew that major and minor number still exist. What I meant is now they don't mean anything anymore, they're just a pool of numbers that are not bound to any specific driver.
These days it looks like distros are trying to make their boot times shorter. I wonder if they're going to open up the devfs bag again.
I think what shocked me most when I had to switch to udev was how much it slowed down booting — Even with a tmpfs. I told myself: "oh well, maybe it'll improve over time". It didn't.
My ethernet card jumps to eth2 instead of eth0 for no good reason once in a while. Which pisses me off because I've got to go edit /etc/udev/rules.d/blabla and then modprobe -r driver ; modprobe driver. No such problem with devfs. Fortunately I don't reboot often.




It's there and it's as useless as the linux one.
Member since:
2009-03-30
FreeBSD has a devfs which is quite a different beast from udev on Linux. With udev you have a tmpfs mounted on /dev and udev, a userland daemon, populates the /dev directory with whatever info the kernel sends it. It's fat, slows down boot time and there are the problems you mention with the ethernet cards amongst others. Devfs on the otherhand is in the kernel and is slimer, and orders of magnitude faster. Linux used to have a devfs (I used it full time, never had problems with it) but it was deprecated because the code was said to be hard to understand and no one wanted to fix the races devfs was said to have. Kroah-Hartmann's udev was chosen instead. And this guy said that devfs was flawed by design. Nevermind that devfs has zero problems on FreeBSD and Haiku for example. But udev does have one advantage, it doesn't rely anymore on the minor and major device number scheme. That makes it possible, according to Kroah-Hartmann, to plug-in much more devices which is needed because of USB etc... Bottom line let's wait and see when FreeBSD and Haiku run out of minor/major device numbers ^^