LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 03-25-2007, 05:45 PM   #1
neu2linux
Member
 
Registered: Mar 2007
Location: Albuquerque, NM
Distribution: Debian, Slackware, Ubuntu
Posts: 46

Rep: Reputation: 15
x not starting after install


Hello, I am new to linux, but have experienced good things with debian based distros, so I decided to install Debian Sarge on my laptop... Installation seemed to go fine. But after I log in (even as root) and run 'startx' it goes to the gray screen with the 'x' curser and stays there(never fully loads) I tried reinstalling completely, but I have the same problem... Any ideas? Thanks.
 
Old 03-25-2007, 06:05 PM   #2
Quakeboy02
Senior Member
 
Registered: Nov 2006
Distribution: Debian Linux 11 (Bullseye)
Posts: 3,407

Rep: Reputation: 141Reputation: 141
The best thing you could do is to start all over and install Etch instead. It will come up with X working from the start, has drivers for more hardware, and has the latest versions of software. Sarge is marching into the pages of history. Let him go.
 
Old 03-26-2007, 10:50 AM   #3
neu2linux
Member
 
Registered: Mar 2007
Location: Albuquerque, NM
Distribution: Debian, Slackware, Ubuntu
Posts: 46

Original Poster
Rep: Reputation: 15
Etch?

Where can I find a good mirror for Etch?(any recommendations?) Also, whats the difference between Sarge and Etch? Pros/Cons? Thanks.
 
Old 03-26-2007, 11:09 AM   #4
BillyGalbreath
Member
 
Registered: Nov 2005
Location: Houston Texas
Distribution: Debian Sid
Posts: 379

Rep: Reputation: 31
If you're seeing the grey screen with a mouse, then X is working. You just dont have a DE or WM or Login Manager. Choose a DE or WM like Gnome, KDE, Xfce4, etc etc then install it. Or, if you're like me, install them all.

Code:
apt-get install gnome kde xfce4
You also need to install a login manager, like gdm or kdm. I liek gdm better, personally.

Code:
apt-get install gdm
Now type

Code:
gdm
This will start the login manager for you now. In the future, this login manager will come up on boot by default.

Note: All commands here should be run with root proviledges.

Last edited by BillyGalbreath; 03-26-2007 at 11:11 AM.
 
Old 03-26-2007, 03:44 PM   #5
neu2linux
Member
 
Registered: Mar 2007
Location: Albuquerque, NM
Distribution: Debian, Slackware, Ubuntu
Posts: 46

Original Poster
Rep: Reputation: 15
great thanks
 
Old 03-26-2007, 04:11 PM   #6
Quakeboy02
Senior Member
 
Registered: Nov 2006
Distribution: Debian Linux 11 (Bullseye)
Posts: 3,407

Rep: Reputation: 141Reputation: 141
I'm glad that billy got you running on Sarge, but you really need to consider upgrading to etch. Since you're just doing the install right now, this would be the best time, since you have no data to lose.

The etch install links are here. Don't take the Sarge link. You've already been there.

http://www.debian.org/devel/debian-installer/
 
Old 03-26-2007, 06:05 PM   #7
BillyGalbreath
Member
 
Registered: Nov 2005
Location: Houston Texas
Distribution: Debian Sid
Posts: 379

Rep: Reputation: 31
Yes, Etch is a good idea. But - dont format and reinstall. Thats a dumb idea. Just change your apt repositories to point to etch and do a dist upgrade.

Here's a quick rundown:

1) Edit your sources file: /etc/apt/sources.list - Here is a copy of mine from my Etch days:

Code:
deb http://ftp.us.debian.org/debian etch main contrib non-free
deb-src http://ftp.us.debian.org/debian etch main contrib non-free
deb http://ftp.debian.org/debian etch main contrib non-free
deb-src http://ftp.debian.org/debian etch main contrib non-free

deb http://security.debian.org/ etch/updates main contrib non-free
deb-src http://security.debian.org/ etch/updates main contrib non-free
2) Update the package list in apt:

Code:
apt-get update
3) Do a dist-upgrade:

Code:
apt-get dist-upgrade
If things break or something goes wrong, run this:

Code:
apt-get install -f
This will force (hence the -f) apt-get to fix anything thats broken. After that run the dist-upgrade again.

There you go, you have just upgraded Sarge to Etch.
 
Old 03-27-2007, 01:51 AM   #8
neu2linux
Member
 
Registered: Mar 2007
Location: Albuquerque, NM
Distribution: Debian, Slackware, Ubuntu
Posts: 46

Original Poster
Rep: Reputation: 15
Great! much thanks, and thank you for the quick and detailed replies.
 
Old 03-28-2007, 01:54 PM   #9
revenge80200
Member
 
Registered: Mar 2004
Location: Chicago
Distribution: Lenny & Xp
Posts: 238

Rep: Reputation: 30
We are not going to run into the Xfree86 to Xorg issue with updating from sagre to etch are we? That was a pain and not seeing it again would be nice.

Eric.
 
Old 03-28-2007, 04:59 PM   #10
BillyGalbreath
Member
 
Registered: Nov 2005
Location: Houston Texas
Distribution: Debian Sid
Posts: 379

Rep: Reputation: 31
Quote:
Originally Posted by revenge80200
We are not going to run into the Xfree86 to Xorg issue with updating from sagre to etch are we? That was a pain and not seeing it again would be nice.

Eric.
I for one, never ran into any issues. So I dont forsee any problems. If so, we are here to help.
 
Old 04-03-2007, 12:06 PM   #11
neu2linux
Member
 
Registered: Mar 2007
Location: Albuquerque, NM
Distribution: Debian, Slackware, Ubuntu
Posts: 46

Original Poster
Rep: Reputation: 15
Is it possible for me to do the dist-upgrade to Etch from a Sid-based distro? also, If I were to do so, will I loose all my configuration? ie. wifi, video, sound, ...
 
Old 04-03-2007, 12:27 PM   #12
revenge80200
Member
 
Registered: Mar 2004
Location: Chicago
Distribution: Lenny & Xp
Posts: 238

Rep: Reputation: 30
Sid is the unstable version, etch is the testing version. If I read you correctly, you are new to Linux, so I would not advise running Sid just yet. Stick with Etch until you are a bit more comfortable with linux.

Eric.
 
Old 04-03-2007, 12:37 PM   #13
neu2linux
Member
 
Registered: Mar 2007
Location: Albuquerque, NM
Distribution: Debian, Slackware, Ubuntu
Posts: 46

Original Poster
Rep: Reputation: 15
I am very new to linux. I have been playing around with it for about 6 months or so. However, my question is... I am using a Sid based distro(mainly because this disto detected, installed and configured my hardware automatically-which is why I stuck with it for a while) on one of my laptops. I am wanting to dist-upgrade to Etch, but wasn't sure if that was possible from Sid. Also, would all my hardware need reconfiguration? Thanks.
 
Old 04-04-2007, 12:19 AM   #14
neu2linux
Member
 
Registered: Mar 2007
Location: Albuquerque, NM
Distribution: Debian, Slackware, Ubuntu
Posts: 46

Original Poster
Rep: Reputation: 15
Thumbs up update...

Okay, I followed Billy's post and did a dist-upgrade from Sid to Etch. It works great now... and no configuration was lost. Thanks to you all, I have Etch running wonderfully on both of my machines.
 
  


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
Slackware not starting X install RAdams Slackware 2 09-05-2006 02:30 PM
Halo - STARTING TO INSTALL! BarfBag Linux - Games 7 03-10-2006 04:57 PM
Error: Unable to boot /install/2.6/linux when starting Etch Install BuckRogers01 Debian 4 08-06-2005 06:40 PM
DrakX not starting for LE install kingprawn Mandriva 0 06-30-2005 10:26 AM
Starting X New Install lmanwarren Slackware 2 04-23-2004 08:18 PM

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

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