<<
okay.. thanks..
i must be dumb or somthing but i cant install Micq.. so far ive only installed .rpm files, and Micq is .tgz or something like that.. do i need some special viewer to run these files? >>
"tar -zvxf micq.tgz && cd micq && ./configure && make && sudo make install" The line will probably have to be edited for the version of the software you downloaded.
tar -z will gunzip it (.gz), x will extract the archive (.tar). The && means that if the first command completes successfully move to the next one, probably not the best way to do things here because I dont know the complete path to the directory the first command will make, but its ok in my example
./configure is a shell script basically that will setup many of the variables of the system. make will compile the program. Make sure you have gcc and related goodies installed for this to work. make install will install the componants it needs to work.
This is basic stuff for linux, so you should get used to it.
<<
also, how do you install hardware? i can't seem to install my SB16 ISA.
thanks. >>
sndconfig or something might work depending on which distro you chose. RedHat and Mandrake seem to use it. Also, make sure you have support for it compiled in your kernel or atleast a module for it that you can load during/after boot.