Results 1 to 10 of 10

Thread: Maverick on Macbook Pro 6,2 boots to CLI

  1. #1
    Join Date
    Jan 2011
    Beans
    4

    Maverick on Macbook Pro 6,2 boots to CLI

    After updating the NVidia Driver to the recommended one. What's going on? And how do I get my precious GUI back?

    Thanks,
    Bradley Powers

  2. #2
    Join Date
    Jan 2011
    Beans
    4

    Re: Maverick on Macbook Pro 6,2 boots to CLI

    So, does anybody know why the "restricted" nvidia driver might cause Ubuntu directly to CLI instead of the GUI? I've reinstalled Ubuntu, which resolved the issue, but I'd like to install the nvidia driver as I'd like for it to work properly. Sorry for not giving any detail last night, I was frustrated, grumpy, and not thinking straight.


    Thanks,
    Bradley Powers

  3. #3
    Join Date
    Jan 2011
    Location
    Tennessee, Murfreesboro
    Beans
    15
    Distro
    Xubuntu 10.10 Maverick Meerkat

    Re: Maverick on Macbook Pro 6,2 boots to CLI

    Quote Originally Posted by bradpowers View Post
    Sorry for not giving any detail last night, I was frustrated, grumpy, and not thinking straight.

    why were you grumpy?


    did you get it working before posting?

    sudo info-get iamconfused OP

  4. #4
    Join Date
    Jan 2011
    Beans
    4

    Re: Maverick on Macbook Pro 6,2 boots to CLI

    I was grumpy because Ubuntu would only boot to the CLI, and I couldn't figure out why!

    I reinstalled Ubuntu, and didn't install the Nvidia driver. At the moment it's working in the sense that I'm not booting to CLI, but I'd like to use the Nvidia driver if possible.


    Password:

    Last edited by bradpowers; January 14th, 2011 at 03:09 PM.

  5. #5
    Join Date
    Jan 2011
    Beans
    4

    Re: Maverick on Macbook Pro 6,2 boots to CLI

    Does anyone have any ideas? I need to be able to use the NVIDIA driver for what I'm doing, but I also can't operate only in the CLI. It'd be really great if somebody had any recommendation.

  6. #6
    Join Date
    Apr 2008
    Location
    Ukraine
    Beans
    58

    Re: Maverick on Macbook Pro 6,2 boots to CLI

    What is happening when you type gdm and press enter?
    Did you try
    Code:
    $ sudo dpkg-reconfigure xserver-xorg
    select "nv" for the first screen and hit enter until it's done.

    You can also try:
    Code:
    sudo apt-get --purge remove nvidia-glx* nvidia-kernel-common nvidia-settings
    sudo rm /etc/init.d/nvidia-*
    sudo update-rc.d nvidia-kernel remove
    sudo apt-get install nvidia-glx-new linux-restricted-modules-`uname -r`
    You can try to install new driver this way (I mean you use x86 architecture): (You can take right driver for wget here)

    Code:
    mkdir nvidia
    cd nvidia
    wget http://us.download.nvidia.com/XFree86/Linux-x86/260.19.29/NVIDIA-Linux-x86-260.19.29.run
    sudo apt-get install build-essential pkg-config
    sudo chmod a+x NVIDIA-Linux-x86-260.19.29.run
    sudo sh NVIDIA-Linux-x86-260.19.29.run
    reboot from terminal you can do this way
    Code:
    sudo shutdown -r now

  7. #7
    Join Date
    Jul 2008
    Beans
    245
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Maverick on Macbook Pro 6,2 boots to CLI

    Quote Originally Posted by ZeroLinux View Post
    You can also try:
    Code:
    sudo apt-get --purge remove nvidia-glx* nvidia-kernel-common nvidia-settings
    sudo rm /etc/init.d/nvidia-*
    sudo update-rc.d nvidia-kernel remove
    sudo apt-get install nvidia-glx-new linux-restricted-modules-`uname -r`
    don't try that. first, the nvidia driver packages are called nvidia-96, nvidia-173, nvidia-current. and as of lucid, there are no restricted modules packages anymore due to usage of DKMS. hence, the op should install:
    Code:
    sudo apt-get install nvidia-current nvidia-current-modaliases nvidia-settings
    Quote Originally Posted by ZeroLinux View Post
    You can try to install new driver this way (I mean you use x86 architecture): (You can take right driver for wget here)

    Code:
    mkdir nvidia
    cd nvidia
    wget http://us.download.nvidia.com/XFree86/Linux-x86/260.19.29/NVIDIA-Linux-x86-260.19.29.run
    sudo apt-get install build-essential pkg-config
    sudo chmod a+x NVIDIA-Linux-x86-260.19.29.run
    sudo sh NVIDIA-Linux-x86-260.19.29.run
    reboot from terminal you can do this way
    Code:
    sudo shutdown -r now
    don't try that either. if you really need newer drivers, use the x-updates PPA.

    however, one might need to configure the X server to use the right driver by either running nvidia-xconfig or, since a recent Xorg is capable of configuring almost all devices on its own, it's also feasible to use the configuration file attached (unpack and copy to /etc/X11/xorg.conf), which simply allows to select the driver.

    ciao,
    Mario
    Last edited by _mario_; January 20th, 2011 at 01:09 AM.

  8. #8
    Join Date
    Jul 2008
    Beans
    245
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Maverick on Macbook Pro 6,2 boots to CLI

    ... posted twice ... and attachments don't seem to work ...

    the xorg.conf file mentioned should contain this:
    Code:
    # Xorg configuration to select which nvidia driver is being used
    
    Section "Device"
    	Identifier	"NvidiaDevice"
    
    #	# old open-source driver
    #	Driver		"nv"
    
    #	# new open-source driver
    #	Driver		"nouveau"
    
    	# Nvidia's proprietary driver
    	Driver		"nvidia"
    #	Option		"RegistryDwords" "EnableBrightnessControl=1"
    EndSection
    
    # ***** end of source *****
    Last edited by _mario_; January 20th, 2011 at 01:11 AM.

  9. #9
    Join Date
    Jan 2011
    Beans
    2

    Re: Maverick on Macbook Pro 6,2 boots to CLI

    Hey bradpowers -

    Just wondering if you got it working. I have the same setup with a NVIDIA Ge Force GT 330M. I could not get my external monitor (connected via minidisplay port) working at full resolution with the default non-proprietary drivers.

    I installed the proprietary driver (version 260.19.29) from nVidia using pretty much what ZeroLinux said in his wget option, but I had to follow these directions to get it working:
    http://www.ubuntugeek.com/howto-inst...ucid-lynx.html

    So my external monitor now worked at full resolution, but 3D applications (even glxinfo / glxgears) didn't work after this. I just upgraded the drivers from nVidia again using this manual method to version 260.19.36. Now the external monitor and 3D applications both work fine.

    I think mario's method using the x-updates PPA should be more reliable, though it looks like they are working off a beta version of the graphics driver - 270.18. I haven't tried this, have you?

    best of luck!

  10. #10
    Join Date
    Mar 2012
    Beans
    48

    Re: Maverick on Macbook Pro 6,2 boots to CLI

    I have the same model with Lucid running. Installing the nvidia driver didn't affect me. So maybe its a problem with Maverick?

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
  •