LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
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 07-08-2011, 02:30 PM   #16
sin667
Member
 
Registered: Jul 2011
Posts: 59

Original Poster
Rep: Reputation: Disabled

Ok, I got the report but it zoomed by really fast.

Newbie question is there a way to make it go page by page instead of blasting the whole thing past me?
 
Old 07-08-2011, 02:43 PM   #17
sin667
Member
 
Registered: Jul 2011
Posts: 59

Original Poster
Rep: Reputation: Disabled
Code:
| less
works! I'm learning!

Under driver it says "svga"
 
Old 07-08-2011, 02:47 PM   #18
{BBI}Nexus{BBI}
Senior Member
 
Registered: Jan 2005
Location: Nottingham, UK
Distribution: Mageia 6, KDE Neon
Posts: 4,313

Rep: Reputation: 212Reputation: 212Reputation: 212
Apologies I forgot it'll do that.
Code:
cat | less /etc/X11/XF86Config
(the | character is shift & \) you can now use your enter key to step through the listing. Use the letter q to quit.

I have another thought, while we can spend a lot of time diagnosing the problem here's a quick test to see if it's related to your current login.

If you have the permission to do so:

1. Create a new user with the command:
Code:
adduser <username>
2. Create a password for that user with
Code:
passwd <username>
Once you have done this, login as that user and see if you get the desktop to load.
 
Old 07-08-2011, 02:57 PM   #19
sin667
Member
 
Registered: Jul 2011
Posts: 59

Original Poster
Rep: Reputation: Disabled
logged in under new user. startx -> same blue screen with x for cursor -> after a min back to command prompt with same error.
 
Old 07-08-2011, 03:09 PM   #20
{BBI}Nexus{BBI}
Senior Member
 
Registered: Jan 2005
Location: Nottingham, UK
Distribution: Mageia 6, KDE Neon
Posts: 4,313

Rep: Reputation: 212Reputation: 212Reputation: 212
How are you at editing via commandline? If you are able I'd like to see what happens if you manually change the svga in your XF86Config to vesa if that works and you get a desktop, you can use the Control Centre to change the video driver. If it fails, try changing it to nvidia and if that fails try nv.

But before doing any of that make a backup of your current XF86Config file to your current location with:
Code:
cp /etc/X11/XF86Config .
check you have a copy at your currrent location with the ls command.
 
Old 07-08-2011, 03:16 PM   #21
sin667
Member
 
Registered: Jul 2011
Posts: 59

Original Poster
Rep: Reputation: Disabled
I meant the basic black command screen, not sure what is the proper term for that. The one it puts you in on booting

I am unsure on how to edit that file from that screen. Would I just change it in the XFdrake menu without using the test option?
 
Old 07-08-2011, 03:20 PM   #22
{BBI}Nexus{BBI}
Senior Member
 
Registered: Jan 2005
Location: Nottingham, UK
Distribution: Mageia 6, KDE Neon
Posts: 4,313

Rep: Reputation: 212Reputation: 212Reputation: 212
There's no special name for it. Terminal is generally used to let folks like me know you are at a command prompt. The XFdrake option doesn't seem to be generating a new XF86Config or we wouldn't still have svga under the driver section.

Last edited by {BBI}Nexus{BBI}; 07-08-2011 at 03:43 PM.
 
Old 07-08-2011, 03:24 PM   #23
sin667
Member
 
Registered: Jul 2011
Posts: 59

Original Poster
Rep: Reputation: Disabled
Yes, and no. It hung up when I when into the internal "Test" option it had, and had to hard re-boot.

So technically I never changed it, or so as I see it.

Possibly force it to a different driver, without it's internal "test", then try and startx would change the XF86Config file?
 
Old 07-08-2011, 03:26 PM   #24
{BBI}Nexus{BBI}
Senior Member
 
Registered: Jan 2005
Location: Nottingham, UK
Distribution: Mageia 6, KDE Neon
Posts: 4,313

Rep: Reputation: 212Reputation: 212Reputation: 212
I see what you're saying, yes I agree do the changes but not the test and see if the changes get written to the XF86 file.
 
Old 07-08-2011, 04:03 PM   #25
sin667
Member
 
Registered: Jul 2011
Posts: 59

Original Poster
Rep: Reputation: Disabled
Ok, it definitely changed the format of that file when I chose the NVidia GeForce4 (generic) option.

But well down the page now it still says Driver "svga" even though it says Nvidia for vendor and board name above it.

Also in XFdrake it said that the driver was supposed to be named nv...

So it is properly formatting the file just not using the proper driver as I can tell.

It's quitting time here again, though I am in tomorrow as well. If you are available I would love to resume this testing. Thanks again.
 
Old 07-08-2011, 04:05 PM   #26
{BBI}Nexus{BBI}
Senior Member
 
Registered: Jan 2005
Location: Nottingham, UK
Distribution: Mageia 6, KDE Neon
Posts: 4,313

Rep: Reputation: 212Reputation: 212Reputation: 212
Sure thing. I think we're looking at manually putting the name of the driver to use. I'm not sure if you have your own text editor installed. If not you'll need to read up on vi that will most certainly be there as the default commandline editor.

Last edited by {BBI}Nexus{BBI}; 07-08-2011 at 04:06 PM.
 
Old 07-09-2011, 01:08 PM   #27
sin667
Member
 
Registered: Jul 2011
Posts: 59

Original Poster
Rep: Reputation: Disabled
Ok, I worked in vi. Was pretty simple once I got the idea of command and input modes.

Changed the XF86Config file to read Driver "nv" like what it said in XFDrake.

Checked it after I was back in the terminal, It did change to be named "nv".

Tried a startx. Same hang, then same error.
 
Old 07-09-2011, 01:24 PM   #28
{BBI}Nexus{BBI}
Senior Member
 
Registered: Jan 2005
Location: Nottingham, UK
Distribution: Mageia 6, KDE Neon
Posts: 4,313

Rep: Reputation: 212Reputation: 212Reputation: 212
How about if you change it to nvidia? Also can you check if the nvidia module is being loaded, type:
Code:
lsmod | grep nvidia
 
Old 07-09-2011, 01:39 PM   #29
sin667
Member
 
Registered: Jul 2011
Posts: 59

Original Poster
Rep: Reputation: Disabled
I just tried naming "nvidia" and same thing.

I ran the lsmod command and got lsmod:command not found.

In root the lsmod command gave no return.
 
Old 07-09-2011, 01:40 PM   #30
{BBI}Nexus{BBI}
Senior Member
 
Registered: Jan 2005
Location: Nottingham, UK
Distribution: Mageia 6, KDE Neon
Posts: 4,313

Rep: Reputation: 212Reputation: 212Reputation: 212
I've just taken another look at the /etc/X11/XF86Config contents you posted. There seems to be a lot of info missing. I want to make sure we are working with the correct one. Please do a
Code:
ls /etc/X11
and tell me how many XF86Config files you see. In particular is there one named XF86Config-4.
 
  


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
xserver-xfree86: Xserver could not start on my ATI-radeon video card Shankarrajus Debian 2 07-17-2006 07:00 AM
Unable to Start Xserver w/AIW 7500 Paulymon Linux - Newbie 1 08-30-2005 06:51 PM
Start with no Xserver LinxNew Mandriva 1 05-08-2005 04:42 PM
XServer do not start mcp_achindra Linux - Software 1 04-29-2004 06:24 AM
Mandrake 8.0, cant start Xserver att666 Linux - Software 4 12-05-2001 03:18 PM

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

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