Ubuntu - How To Install Drivers?


Recommended Posts

When I used the LiveCD, the sound and Internet worked instantly. However, I have now installed it and neither work any more and I can't figure out how to install drivers.

User-friendly Ubuntu my a*se lol if it wants to become mainstream and 'for everyone', they need simple things like this to work from the start like Windows XP does.

Link to comment
https://www.neowin.net/forum/topic/468431-ubuntu-how-to-install-drivers/
Share on other sites

  Bliksem said:

Try using the Marvell Yukon NIC.

You may have to modprobe sk98lin

Say what? Is is not as easy as clicking on a 'Add Hardware' applet like you can in Windows? I am not trying to annoy Linux fans (and I am far from a Windows lover) but this is daft, especially considering Ubuntu is known as the 'friendly' Linux distribution.

Sorry, I'm an Arch Linux user, I dont use/have the GUI's etc :s

But I did have to add that module when using the Marvell NIC. (I have an A8N borad too)

Also check Synaptic for an nforce package, there is one available in the Arch repo's perhaps Ubuntu has it too?

Edited by Bliksem
  Bliksem said:

Sorry, I'm an Arch Linux user, I dont use/have the GUI's etc :s

But I did have to add that module when using the Marvell NIC. (I have an A8N borad too)

Also check Synaptic for an nforce package, there is one available in the Arch repo's perhaps Ubuntu has it too?

You're losing me lol

Ubuntu must have the drivers for the sound/network hardware on the CD as when it was running in Live mode, they worked fine.

  King Mustard said:

Say what? Is is not as easy as clicking on a 'Add Hardware' applet like you can in Windows? I am not trying to annoy Linux fans (and I am far from a Windows lover) but this is daft, especially considering Ubuntu is known as the 'friendly' Linux distribution.

When hardware is auto-detected properly, it is much easier in Linux, as you don't have to 'install' any drivers.

Perhaps you have seen driver selection screens like this in XP when you have hardware that Windows isn't quite sure of:

select-driver.png

I suppose that someone could (and probably has) wrote a simple GUI to point and click from a listing of very possible Linux module... But it isn't that tough to type a single modprobe line.

A matter of preference and what you are familiar with, I guess.

  markjensen said:

When hardware is auto-detected properly, it is much easier in Linux, as you don't have to 'install' any drivers.

Perhaps you have seen driver selection screens like this in XP when you have hardware that Windows isn't quite sure of:

select-driver.png

I suppose that someone could (and probably has) wrote a simple GUI to point and click from a listing of very possible Linux module... But it isn't that tough to type a single modprobe line.

A matter of preference and what you are familiar with, I guess.

Erm, type it where? Where do I download the drivers from and what do I do with them etc.?

I think I'll format the partition and put Vista back on. That downloads and installs the drivers for you :D

You type it in console. You will find console in one of the menus, again I dont use gnome/KDE so not sure which menu it'll be under.

You type the command, and the kernel will load the module/driver, you shouldn't have to download a thing.

  King Mustard said:

I think I'll format the partition and put Vista back on. That downloads and installs the drivers for you :D

:rolleyes:
  Bliksem said:

You type it in console. You will find console in one of the menus, again I dont use gnome/KDE so not sure which menu it'll be under.

You type the command, and the kernel will load the module/driver, you shouldn't have to download a thing.

:rolleyes:

Dont' roll your eyes. Call it 'noob' but it works perfectly, makes everything easy and you don't have to messa round with console entries!

  Quote
Dont' roll your eyes. Call it 'noob' but it works perfectly, makes everything easy and you don't have to messa round with console entries!

Console entries aren't exactly messing around. Linux is very useful once you get used to it.

Anyway, open a console and try typing the following:

modprobe forcedeth <enter>
dhcpcd <enter>

See if that works.

  kinetix63 said:

Console entries aren't exactly messing around. Linux is very useful once you get used to it.

Anyway, open a console and try typing the following:

modprobe forcedeth <enter>
dhcpcd <enter>

See if that works.

I can't anywhere to enter that in Ubuntu.

  Rob2687 said:

Applications>Accessories>Terminal

Or

Alt+F2, 'gnome-terminal', <enter>

Or

Alt+F1 if you still can't find the Gnome menu.

Nope, not working... (screenshot attached)

I am not blind, I was simply told to find a 'Console' not a Terminal.

post-645-1149869071.jpg

You need to run those commands under root permissions or whatever by using sudo

i.e.

sudo modprobe forcedeth

Ubuntu has dhclient. Not dhcpcd.

edit: I see there's not output after the modprobe forcedeth there so I guess the module loaded successfully. You can check for any possible errors by doing dmesg | grep forcedeth

dmesg will show you a ton of messages but |grep forcedeth will filter out lines that contain the words forcedeth.

  Rob2687 said:

You need to run those commands under root permissions or whatever by using sudo

i.e.

sudo modprobe forcedeth

