I recently downloaded the SuSE mini Installer CD, burned it and tried to install SuSE.. the problem is that the drivers included on the CD dont include the propper driver for my network card, so I downloaded the drivers (a .tgz file) and now I need a way to get the installer to load those drivers, does anyone know how I can do that?
try to find an rpm for the drivers- that would be the easiest. At that point, you could use YaST to install. Otherwise, unpack the files- I would browse the filesystem to get to the tgz file, right-click and select actions->extract. Hopefully there is a readme file in there which will tell you where to put the files or how to proceed with installation.
At that point, you should use YaST to install the driver for your NIC under the YaST->Network Devices->Network Card.
If ignorance is bliss, education will blow your mind.
open up a terminal, cd to the directory with the .tgz file
tar -zxvf <driver_file>.tgz
This will make a directory called <driver_file> where that is the the name of the driver...
cd <driver_file>
There should be both a README and an INSTALL file. Read both Try nano README or pico README... maybe vi README or emacs README to open up one of the text editor programs... if you don't have any of those (hard to believe), then type
cat README | less
scroll up and down to read, and then hit "q" to exit.
The install should probably go something like
./configure
make
make install
where the make install command is done as root (type su to do that).
You are about to answer a thread that has been inactive for more than 6 months. If you still wish to proceed, please ensure that your posting is original and does not duplicate or overlap any prior responses to this thread.