LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   how do I install hardware driver from cdrom? (https://www.linuxquestions.org/questions/linux-software-2/how-do-i-install-hardware-driver-from-cdrom-164842/)

stumblefingers 04-01-2004 01:43 AM

how do I install hardware driver from cdrom?
 
I've got a wireless usb adaptor and the linux drivers on CDROM - I've installed redhat 7.2 and have tried on KDE and Gnome to find out how to install. With windows all I have to do is click on the cd and it will open into install. What do I have to do with Linux? I'm baffled!

nhs 04-01-2004 05:43 AM

The drivers will most likely be supplied as a tarball (a file ending in .tar.gz). Copy this file to your hard disk somewhere (e.g. /usr/src). Open a shell, become the superuser, change directory to /usr/src (or wherever you copied the file) and decompress the file with the command "tar xvzf file". This should create a new directory in the current directory. Change directory into this directory. If there is a file called configure then run "./configure && make && make install" or else just run "make && make install". This should compile and install the drivers for your hardware.

Shell commands:
su - become superuser
ls - list contents of a directory
cd directory - change directory to directory

stumblefingers 04-01-2004 07:28 AM

Thanks - I've got a lot to learn about linux - I hoped that this would be as easy as is in in ms windows i.e just click on it.

Are all distributions as long winded and complex as this? Is there an easier method?

Quote:

Originally posted by nhs
The drivers will most likely be supplied as a tarball (a file ending in .tar.gz). Copy this file to your hard disk somewhere (e.g. /usr/src). Open a shell, become the superuser, change directory to /usr/src (or wherever you copied the file) and decompress the file with the command "tar xvzf file". This should create a new directory in the current directory. Change directory into this directory. If there is a file called configure then run "./configure && make && make install" or else just run "make && make install". This should compile and install the drivers for your hardware.

Shell commands:
su - become superuser
ls - list contents of a directory
cd directory - change directory to directory



All times are GMT -5. The time now is 08:58 PM.