Ubuntu has dhclient. Not dhcpcd.

edit: I see there's not output after the modprobe forcedeth there so I guess the module loaded successfully. You can check for any possible errors by doing dmesg | grep forcedeth

dmesg will show you a ton of messages but |grep forcedeth will filter out lines that contain the words forcedeth.

That worked and I now have Internet access! About time, talk about effort lol

I guess the next thing is audio drivers, graphics drivers etc. but I have no idea how to go about that. I will go to NVIDIA and download them now...

"I will go to NVIDIA and download them now..."

If only it were that simple! XD

Why download graphics drivers if it's all working already? I've never had linux do the crappy window refresh thing windows does when it doesn't have the right drivers installed.

  Rob2687 said:

Nvidia graphics drivers are in the repos.

apt-get install nvidia-glx linux-restricted-modules-`uname -r`

or just search in synaptic.

that would be 'sudo apt-get install nvidia-glx', the restricted modules should have been installed by default in 6.06.

or 'sudo aptitude install nvidia-glx', whichever you prefer.

Once the driver is installed, you then type 'sudo nvidia-glx-config enable' which will edit your /etc/X11/xorg.conf file to specify the 'nvidia' driver.

Press Ctrl-alt-backspace to shutdown Xwin, relog in, and Xwin should now be using the nvidia driver. You may or may not see an nVidia splashscreen.

  hotdog963al said:

"I will go to NVIDIA and download them now..."

If only it were that simple! XD

Why download graphics drivers if it's all working already? I've never had linux do the crappy window refresh thing windows does when it doesn't have the right drivers installed.

I want to install and play games eventually, that's why. Also, Windows Vista won't do that 'crappy window refresh' thing Windows does as the entire environment is DirectX.

  phantasmorph said:

that would be 'sudo apt-get install nvidia-glx', the restricted modules should have been installed by default in 6.06.

or 'sudo aptitude install nvidia-glx', whichever you prefer.

Once the driver is installed, you then type 'sudo nvidia-glx-config enable' which will edit your /etc/X11/xorg.conf file to specify the 'nvidia' driver.

Press Ctrl-alt-backspace to shutdown Xwin, relog in, and Xwin should now be using the nvidia driver. You may or may not see an nVidia splashscreen.

The OS now seems more responsive, thank you (Y)

Now, how about the sound drivers? I think they may be installed, but I have no MP3 decoder? As well as the command(s), Can you guys tell me how you knew it in the first place? Is there a list of what is in this 'depositary' that I can browse through?

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Darwin Mach Kernel/ BSD. Which is both open source.
    • You mean BSD. The UNIX kernel is not open source.
    • I have been on Linux Mint full-time since Jan 2019. while there is a learning curve, it's worth it if you can make the switch, which I can. I mainly browse web, play some games (generally Lutris(Windows games), or through emulators (MAME/Mesen/Flycast etc) etc), and use a small amount of Windows programs (Foobar2000/7-zip/WinRAR/ImgBurn etc) etc. it's nice to dodge the bloat/BS of Windows as you can really feel Linux is all around faster, especially certain things. p.s. recently I enabled NTSync for games since Linux Mint recently offered the 6.14 kernel, which has NTSync support (it's not enabled by default though but you can enable it temporarily for your current boot of the OS through 'sudo modprobe ntsync')
    • A rotten article full of handwaving of anti-consumer practices. Aside from the fact that no, not even close to every piece of major software collects information about its users, ethical developers make such telemetry opt-in and allow it to be completely disabled. To use KDE Plasma as an example, you're shown a greeter upon first boot that gives users the option to send the developers telemetry, with the default being off and 'off' actually meaning off. Windows 10 has never offered that capability - only a promise that Microsoft will slurp up less of your data if you spend time tweaking 50 different privacy settings. There is still absolutely no way to completely opt out of sending Microsoft telemetry in any version of Windows 10 (or 11, naturally). Even using group policy in Enterprise editions only allows you to reduce telemetry to the bare minimum. Home-focused editions don't even get that option. Articles like this dismissing user privacy concerns as "FUD" are a part of the reason Microsoft felt confident enough to go so much further with Windows 11. I guess you get what you deserve in that respect. Personally, I finally made the move to Linux after 15 years or so of dabbling with it, but never really considering a permanent switch. Enjoy your bright, shiny Windows future. You asked for it, after all.
  • Recent Achievements

    • First Post
      smileyhead earned a badge
      First Post
    • One Month Later
      K V earned a badge
      One Month Later
    • Week One Done
      K V earned a badge
      Week One Done
    • Dedicated
      CarlosABC earned a badge
      Dedicated
    • One Month Later
      solidox earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      639
    2. 2
      ATLien_0
      240
    3. 3
      Xenon
      172
    4. 4
      neufuse
      155
    5. 5
      +FloatingFatMan
      122
  • Tell a friend

    Love Neowin? Tell a friend!