1

How to remove the GobiNet and GobiSerial driver from Ubuntu 16.04? or in general how can I remove any driver from Ubuntu?

srg
  • 93

1 Answers1

1

Removing drivers

To remove drivers from memory use:

modprobe -vr GobiSerial
modprobe -vr GobiNet

To prevent drivers from loading in the first place see blacklisting:

Gobiserial specific

If your desire is to fix bad drivers then as per this website you must install firmware updates via Windows, not Linux:

FIRMWARE UPDATE: (Incase you need one)

The firmware update has to be done on windows. Insert the device into a windows box, and let it install drivers and enumerate interafaces. Make sure you can see the managment webpage.

Note the three typos in the original instructions, it's a bad omen....

  • @https://askubuntu.com/users/307523/wineunuuchs2unix i want to completely remove the driver from my system? – srg Jan 20 '20 at 10:40
  • @srg Use dkms status to show what drivers are recompiled on kernel update. Do they show up in the list? – WinEunuuchs2Unix Jan 20 '20 at 11:36
  • dkms status is showing nothing. – srg Jan 21 '20 at 04:23
  • 1
    @srg That means dkms won't automatically recompile the drivers with the next kernel upgrade and hopefully they will disappear on their own if you don't manually recompile them. You can use locate GobiSerial and locate GobiNet to get the physical locations of the drivers. – WinEunuuchs2Unix Jan 21 '20 at 04:54
  • i have upgraded the kernel but drivers are not removed? – srg Jan 21 '20 at 13:30
  • What do the locate commands return? – WinEunuuchs2Unix Jan 21 '20 at 13:47
  • It shows the paths where GobiSerial n GobiNet files are present – srg Jan 22 '20 at 05:04
  • @srg moving them from those paths to your home directory would be like deleting them. If system works ok after rebooting, then deleting them will be OK. If system doesn't work then move them back. I could not find any official instructions for uninstalling them from developer. – WinEunuuchs2Unix Jan 22 '20 at 11:50