Page 2 of 2 FirstFirst 12
Results 11 to 17 of 17

Thread: [SOLVED] Help: Can't install nvidia driver in 8.10

  1. #11
    Join Date
    Aug 2007
    Location
    Snoqualmie, WA, USA
    Beans
    33
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: [SOLVED] Help: Can't install nvidia driver in 8.10

    Worked like a charm. Thanks GTA.

    I had a devil of a time implementing it, however, because I had been trying to install different flavors of nvidia drivers prior to reading this thread.

    Anyone else with the same problem should make sure they have fully eradicated all other nvidia drivers from their installation first. Then modify the grub menu.lst, and only then install the proprietary nvidia driver.

  2. #12
    Join Date
    Aug 2007
    Beans
    4

    Re: [SOLVED] Help: Can't install nvidia driver in 8.10

    U the man... Many thanks

  3. #13
    Join Date
    Feb 2009
    Beans
    1

    Re: [SOLVED] Help: Can't install nvidia driver in 8.10

    Thanks for the good work, 67GTA!

    I'd been fiddling with this for a couple of days before stumbling upon this thread about the in compatibility of the cx18and the nvidia driver. That's I get when I install a new card and upgrade the OS at the same time...

    Now all is well, again.

  4. #14
    Join Date
    Nov 2004
    Location
    California, USA
    Beans
    100
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: [SOLVED] Help: Can't install nvidia driver in 8.10

    Phew. Great catch -- this fix works like a charm. Thanks, though it's been a long time since I"ve had to edit /boot/grub/menu.lst!

    Am I correct in thinking that the solution for this in perpetuity is changing the following to include the vmalloc parameter?

    Code:
    ## additional options to use with the default boot option, but not with the
    ## alternatives
    ## e.g. defoptions=vga=791 resume=/dev/hda5
    # defoptions=quiet splash vmalloc=256M

  5. #15
    Join Date
    Jan 2007
    Location
    Kentucky, USA
    Beans
    1,684
    Distro
    Ubuntu Development Release

    Re: [SOLVED] Help: Can't install nvidia driver in 8.10

    That may do the same thing. I have never tried that before. I always add boot options to the end of the kernel line. Try it out to see if it boots with that option where you have it written and let us know.

  6. #16
    Join Date
    Nov 2004
    Location
    California, USA
    Beans
    100
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: [SOLVED] Help: Can't install nvidia driver in 8.10

    Quote Originally Posted by 67GTA View Post
    That may do the same thing. I have never tried that before. I always add boot options to the end of the kernel line. Try it out to see if it boots with that option where you have it written and let us know.
    We'll need to wait for a new kernel to be distributed before we know for sure. That part of the file is where the defaults for the automagically-added boot options go, but I don't believe it affects kernels that are already there.

    I *hope* that does the trick. Will try to remember to check after a new kernel release.

  7. #17
    Join Date
    Jul 2007
    Location
    Minneapolis, Minnesota
    Beans
    56
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: [SOLVED] Help: Can't install nvidia driver in 8.10

    Since GRUB2 had been adopted into 9.10, here's the way to get the kernel boot command to run everytime:

    Startup your system and either get to a console from the GRUB menu or boot to Ubuntu in low graphics mode and open a terminal once it's up.

    Once up, type the following command
    Code:
    sudo pico /etc/default/grub
    Once inside of the file, search for this line

    Code:
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

    right before the last ", put vmalloc=256M, so that the line looks like:

    Code:
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash vmalloc=256M"
    Then, hit CTRL+O and ENTER, and then CTRL+X. This will bring you back to the terminal. At this point, we need the startup system to reconfigure itself, so we type the following command

    Code:
    sudo update-grub
    Now, reboot the system
    Last edited by jumping_snake; January 7th, 2010 at 07:46 AM.

Page 2 of 2 FirstFirst 12

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •