LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-30-2005, 09:39 AM   #1
snakt
LQ Newbie
 
Registered: Sep 2005
Posts: 3

Rep: Reputation: 0
NVIDIA DRIVER ERROR: You appear to be running an X serve


Hi im new to this forum so first things first.

Hi all

This is my seccond time running linux, im just learning the ropes, im currently running ubuntu 5.04.

first apon installation of latest NVIDIA drivers i receved this error

ERROR: You appear to be running an X server; please exit X before installing. For further details, please see the section INSTALLING THE NVIDIA DRIVER
in the README available on the Linux driver download page at nvidia.c0m.

1) what is a X Server
2) how do i close it
3) how do i know what is running

next question i have, i downloaded alien package manager? and its in souce format, how do i re-compile it so install the package..

thanks in advance
 
Old 09-30-2005, 10:20 AM   #2
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445
Blog Entries: 9

Rep: Reputation: 48
are you trying to install it via gnome-console? if so logout of out gnome
type
Code:
ctrl-alt-F1
and it will bring you to the command line
then do
Code:
/etc/init.d/gdm stop
and it shold stop the X server.

As for how you know what is running try
Code:
ps aux
that will list all of the things running. Did you download the binary for alien? Alien is not a package manager, it changes rpm's to .debs(what you need for ubuntu). Hope this helps
 
Old 09-30-2005, 04:16 PM   #3
AwesomeMachine
LQ Guru
 
Registered: Jan 2005
Location: USA and Italy
Distribution: Debian testing/sid; OpenSuSE; Fedora; Mint
Posts: 5,524

Rep: Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015Reputation: 1015
I acknowledge this has practically been said, but

ps aux | less

will help you find the PID of the xserver process

and

kill PID

will kill the process
 
Old 09-30-2005, 04:35 PM   #4
Dark_Helmet
Senior Member
 
Registered: Jan 2003
Posts: 2,786

Rep: Reputation: 374Reputation: 374Reputation: 374Reputation: 374
Just to give a little more info...

Quote:
1) what is a X Server
X is the term used to refer to the X window system. In a nutshell, you can basically think of it as your desktop/windowing environment. X is the basic framework that allows the computer to display application windows, and other things. Environments like Gnome and KDE are built on top of X. The "server" bit just describes that when X is running, multiple separate users can use the X system to display desktops. For a one-person computer, it's really not important. But it's a layer of flexibility that can be useful in some situations.

EDIT: Only I would use 50+ words when a concise paraphrase will do: It's your GUI

Last edited by Dark_Helmet; 09-30-2005 at 04:36 PM.
 
Old 09-30-2005, 07:49 PM   #5
somedude
Member
 
Registered: Nov 2003
Distribution: Mint, openSUSE, Mandriva, Knoppix, puppy, Arch
Posts: 68

Rep: Reputation: 16
Re: NVIDIA DRIVER ERROR: You appear to be running an X serve

Quote:
Originally posted by snakt
ERROR: You appear to be running an X server; please exit X before installing. For further details, please see the section INSTALLING THE NVIDIA DRIVER
in the README available on the Linux driver download page at nvidia.c0m.

1) what is a X Server
2) how do i close it
3) how do i know what is running

next question i have, i downloaded alien package manager? and its in souce format, how do i re-compile it so install the package..
Hi there.

Some quick answers:
X is the graphical server. It's called a server not because it's this big PC in the server room, but because it 'serves' graphics to your PC.

You are trying to install a driver that your graphical user interface server (the X server) is using. Therefore you must exit the graphical mode to a console, so that X doesn't run any more.
You can do that by opening a terminal session, switching to root by typing 'su' then the root password and once you get a prompt, type 'init 3'. All these commands must be entered without the wrappping apostrophes.
So, to recap, once you get the terminal (it's like the DOS prompt box):
su
yourpassword
init 3

Warning: this will kill your graphical environment and you will see something like the old DOS mode. You need to log in, then try to re-install the nvidia driver.
If you want to get back into the graphical interface, type 'startx' and X will start

For your third question, you need to be more precise. You can see what processes are running by typing 'top' in a terminal session (also known as a shell). Hit 'q' to exit the top program.

One more thing, you seem to be quite new to Linux and that's why my post attempts to give you more info thatwould normally be needed. I don't wish to offend you.
As a word of advice, although I encourage you to try the nvidia driver installation, I feel that I should warn you that this is no small thing. Especially since you must do most of the work without the aid of a graphical environment.
That being said, good luck. This is the only way to learn Linux - getting your hands dirty.

I hope this helps.
 
Old 09-30-2005, 07:51 PM   #6
snakt
LQ Newbie
 
Registered: Sep 2005
Posts: 3

Original Poster
Rep: Reputation: 0
Sorry didnt work but i found this

Q: How to install Graphics Driver (NVIDIA)?

1. Read General Notes
2. Read How to add extra repositories?
3.

Code:
sudo apt-get install nvidia-glx
Code:
sudo apt-get install nvidia-settings
Code:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup
Code:
sudo nvidia-glx-config enable
Code:
sudo gedit /usr/share/applications/NVIDIA-Settings.desktop
4. Insert the following lines into the new file

[Desktop Entry]
Name=NVIDIA Settings
Comment=NVIDIA Settings
Exec=nvidia-settings
Icon=
Terminal=false
Type=Application
Categories=Application;System;

5. Save the edited file (sample)
6. Read How to restart GNOME without rebooting computer?
7. Applications -> System Tools -> NVIDIA Settings


but i still dont know how to install alien, i downloaded the file alien_8.56.tar.gz, contains mainly perl files
 
Old 09-30-2005, 11:24 PM   #7
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445
Blog Entries: 9

Rep: Reputation: 48
look for the documentation on the site you downloaded it from. In debian you can 'apt-get install alien', and you don't need to mess w/ source. I don't know what the ubuntu repositories have in them though.
 
Old 10-01-2005, 01:34 AM   #8
snakt
LQ Newbie
 
Registered: Sep 2005
Posts: 3

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by microsoft/linux
look for the documentation on the site you downloaded it from. In debian you can 'apt-get install alien', and you don't need to mess w/ source. I don't know what the ubuntu repositories have in them though.
Thanks worked a beauty...
now to get cedega up and running
thanks for all the help gy's
 
Old 10-01-2005, 11:49 AM   #9
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445
Blog Entries: 9

Rep: Reputation: 48
sure, glad we could be of assistance
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 grafic driver solution running multiple kernels bstrik Slackware 4 09-02-2004 10:19 AM
Nvidia Driver Error PLEASE HELP!!!! binny959 Linux - Games 6 08-28-2004 07:07 PM
NVIDIA driver error, why? fogcat Mandriva 7 06-22-2004 08:29 PM
ERROR running make when installing Nvidia drivers (syntax error) randyriver10 Linux - Software 5 02-21-2004 04:51 PM
Problem Running VideoLAN after Nvidia Driver Installation. DDT Linux - Newbie 8 11-15-2003 11:34 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:31 PM.

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