It's not too hard. The thing i was mainly doing was finding a better way to install my logitech quickcam messenger in linux. And it's not too hard. In fact it's quite easy.
I started out with the mepis tutorial here which works fine if you have pretty much any debian distro. So i followed this walkthrough religiously whenever i tried out a new distro, but it had one drawback with my webcam. The webcam worked fine, until you unplugged it, and you had to restart the computer again with it plugged in if you wanted to use it again. This i thought was retarded. So i modified the walkthrough a little bit. I jost apt-get the linux headers with xawtv and whatever, grab the source code for the driver, unpack through the tar.gz file from ark as opposed to command line where i don't have to type this "tar -xvf qc-usb-messenger-1.6.tar.gz"(the only thing that makes sense out of that for me is the file name only..-xvf?) Went into console and went into the directory that i just extracted from the archive and typed ./quickcam.sh which is an installer script that checks if you have all the linux headers, compilers, kernel modules, and other necessary drivers, as well as it compiling, testing, and loading the driver for you. Nice little script that's fast, but not as fast as doing make and make install

After that that ****ing mepis walkthrough wants you to put in other commands that has you modify your /etc/init.d directory which i found out is another way of doing something, but is dirtier and actually not correct. Pretty much after the driver got loaded after the installer i just put modprobe quickcam inside /etc/modules which is the clean and correct way to have linux boot up with something. Doing it my easier correct way the camera driver compiles and loads fine upon every bootup, and i can unplug the cam, and plug it back in and use it again during the same session i want(i've been dying for plugging that thing in and unplugging it as many times as i want in linux for a while as the mepis walkthrough way made me have to restart the computer every damn time i unplugged it).
I also tried installing the gspca driver for my cam, get the source, extract it, go to the direct, "make", then "make install" is pretty much the basis for compiling source, there's some extra's, but it's not that hard, after that you put command into /etc/modules to have the driver load up with the linux upon startup, so you don't have to do modprobe quickcam to load the driver manually, that's a lot more tedious, also the gspca driver didn't work for me, so i got rid of it

Anyway, after i went through learning how to do things and make them easier sometimes you find out you don't have to put in all that extra commands like "touch /etc/init.d/quickcam" i don't know what "touch" does to /etc/init.d/quickcam...nor do i need to know, all i know is that it's part of modifying init.d to make linux boot up with a driver upon startup which isn't the right way to do it when i all i have to do is finish the installer script for compiling the driver, and put an entry into my /etc/modules file

I want to have a fun learning experience with linux, not get scared by it, i'll learn about init.d later when i have to actually mess with it, which that time will come sometime
