LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 03-26-2008, 06:18 AM   #1
andrew375
Member
 
Registered: Mar 2007
Distribution: Lubuntu, Ubuntu 10.10, Knoppix
Posts: 53

Rep: Reputation: 16
Exclamation Nvidia driver install - Stopping the X server in 7.1


I'm trying to install the NVidia restricted driver package but no matter what I try the installation falls over with the error message that there is an X server running and it has to be stopped for the install to work.

I've tried using the boot options menu to get me to the command prompt but of course there are only a limited set of commands available and the installer wont run at that level. I've tried exiting to a terminal from the logon screen only to find (as I expected) that the X server is already running and if I shut down the X server processes in the system - processes menu I get bumped straight back to the logon screen with the X server still running. I've checked the Ubunto documentation and whilst there is information on starting, configuring and trouble shooting the X server there is nothing on how to stop it!

Thankyou in advance for your help and my apologies if I am just being a bit thick.
 
Old 03-26-2008, 06:49 AM   #2
redgoblin
Member
 
Registered: Jun 2005
Location: UK
Distribution: Debian
Posts: 189

Rep: Reputation: 41
Don't worry, we all started with similar problems.

What you need to do is change over to a normal console, not one that is part of the X server. Press <ctrl>+<alt>+F1 and your screen will change to the first console. There are normally 6 consoles setup on the average system, F1 through to F6. If you wanted to go back to your X display (which you don't right now) you would normally use <ctrl>+<alt>+F7.

Now log in and stop the X server as you did before.
 
Old 03-26-2008, 06:59 AM   #3
MonctonJohn
Member
 
Registered: Aug 2007
Location: Canada
Distribution: Mint
Posts: 112

Rep: Reputation: 15
Hit ctrl alt f2 to get yourself on the console. Login. For Ubuntu type:

Code:
sudo /etc/init.d/gdm stop
For Kubuntu:

Code:
sudo /etc/init.d/kdm stop
Now X should be dead. You can check with ps -e | grep X
 
Old 03-26-2008, 10:51 AM   #4
andrew375
Member
 
Registered: Mar 2007
Distribution: Lubuntu, Ubuntu 10.10, Knoppix
Posts: 53

Original Poster
Rep: Reputation: 16
Thanks. I'll give it try.
 
Old 04-01-2008, 10:26 AM   #5
andrew375
Member
 
Registered: Mar 2007
Distribution: Lubuntu, Ubuntu 10.10, Knoppix
Posts: 53

Original Poster
Rep: Reputation: 16
success - sort of

Following your instructions I finally got the X server shut down but, naturally, the NVidia drivers still wouldn't install. Apparently I have the wrong kernel, and I need a libc development package.

After wasting time trying to get the find the libc and kernel headers on the installation disk I gave up on the job. I know the solution is to go through the various package repositories but I cannot get the machine connected to the 'net (see thread on trying to get the laptop modem to work) I have to do it by downloading packages at work and installing them from a flash drive. Obviously the only result of this is to condemn me dependency hell.

Anyway here is the install log. Any help (if only to tell me I'm wasting my time) would be appreciated.

Where can I find the "libc" development package? Going through the package manager (which shows that the likely suspects are already installed) and packages.ubuntu.com I find there is more than one package that have libc in their name but none that are just plain libc-devel.

nvidia-installer log file '/var/log/nvidia-installer.log'
creation time: Thu Mar 27 10:15:10 2008

option status:
license pre-accepted : false
update : false
force update : false
expert : false
uninstall : false
driver info : false
precompiled interfaces : true
no ncurses color : false
query latest version : false
OpenGL header files : true
no questions : false
silent : false
no recursion : false
no backup : false
kernel module only : false
sanity : false
add this kernel : false
no runlevel check : false
no network : false
no ABI note : false
no RPMs : false
no kernel module : false
force SELinux : default
no X server check : false
force tls : (not specified)
X install prefix : (not specified)
X library install path : (not specified)
X module install path : (not specified)
OpenGL install prefix : (not specified)
OpenGL install libdir : (not specified)
utility install prefix : (not specified)
utility install libdir : (not specified)
doc install prefix : (not specified)
kernel name : (not specified)
kernel include path : (not specified)
kernel source path : (not specified)
kernel output path : (not specified)
kernel install path : (not specified)
proc mount point : /proc
ui : (not specified)
tmpdir : /tmp
ftp mirror : ftp://download.nvidia.com
RPM file list : (not specified)

Using: nvidia-installer ncurses user interface
-> License accepted.
-> No precompiled kernel interface was found to match your kernel; would you like the installer to attempt to download a kernel interface for your kernel from the NVIDIA ftp site (ftp://download.nvidia.com)? (Answer: No)
-> No precompiled kernel interface was found to match your kernel; this means that the installer will need to compile a new kernel interface.
ERROR: You do not appear to have libc header files installed on your system. Please install your distribution's libc development package.
ERROR: Installation has failed. Please see the file '/var/log/nvidia-installer.log' for details. You may find suggestions
on fixing installation problems in the README available on the Linux
driver download page at www.nvidia.com.
 
Old 04-01-2008, 12:48 PM   #6
MonctonJohn
Member
 
Registered: Aug 2007
Location: Canada
Distribution: Mint
Posts: 112

Rep: Reputation: 15
Dependancy hell is right... any way you can get a high speed connection for a few minutes?

If not you can try downloading the packages you need.

Libc6-dev: http://packages.ubuntu.com/gutsy/libc6-dev

Kernel headers: http://packages.ubuntu.com/gutsy/linux-libc-dev

sudo dpkg -i linux-libc-dev_2.6.22-14.52_i386.deb libc6-dev_2.6.1-1ubuntu9_i386.deb

Try that and see if dpkg fails. Then try the Nvidia driver.
 
Old 04-01-2008, 03:21 PM   #7
pbhj
Member
 
Registered: Dec 2002
Location: UK
Distribution: Slackware 12; Ubuntu 7.10
Posts: 358

Rep: Reputation: 32
FWIW I'd probably do ctrl-alt-backspace, which restarts X and drops you to the KDM/GDM username prompt (depending on your settings, if you've set it to auto-login then don't bother trying this). Then you can click and choose a command line "session" and that will drop you out of X and on to a commandline.

Just a moderately different way of doing it. Or choose to boot to command line, I think that's a grub option.
 
Old 04-02-2008, 10:56 AM   #8
andrew375
Member
 
Registered: Mar 2007
Distribution: Lubuntu, Ubuntu 10.10, Knoppix
Posts: 53

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by MonctonJohn View Post
Dependancy hell is right... any way you can get a high speed connection for a few minutes?

If not you can try downloading the packages you need.

Libc6-dev: http://packages.ubuntu.com/gutsy/libc6-dev

Kernel headers: http://packages.ubuntu.com/gutsy/linux-libc-dev

sudo dpkg -i linux-libc-dev_2.6.22-14.52_i386.deb libc6-dev_2.6.1-1ubuntu9_i386.deb

Try that and see if dpkg fails. Then try the Nvidia driver.

The network here is pretty well screwed down, otherwise I'd just bring it in to work. If I can get the modem to work I'd be willing to for the time on line necessary.

Going through the libc6-dev package and dependencies I've given up at downloading 23 files and there are still dependencies listed! I'll give it a go but it looks like I'm doomed to fail. Most of the dependent packages are only a few K so why aren't they bundled into the main package?
 
Old 04-03-2008, 05:18 AM   #9
andrew375
Member
 
Registered: Mar 2007
Distribution: Lubuntu, Ubuntu 10.10, Knoppix
Posts: 53

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by MonctonJohn View Post
Dependancy hell is right... any way you can get a high speed connection for a few minutes?

If not you can try downloading the packages you need.

Libc6-dev: http://packages.ubuntu.com/gutsy/libc6-dev

Kernel headers: http://packages.ubuntu.com/gutsy/linux-libc-dev

sudo dpkg -i linux-libc-dev_2.6.22-14.52_i386.deb libc6-dev_2.6.1-1ubuntu9_i386.deb

Try that and see if dpkg fails. Then try the Nvidia driver.

Ok, tried all this plus tried loading all the dependencies. Naturally this was just another waste of time. In this instance because all the packages were reported as either already installed or that the version I was trying to install was older than the the one present!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Nvidia driver install problem with x server jibber420 Ubuntu 4 10-02-2007 01:58 PM
Failed to Start X server after Nvidia driver install B4lulu Linux - Newbie 4 08-31-2007 07:16 AM
Nvidia Problem: can't install nvidia driver for FC6 Chuong Linux - Software 7 10-30-2006 04:43 AM
disabling x server to install nvidia driver erick6220 Linux - Software 1 12-06-2004 05:25 PM
Exiting X server to install nvidia driver odogg Linux - Newbie 1 11-26-2003 12:05 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 07:14 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration