Hi all. I've finally gotten around to attempting linux on my 5320 and chose Ubuntu. I've run into an issue and my attempts to solve it have failed. I installed the latest Ubuntu (6.06) and installation went fine, but when I tried to boot, I have no GUI. It goes straight to command line. It says it is unable to find a monitor. However, the command line is clearly visible on my screen. Any ideas?
NotebookForums.com › Forums › General Notebook Discussions › Linux & Other OS's › Ubuntu GUI and Sager 5320
Recent Reviews
-
So I just got a Lenovo Yoga 13. This is my review. As what I primarily do is writing and programming, having a good keyboard is critical for me, which is why a tablet alone can’t work for me, and...
-
I have owned dozens of laptops in a variety of brands, and had many different laptops provided for my use at work. Without question, this is the finest I have owned. The Alienware M17x R2 is a...
-
N/m
-
Lenovo Thinkpad W530 Review by Djembe One of the longest and most enduring brands in computers is Thinkpad. Originally developed by IBM in the USA, Thinkpad notebook computers are now...
-
I have this memory installed in my Inspiron 14R. 6gb (one 2gb & one 4gb). Great performance! I highly recommend Kingston.
Ubuntu GUI and Sager 5320
post #2 of 13
9/17/06 at 6:56pm
- TwilightVampire
- 0
- Vampire Moderator
-
- offline
- Joined: 3/2005
- Location: Baltimore, MD
- Posts: 24,006
- Reviews: 1
- Select All Posts By This User
post #4 of 13
9/17/06 at 11:21pm
teh device is /dev/sda1 typically... but it gets automounted anyway... or it should.
so anyway here is a walkthrough on what should happen.
log into text mode.
-- ls /media/
look for "usbdisk" or if your flash drive has a name like Corsair or whatever it will show up there as such, thats your already mounted device. if nothing shows up in /media then you have to manual mount it.
-- sudo mkdir /media/usb
-- sudo mount /dev/sda1 /media/usb
then copy your file
-- cp /var/log/Xorg.0.log /media/usb
if it gives you some crap about ommiting file or permissions
-- sudo mv /var/log/Xorg.0.log /media/usb
finally unmount
-- sudo umount /dev/sda1
and reboot
-- sudo reboot
so anyway here is a walkthrough on what should happen.
log into text mode.
-- ls /media/
look for "usbdisk" or if your flash drive has a name like Corsair or whatever it will show up there as such, thats your already mounted device. if nothing shows up in /media then you have to manual mount it.
-- sudo mkdir /media/usb
-- sudo mount /dev/sda1 /media/usb
then copy your file
-- cp /var/log/Xorg.0.log /media/usb
if it gives you some crap about ommiting file or permissions
-- sudo mv /var/log/Xorg.0.log /media/usb
finally unmount
-- sudo umount /dev/sda1
and reboot
-- sudo reboot
- TwilightVampire
- 0
- Vampire Moderator
-
- offline
- Joined: 3/2005
- Location: Baltimore, MD
- Posts: 24,006
- Reviews: 1
- Select All Posts By This User
post #6 of 13
9/18/06 at 10:39am
post #7 of 13
9/18/06 at 11:06am
- bigtrouble77
- 0
- #1 Zanger Bob Fan!
- offline
- Joined: 10/2004
- Posts: 1,233
- Select All Posts By This User
- TwilightVampire
- 0
- Vampire Moderator
-
- offline
- Joined: 3/2005
- Location: Baltimore, MD
- Posts: 24,006
- Reviews: 1
- Select All Posts By This User
post #9 of 13
9/18/06 at 2:42pm
- bigtrouble77
- 0
- #1 Zanger Bob Fan!
- offline
- Joined: 10/2004
- Posts: 1,233
- Select All Posts By This User
Quote:
|
Originally Posted by TwilightVampire
Big Trouble, that just brought up what appears to be a blank text editor.
|
Here's my xorg.conf on my server that has an ATI card. It uses the ati driver, which should work for you:
Code:
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "Files"
\tFontPath\t"/usr/share/X11/fonts/misc"
\tFontPath\t"/usr/share/X11/fonts/cyrillic"
\tFontPath\t"/usr/share/X11/fonts/100dpi/:unscaled"
\tFontPath\t"/usr/share/X11/fonts/75dpi/:unscaled"
\tFontPath\t"/usr/share/X11/fonts/Type1"
\tFontPath\t"/usr/share/X11/fonts/100dpi"
\tFontPath\t"/usr/share/X11/fonts/75dpi"
\t# path to defoma fonts
\tFontPath\t"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection
Section "Module"
\tLoad\t"i2c"
\tLoad\t"bitmap"
\tLoad\t"ddc"
\tLoad\t"dri"
\tLoad\t"extmod"
\tLoad\t"freetype"
\tLoad\t"glx"
\tLoad\t"int10"
\tLoad\t"type1"
\tLoad\t"vbe"
EndSection
Section "InputDevice"
\tIdentifier\t"Generic Keyboard"
\tDriver\t\t"kbd"
\tOption\t\t"CoreKeyboard"
\tOption\t\t"XkbRules"\t"xorg"
\tOption\t\t"XkbModel"\t"pc104"
\tOption\t\t"XkbLayout"\t"us"
EndSection
Section "InputDevice"
\tIdentifier\t"Configured Mouse"
\tDriver\t\t"mouse"
\tOption\t\t"CorePointer"
\tOption\t\t"Device"\t\t"/dev/input/mice"
\tOption\t\t"Protocol"\t\t"ExplorerPS/2"
\tOption\t\t"ZAxisMapping"\t\t"4 5"
\tOption\t\t"Emulate3Buttons"\t"true"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/wacom" # Change to
# /dev/input/event
# for USB
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/wacom" # Change to
# /dev/input/event
# for USB
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/wacom" # Change to
# /dev/input/event
# for USB
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "Device"
\tIdentifier\t"ATI Technologies, Inc. Radeon Xpress 200 (RS480)"
\tDriver\t\t"ati"
\tBusID\t\t"PCI:1:5:0"
EndSection
Section "Monitor"
\tIdentifier\t"StudioWorks"
\tOption\t\t"DPMS"
EndSection
Section "Screen"
\tIdentifier\t"Default Screen"
\tDevice\t\t"ATI Technologies, Inc. Radeon Xpress 200 (RS480)"
\tMonitor\t\t"StudioWorks"
\tDefaultDepth\t24
\tSubSection "Display"
\t\tDepth\t\t1
\t\tModes\t\t"1600x1200" "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
\tEndSubSection
\tSubSection "Display"
\t\tDepth\t\t4
\t\tModes\t\t"1600x1200" "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
\tEndSubSection
\tSubSection "Display"
\t\tDepth\t\t8
\t\tModes\t\t"1600x1200" "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
\tEndSubSection
\tSubSection "Display"
\t\tDepth\t\t15
\t\tModes\t\t"1600x1200" "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
\tEndSubSection
\tSubSection "Display"
\t\tDepth\t\t16
\t\tModes\t\t"1600x1200" "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
\tEndSubSection
\tSubSection "Display"
\t\tDepth\t\t24
\t\tModes\t\t"1024x768" "832x624" "800x600" "720x400" "640x480"
\tEndSubSection
EndSection
Section "ServerLayout"
\tIdentifier\t"Default Layout"
\tScreen\t\t"Default Screen"
\tInputDevice\t"Generic Keyboard"
\tInputDevice\t"Configured Mouse"
\tInputDevice "stylus" "SendCoreEvents"
\tInputDevice "cursor" "SendCoreEvents"
\tInputDevice "eraser" "SendCoreEvents"
EndSection
Section "DRI"
\tMode\t0666
EndSection
I would save this to a file called xorg.conf then ftp into the ubuntu machine and save the file in the /etc/X11 directory. I think it'll work fine for you- the pci busID might have to be changed (my laptop uses BusID "PCI:2:0:0"). If you notice the file already exists then post the contents here.
- TwilightVampire
- 0
- Vampire Moderator
-
- offline
- Joined: 3/2005
- Location: Baltimore, MD
- Posts: 24,006
- Reviews: 1
- Select All Posts By This User
This is annoying. I booted to recovery mode and used sudo dpkg-reconfigure xserver-xorg and reset everything concerning video and the screen manually and it gives me the exact same error situation. I'm sure I set the thing up properly.
The exact error is this:
"Failed to start the X Server (Your Graphical Interface). It is likely that it is not setup correctly. Would you like to view the X server output to diagnose the problem?"
I tell it yes and it takes me to a rather short output and the only info beyond the basic is "Fatal server error: No screens found"
It is given to me just as the login pops up.
The exact error is this:
"Failed to start the X Server (Your Graphical Interface). It is likely that it is not setup correctly. Would you like to view the X server output to diagnose the problem?"
I tell it yes and it takes me to a rather short output and the only info beyond the basic is "Fatal server error: No screens found"
It is given to me just as the login pops up.
- TwilightVampire
- 0
- Vampire Moderator
-
- offline
- Joined: 3/2005
- Location: Baltimore, MD
- Posts: 24,006
- Reviews: 1
- Select All Posts By This User
post #12 of 13
9/18/06 at 5:38pm
- TwilightVampire
- 0
- Vampire Moderator
-
- offline
- Joined: 3/2005
- Location: Baltimore, MD
- Posts: 24,006
- Reviews: 1
- Select All Posts By This User
Just wanted to make sure everything was working ok before I posted the solution.
I booted to recovery mode and used sudo dpkg-reconfigure xserver-xorg, and tried using the and used the Vesa drivers from there. Unfourtenetly this lacked widescreen support, so I was forced to use the guide at wiki.cchtml.com/ to add all my resolutions through the ATI driver.
Guide here
This had the odd side effect of putting two Ubuntu's and restore modes in my GRUB loader though. Oh well, I can fix that easily.
I booted to recovery mode and used sudo dpkg-reconfigure xserver-xorg, and tried using the and used the Vesa drivers from there. Unfourtenetly this lacked widescreen support, so I was forced to use the guide at wiki.cchtml.com/ to add all my resolutions through the ATI driver.
Guide here
This had the odd side effect of putting two Ubuntu's and restore modes in my GRUB loader though. Oh well, I can fix that easily.
Return Home
Back to Forum: Linux & Other OS's
- Ubuntu GUI and Sager 5320
NotebookForums.com › Forums › General Notebook Discussions › Linux & Other OS's › Ubuntu GUI and Sager 5320
Currently, there are 164 Active Users
(1 Member and 163 Guests)
Recent Discussions
- › Gateway Solo 9300 upgrade? 47 minutes ago
- › Where minds meet 1 hour, 36 minutes ago
- › Is the popular trackpad problem of Lenovo Ideapad Y500 solved or not? 1 hour, 48 minutes ago
- › Latitude D800 freezes after about four minutes after taking out of... 2 hours, 25 minutes ago
- › acer aspire one problem 3 hours, 56 minutes ago
- › Cool (at times "Free") iOS apps 8 hours, 38 minutes ago
- › DIAMOND WR300NSI 300Mbps 802.11n Wireless Repeater Range Extender 12 hours, 20 minutes ago
- › Problem Aspire 8920G goes on and off with power supply 12 hours, 26 minutes ago
- › HP ENVY Rove20 mobile All-in-One PC 12 hours, 44 minutes ago
- › X501U Downgrading Windows 8 to Windows 7 13 hours, 33 minutes ago
View: New Posts | All Discussions
Recent Reviews
- › Lenovo Yoga 13 IdeaPad Convertbale Ultrabook (tablet) 13.3"... by The Bard sRc
- › Alienware M18X by MrFox
- › Kensington Black Contour Pro 17" Notebook Carrying Case Model... by great white
- › Lenovo W530-24382LU i7-3720QM 2.60GHz 4GB 500GB 7200rpm NVIDIA... by Djembe
- › Kingston 8GB (2 x 4GB) 204-Pin DDR3 SO-DIMM DDR3 1333 Laptop Memory by Nicadraus
- › Synology DiskStation 1-Bay (Diskless) Network Attached Storage... by Mr T
- › Barnes & Noble Nook Color by sewshoplady
- › Cooler Master CM Storm Spawn 3500 DPI Optical Sensor Gaming Mouse... by Rotterdamblues
- › Samsung MV-3T4G4 4GB DDR3 Laptop SDRAM (1333MHz PC3-10600) by Rotterdamblues
- › Alienware Aurora m9700 by amythompson172
View: More Reviews
New Articles
- › Intel Summer 2012 SSD Scavenger Hunt - Full... by ranjanis
- › Intel's Maple Crest 330 Series Promotion... by ranjanis
- › Intel Cherryville SSD Spring 2012 Giveaway by ranjanis
- › Intel Cherryville SSD Giveaway 2012 - Terms... by ranjanis
- › Advertise by jdz2287
- › Search And Advanced Search Tutorial by NotebookForums
- › Tagging Tutorial by NotebookForums
- › Add A New Item Tutorial by NotebookForums
- › Image And Video Tutorial by NotebookForums
- › Subscription Tutorial by NotebookForums
View: New Articles | All Articles
Home | Reviews | Forums | Articles | My Profile
About NotebookForums.com | Join the Community | Advertise
© 2013 NotebookForums.com is powered by Huddler Tech | FAQ | Support | Privacy/TOS | Site Map
About NotebookForums.com | Join the Community | Advertise
© 2013 NotebookForums.com is powered by Huddler Tech | FAQ | Support | Privacy/TOS | Site Map





But it did give me crap