LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE
User Name
Password
SUSE / openSUSE This Forum is for the discussion of Suse Linux.

Notices


Reply
  Search this Thread
Old 03-15-2006, 03:01 PM   #1
snarvey
LQ Newbie
 
Registered: Mar 2006
Posts: 9

Rep: Reputation: 0
sax2 freezes


I am new to the linux thing and am trying to get it to work on my system. I have a Dell with a flat screen monitor. After installing and booting up for the first time, the screen goes black and I get the following message on the screen:
Cannot Display This Video Mode

I rebooted in failsafe mode to try to run sax2 and it came up on the screen but then froze. It does this every time I try...
Any ideas??
 
Old 03-15-2006, 04:32 PM   #2
PerfectReign
Member
 
Registered: Apr 2005
Location: Los Angeles
Distribution: openSUSE / Ubuntu
Posts: 294

Rep: Reputation: 33
Which monitor is it? Was it listed during the install? Also what video card are you using/did you select? SUSE is pretty bullet-proof with monitors and such, so there shouldn't be a problem. However, YMMV if you have a really fancy monitor/video card which is really new.

You could always drop out of the GUI mode by pressing the key combo CTRL+ALT+BACKSPACE. Once there, you can enter init 3 as root and run SaX2.
 
Old 03-15-2006, 09:55 PM   #3
snarvey
LQ Newbie
 
Registered: Mar 2006
Posts: 9

Original Poster
Rep: Reputation: 0
I have a Dell E173FP flat panel monitor with a radeon X600 video card. I tried reinstalling and made sure that the correct models were listed. Still get the same thing. I'm not sure I'll ever get this thing working....
 
Old 03-15-2006, 11:11 PM   #4
victorh
Member
 
Registered: Jul 2005
Location: La Paz, Bolivia
Distribution: Debian Sarge - Sid, Slackware, Gentoo, openSuse, Fedora, Ubuntu, Mandriva
Posts: 241

Rep: Reputation: 30
Hi snarvey, it seems that your problem is related with the configuration of your monitor. so you need to know the following specs: vertical and horizontal frequencies and display size. Look in the manuals of your monitor or you can google to find out.

Also, you have an ATI graphic driver, that means that if you want to use it with 3D acceleration you need the proprietary driver. Since this will complicate more your problem, you can delay this after you have X running. Then, you can use the "radeon" driver, in case this doesn't work, you can always use the generic driver "vesa".

From your post it's clear that sax2 is not going to help you do this task (This problem with sax2 is very common, I hope that it's fixed in SuSE 10.1). So you need to edit manually the X configuration file.

Don't worry, this is not difficult. You just have to follow these instructions:

1. Boot in failsafe mode, you must be in a console terminal. Log in as root:
Quote:
root
Password: (Type your root password)
2. First you have to do a backup of the configuration file, type:
Quote:
cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
3. You need to use a text editor to edit the file /etc/X11/xorg.conf, you can use vim:
Quote:
vim /etc/X11/xorg.conf
4. In the console you'll see the start of this file, you can use the up and down arrow to move. The next step is finding the Monitor Section, just press the down arrow until you see something like this:
Quote:
Section "Monitor"
Identifier "Monitor0"
DisplaySize 352 264
HorizSync 30-96
VertRefresh 50-160
Option "DPMS"
When you find this Section, it's time to change the specifications of your monitor. Type "i", in the bottom line you'll see the text INSERT, this means that now you can edit the file. Move with the arrows, use the Delete buttom to erase what you think is wrong. Put the correct values, please note the spaces.

5. Once you think this Section is correct, you need to find the Driver Section, you have to scroll down a little bit more until you see this section:
Quote:
Section "Device"
Identifier "ATI Graphics Adapter"
Driver "fglrx"
As you can see, I'm using the "fglrx" driver, this is the propietary driver that you may install after. For now, you have to make sure that you are using the "radeon" driver. Again change it carefully.

6. Once done this, you have to save the file. First press "Esc", and then press ":wq", please note that this command will appear at the bottom line. Then press Enter.

