Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I have SuSE 9.1 Personal and installed Cisco VPN client for Linux. I was having intermittant issues connecting. Cisco support tells me that the tg3 network driver is known to be buggy with their software. They recommended that I use the bcm5700 driver instead.
I downloaded bcm5700 and installed.
ifdown eth0
rmmod tg3
modprobe bcm5700
ifup eth0
The Cisco VPN client for Linux now works great.
How do make this change permanent so I do not have to run all these commands every session?
I do not see the bcm5700 while in Yast to select it as a permanent change.
The loading of modules in Redhat type distributiions is in /etc/modules.conf. Edit the file and save it with your new information. Put a # on the line with the module you no longer want to load.
Sometimes when you speak without having a machine in front of you, you end up screwing up. I'm at home now. You would put the change in /etc/modprobe.conf
Thanks for your time. When I look at the modprobe.conf file I do not have any driver specific entries. There's an entry "install eth0 /bin/true" but nothing related to the old tg3 driver which continues to get loaded each time I start the system up.
Per the Broadcom docs for the bcm5700 driver it states to put an "alias eth0 bcm5700" in the modules.conf file. This file was originally empty but I put it there anyway. It did not work. I tried putting the alias in the modprobe.conf file above the install eth0 line but that did not work either.
Each time I boot I'm stuck with the tg3 driver until I manually rmmod and modprobe the new bcm5700 driver.
The modules.conf directory is where I sent you to initially. Unfortunately, every distribution is slightly different. That's why I modified my answer when I got home. Suse has quite good hardware detection, so it produces a file automatically called modprobe.conf. In my /etc/modprobe.conf file I have (toward the bottom) an entry showing a commented out prototype:
#alias eth0 nvnet
make a copy of the line, remove the # to uncomment it, and substitute your driver for the nvnet
alias eth0 bcm5700
You can use yast and select advanced and enter the module there, or if you want to edit it command line wise,
cd /etc/sysconfig/hardware, find the file that looks like
hwhwcfg-bus-pci-0000:00:12.0 and change the module there. Then run SuSEconfig
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.