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

Notices


Reply
  Search this Thread
Old 12-21-2005, 04:37 PM   #1
pgte3
Member
 
Registered: Aug 2004
Posts: 65

Rep: Reputation: 15
Have a basic system. Try to use Gnome


I have a working basic system that I created from the "testing" level.

I am now trying to get Gnome up and running. I have done the following.

apt-get install x-window-system-core

apt-get install gnome

There was some setup questions which I did not fully understand. I left the default for all questions.

When my system starts now it tries to start x but is unable to. My system locks up.

What should I do to get Gnome up and running?

How do these things relate to each other: Gnome, gdm, x ?
 
Old 12-21-2005, 05:05 PM   #2
ssfrstlstnm
Member
 
Registered: Dec 2004
Location: IN, USA
Distribution: debian etch
Posts: 402

Rep: Reputation: 30
try
Code:
apt-get install x-window-system gdm
then reboot
if it still doesn't work, then probably something is wrong with your video card or monitor config
you can reconfigure it with
Code:
dpkg-reconfigure xserver-xorg
 
Old 12-21-2005, 11:24 PM   #3
binary
LQ Newbie
 
Registered: Dec 2005
Distribution: Debian
Posts: 20

Rep: Reputation: 0
gdm is ok.
 
Old 12-22-2005, 04:14 AM   #4
michapma
Member
 
Registered: Oct 2003
Location: Zürich
Distribution: Debian
Posts: 537

Rep: Reputation: 39
I made a reply to this thread, and later it wasn't there. Weird and annoying. I'll try and reconstruct it...

Quote:
Originally Posted by pgte3
I am now trying to get Gnome up and running. I have done the following.

apt-get install x-window-system-core
I agree that it's a good idea to do "apt-get install x-window-system" instead of just x-window-system-core. Read about the x-window-system metapackage: "apt-cache show x-window-system"

Quote:
apt-get install gnome

There was some setup questions which I did not fully understand. I left the default for all questions.
It would be a good idea to learn more about those questions. For the time being, the default answers should be safe, but keep in mind down the road if your system has some annoying behavior (or it's just not behaving as you would expect it to) that it could be related to those defaults.

Quote:
When my system starts now it tries to start x but is unable to. My system locks up.

What should I do to get Gnome up and running?
What does the system do when it "locks up"? Does the screen just stay black, or does it come back to the console? Either the X server or Gnome are having trouble when starting. Usually, if the X server fails it will bring you back to the console. If Gnome has a problem it might not (you're getting a very non-expert opinion here), so may the problem may lie with Gnome.

* How are you starting X? Automatically, or do you type in startx?
* What happens if you hit Ctl+Alt+Backspace? (should kill and restart the X server)
* What happens if you hit Ctl+Alt+F1? This should bring you to console tty1, where you can log in and reconfigure things.

You'll be able to tell from your system logs whether the problem is with the X server. If it is, then you'll just need to give it the correct information for your hardware, which is not so hard. But one step at a time.

By the way, I don't think installing gdm will help, but it shouldn't hurt.

Quote:
How do these things relate to each other: Gnome, gdm, x ?
http://en.wikipedia.org/wiki/X_server
http://en.wikipedia.org/wiki/GNOME
http://en.wikipedia.org/wiki/GNOME_Display_Manager
http://en.wikipedia.org/wiki/X_display_manager

"X provides the basic framework for a GUI environment: drawing and moving windows on the screen and interacting with a mouse and keyboard. X does not mandate the user interface — individual client programs handle this. As such, the visual styling of X-based environments varies greatly; different programs may present radically different interfaces."

"The GNOME project provides two things: The GNOME desktop environment, an intuitive and attractive desktop for end-users, users, and the GNOME development platform, an extensive framework for building applications that integrate into the rest of the desktop."

"GDM (the GNOME Display Manager) provides an alternate display manager for the X Window System."

"In the X Window System, an X display manager runs as a program, allowing the starting of a session on an X server from the same or another computer."


Note that you don't have to use GDM with Gnome. I'm not saying it's bad of course, just that XDM (the default) and KDM are also valid choices.


Edit: Oh yeah, an important comment I forgot. Although it's probably not what you want to hear, I recommend you start over and install stable instead of testing. There are a lot less snages waiting on you when using stable, and it seems you need to get a little better oriented before you start using the experimental versions (testing and unstable).

Last edited by michapma; 12-22-2005 at 04:16 AM.
 
Old 12-22-2005, 12:47 PM   #5
pgte3
Member
 
Registered: Aug 2004
Posts: 65

Original Poster
Rep: Reputation: 15
Thanks for all the suggestions.

I now have a working Gnome system.

I ran dpkg-reconfigure <x package names> on several x package names, and change several default options. In particular settings related to my mouse and video card.

I still do not understand all the x packages (xserver*, x-window*, xfree* ) and how they relate to each other and work. The package gdm fits into this how I do not know.
 
Old 12-22-2005, 04:15 PM   #6
michapma
Member
 
Registered: Oct 2003
Location: Zürich
Distribution: Debian
Posts: 537

Rep: Reputation: 39
X server is a general term. The specific X server you are using is called XFree86:
your X server = XFree86

x-window-system is the name of the Debian package used to install XFree86. They are just different aspects of the same thing.

It is necessary for XFree86 (your X server) to work in order for Gnome to work. XFree86 works for Gnome, doing a lot of very basic tasks that Gnome relies on it for.

Gnome is a desktop environment. That means it is a graphical user interface (GUI) to the system, which uses a windows manager to, well, manage windows, and "provides icons, toolbars, applications, applets, and abilities like drag and drop. As a whole, the particularities of design and function of a desktop environment endow it with a distinctive look and feel."

KDE is another popular desktop environment for Linux.


GDM is a display manager. A display manager's job is to start an X session, which is just a GUI session on an X server. Let's say your computer has Gnome, KDE, XCFE and Fluxbox installed. (These are all alternative kinds of graphical user interfaces.) The computer doesn't know which one you'd like to use. The display manager (GDM in this case) allows you to select which one you'd like to use, and asks you for your username and password. That's all that you're likely to notice a display manager doing (although they do more). For now I guess just think of it as the program that gets you logged in and started using Gnome.

Read the Wikipedia links I provided and you'll start to understand better.
 
Old 12-23-2005, 09:04 AM   #7
pgte3
Member
 
Registered: Aug 2004
Posts: 65

Original Poster
Rep: Reputation: 15
Thanks for the information.
 
  


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
Basic system question SuSE05 Linux - Hardware 1 04-20-2005 10:21 PM
Basic (Minimal) System adriandaz Linux - Software 6 06-13-2004 02:18 PM
Basic system maintenance. mannymann Linux - Newbie 2 05-17-2004 11:19 PM
Help in building a basic linux system tuxfood Programming 4 03-22-2004 03:39 PM
Basic Clean System Questions? Boggit Linux - Newbie 1 06-30-2003 01:12 PM

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

All times are GMT -5. The time now is 04:43 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