7. There you have your new xorg.conf file, ready to be used. Logout as root, and then log in as a normal user. Then type in the command line:
Quote:
startx
8. Hopefully, you'll go straight to KDE...

In case you still have problems. Try to use the generic driver "vesa" instead of the "radeon" driver. You have to edit again the xorg.conf file.

In case you can't start X. Please post the errors in the file /var/log/Xorg.0.log:

Quote:
cat /var/log/Xorg.0.log | grep "(EE)"
.

Last edited by victorh; 03-15-2006 at 11:13 PM.
 
Old 03-19-2006, 08:10 PM   #5
snarvey
LQ Newbie
 
Registered: Mar 2006
Posts: 9

Original Poster
Rep: Reputation: 0
Hi victorh,
I think I got the driver installed, but the xstart command won't work. I get messages such as:


----------------------------------------------------------
/usr/X11R6/bin/startx: line 235: cannot create temp file for here document: Input/output error
/usr/X11R6/bin/startx: line 245: xauth: command not found

Fatal server error:
Could not create lock file in /tmp/.tX0-lock

giving up.
xinit: Connection refused (errno 111): unable to connect to X server
xinit: No such process (errno 3): Server error.
/usr/X11R6/bin/startx: line 271: xauth: command not found.
--------------------------------------------------------


this doesnt seem like an error with the video card
maybe something wrong with the X server?
 
Old 03-19-2006, 09:19 PM   #6
victorh
Member
 
Registered: Jul 2005
Location: La Paz, Bolivia
Distribution: Debian Sarge - Sid, Slackware, Gentoo, openSuse, Fedora, Ubuntu, Mandriva
Posts: 241

Rep: Reputation: 30
It seeems that you have started X as root and the /tmp/.tx0-lock file is still there and owned by root. Then you want to start X as a normal user but you couldn't because you can't write to this file.

Do a reboot and try again. This time as a normal user.
 
Old 03-19-2006, 11:17 PM   #7
snarvey
LQ Newbie
 
Registered: Mar 2006
Posts: 9

Original Poster
Rep: Reputation: 0
ok, i rebooted and logged in as a normal user this time, but still the same messages. Just for kicks, i tried to create a dummy file in the /tmp directory, but it game me "Input/output error"
Any idea what might be the problem here?
Thanks for your help, victorh
 
Old 03-20-2006, 09:22 AM   #8
victorh
Member
 
Registered: Jul 2005
Location: La Paz, Bolivia
Distribution: Debian Sarge - Sid, Slackware, Gentoo, openSuse, Fedora, Ubuntu, Mandriva
Posts: 241

Rep: Reputation: 30
Hi snarvey, the problem may be caused by wrong permissions in /tmp.

You can review the permissions in the /tmp directory, type:
Quote:
% ls -ld /tmp
they should look like these:
Quote:
drwxrwxrwt 83 root root 12288 2006-03-20 11:04 /tmp
If you want to change the permissions, type the following as root:
Quote:
# chmod 1777 /tmp
Also, make sure the ownership and group membership is correct, otherwhise reset them with:
Quote:
# chown root /tmp
# chgrp root /tmp
 
Old 03-21-2006, 08:10 PM   #9
snarvey
LQ Newbie
 
Registered: Mar 2006
Posts: 9

Original Poster
Rep: Reputation: 0
OK, I tried all that checking permissions for the dir, and they all seem to be correct, and I am still getting the errors, Any other ideas?
 
  


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
Sax2 for Slack: Would you like it? gargamel Slackware 6 02-22-2005 04:08 AM
remove sax2? greythorne SUSE / openSUSE 1 10-14-2004 05:14 AM
fedora core 2 (FC2) freezes while running. Cannot boot into KDE it freezes mraswan Fedora 0 05-25-2004 07:46 PM
ati and sax2 Paul Huddart General 1 10-28-2003 04:51 PM
sax2 sodaforce Linux - Software 1 09-12-2003 03:45 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE

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