LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 01-20-2005, 04:21 PM   #1
philip41
LQ Newbie
 
Registered: Jan 2005
Posts: 11

Rep: Reputation: 0
What have done (help ) please:newbie:


Oh dear i seem to have cockedup somewhat.

Running Ubuntu ( Hoary )

My Nvidia card fried on me so i wanted a replacement as soon as, so i went and bought an ATI Radeon 9550 guru.

I have changed the cards over and now ubuntu will not boot.
It is still looking for the Nvidia card, i believe.


Message Cannot Start x

" i will disable this x server for now.
Restart GDM when it configured correctly.

If i click ok, i am taken to a command prompt ( Ubuntu login ) i login and am then left at .

phil@ubuntu: " $

Please help.

Last edited by philip41; 01-20-2005 at 04:24 PM.
 
Old 01-20-2005, 04:29 PM   #2
Mojojo
Member
 
Registered: May 2003
Location: Philadelphia/PA
Distribution: Arch
Posts: 452

Rep: Reputation: 35
At the console log in as root and type XFdrake and select your new video card.
 
Old 01-20-2005, 04:36 PM   #3
Mojojo
Member
 
Registered: May 2003
Location: Philadelphia/PA
Distribution: Arch
Posts: 452

Rep: Reputation: 35
Then type startx and you should be back at a graphical desktop.
 
Old 01-20-2005, 04:36 PM   #4
philip41
LQ Newbie
 
Registered: Jan 2005
Posts: 11

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by Mojojo
At the console log in as root and type XFdrake and select your new video card.
That does not work ( command not found ) is that not for Mandrake?
 
Old 01-20-2005, 04:48 PM   #5
Mojojo
Member
 
Registered: May 2003
Location: Philadelphia/PA
Distribution: Arch
Posts: 452

Rep: Reputation: 35
Sorry thats the first I heard of Ubuntu try running a search on google though I will research it for you and post back if I find anything. "Mandrake is not a bad choice though for a newbie" you may want to try it.
 
Old 01-20-2005, 04:52 PM   #6
philip41
LQ Newbie
 
Registered: Jan 2005
Posts: 11

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by Mojojo
Sorry thats the first I heard of Ubuntu try running a search on google though I will research it for you and post back if I find anything. "Mandrake is not a bad choice though for a newbie" you may want to try it.
Thats ok, I have posted on there forums aswell so with any luck i will get help there.

Thanks for trying to help.
 
Old 01-20-2005, 05:23 PM   #7
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
edit your /etc/X11/xorg.conf file (as root) and change this:
Code:
Section "Device"
    Driver      "nv" (or possibly "nvidia")
to this:
Code:
Section "Device"
    Driver      "vesa"
This should get X up and running again.

edit: try "pico /etc/X11/xorg.conf", or "mcedit /etc/X11/xorg.conf", lastly "vim /etc/X11/xorg.conf"

type "man [command name]" for instructions!

Last edited by Tuttle; 01-20-2005 at 05:26 PM.
 
Old 01-20-2005, 05:47 PM   #8
philip41
LQ Newbie
 
Registered: Jan 2005
Posts: 11

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by Tuttle
edit your /etc/X11/xorg.conf file (as root) and change this:
Code:
Section "Device"
    Driver      "nv" (or possibly "nvidia")
to this:
Code:
Section "Device"
    Driver      "vesa"
This should get X up and running again.

edit: try "pico /etc/X11/xorg.conf", or "mcedit /etc/X11/xorg.conf", lastly "vim /etc/X11/xorg.conf"

type "man [command name]" for instructions!
Thankyou,thankyou, i have now got back in.

Is that it, or is there anything else i should need to do , because although i am in, i do not think things are right as i cannot change resolution, if i do the screen just gets all garbled up.

Last edited by philip41; 01-20-2005 at 05:50 PM.
 
Old 01-20-2005, 07:46 PM   #9
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
nice one.
If you look more closely at the file you edited you will see that it contains all the information the "X" windowing system needs including:
driver details (Device section(s))
screen resolution and colour depth (Screen section(s))
monitor type and refresh rate range (Monitor section(s))
keyboard & mouse (Input Device sections)

Drivers can usually be found on the manufacturers website (for linux) and are required for 3d accelerated graphics. It also needs to be declared in the "Driver" section of your xorg.conf file (like "nv" for nvidia) - read the "README" file for your driver for full info.
Radeon drivers aren't yet up to scratch, nvidia drivers on the other hand are a doddle.
For best results with screen resolution, read "man gtf" then try this for starters:
Code:
$ gtf 1024 768 75
  # 1024x768 @ 75.00 Hz (GTF) hsync: 60.15 kHz; pclk: 81.80 MHz
  Modeline "1024x768_75.00"  81.80  1024 1080 1192 1360  768 769 772 802  -HSync +Vsync
copy and paste YOUR output to the "Monitor" section of your xorg.conf, then edit it to match the resolution decalred in the "Screen" section thus:
Code:
Section "Monitor"
    Modeline "1024x768"  81.80  1024 1080 1192 1360  768 769 772 802  -HSync +Vsync
if "1024x768" is mentioned here:
Code:
    Subsection "Display"
        Depth       8
        Modes "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       32
        Modes "1024x768" "800x600" "640x480"
    EndSubsection
As you can see there are many ways of tweaking your graphics. Enjoy!
 
Old 01-21-2005, 11:43 AM   #10
philip41
LQ Newbie
 
Registered: Jan 2005
Posts: 11

Original Poster
Rep: Reputation: 0
Tuttle Thanks for the (how to) i will print it off for future reference.
I was not happy for some reason with the ATI card so i have bought another Nvidia card, i believe the drivers are more linux friendly than ATI's offerings, (i maybe wrong).

But i have totally screwed up the install know, because of the constant changes, so as i have had it only installed for a week or so i am just reinstalling Ubuntu.

Once agin thanks for the help. I know no where to next time i screw things up.
 
Old 01-21-2005, 12:30 PM   #11
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
This site is FULL of answers, a good place to start your search.
 
Old 01-21-2005, 01:29 PM   #12
philip41
LQ Newbie
 
Registered: Jan 2005
Posts: 11

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by Tuttle
This site is FULL of answers, a good place to start your search.
Having only just started to learn the ways of linux, i can see me being here reading for weeks and weeks.

Such a lot to learn and get used to.
 
  


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
security newbie, but not Linux newbie. advice on secure delete tools mattie_linux Linux - Security 19 08-15-2005 01:50 AM
Linux semi-newbie and Wine vary newbie geovolt_os1 Linux - Software 4 04-19-2005 11:03 AM
newbie;I am a linux newbie who has installed slackware and have run into a few proble MollyJolly Slackware - Installation 6 06-01-2004 11:21 AM
How To Update To Slackware-Current For a Newbie, By a Newbie :) windsok Slackware 1 09-18-2003 08:53 PM
ipchains newbie. Kernel newbie skeletal29 Linux - Security 3 06-02-2002 03:30 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

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