LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 09-08-2004, 09:56 PM   #1
nocord
LQ Newbie
 
Registered: Sep 2004
Location: Nashville, TN
Distribution: Slackware 10
Posts: 6

Rep: Reputation: 0
Slackware 10 Laptop Problems


Hi I'm having a problem with the display drivers (I think). Erm rather I think the kernel isn't loading the correct modules for display. I have a 13" screen - and only about 4X7 is usable... I'm not sure whats wrong here - Its a Sony Vaio Laptop PCG-FX120. Running Slackware 10. -- Any help apprecated!
 
Old 09-09-2004, 12:26 AM   #2
ppuru
Senior Member
 
Registered: Mar 2003
Location: Beautiful BC
Distribution: RedHat & clones, Slackware, SuSE, OpenBSD
Posts: 1,791

Rep: Reputation: 50
Not sure if this will help ... try setting the vga parameter in your lilo or grub.conf

vga=788 for example
 
Old 09-09-2004, 09:17 AM   #3
guzzi
Member
 
Registered: Jun 2004
Location: Lawrence, KS
Distribution: Slackware
Posts: 313

Rep: Reputation: 40
laptop video

Hello nocord

Are you saying that the GUI is using just a small part of your display, or is it your terminal display?

I have a PCG-GRZ530 running Slackware 10 (2.4.26) without any problem like that. And that is from a normal installation without and configuration. To get a higher screen resolution, some config was required.
 
Old 09-09-2004, 03:40 PM   #4
nocord
LQ Newbie
 
Registered: Sep 2004
Location: Nashville, TN
Distribution: Slackware 10
Posts: 6

Original Poster
Rep: Reputation: 0
Yes, the actual viewing area in terminal or X is like 4"X8" out of 13" monitor size. I've tried setting the vga in lilo.conf to "vga = normal" with no effect - It was previously set to "vga = 788" - what config do you mean guzzi?
 
Old 09-09-2004, 11:39 PM   #5
ppuru
Senior Member
 
Registered: Mar 2003
Location: Beautiful BC
Distribution: RedHat & clones, Slackware, SuSE, OpenBSD
Posts: 1,791

Rep: Reputation: 50
another suggestion ...
save the existing xorg.conf ... and try running the xorg config utilities

xorgcfg / xorgconfig
 
Old 09-10-2004, 09:15 AM   #6
guzzi
Member
 
Registered: Jun 2004
Location: Lawrence, KS
Distribution: Slackware
Posts: 313

Rep: Reputation: 40
display

The config files that I modify to get a higher screen resolution are those in /etc/X11

Anything that has settings for my monitor I modify with the following:

Subsection "Display"
Depth 8
Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection

However, I think that ppuru may be on to something with that last post. Or, is it possiable that the horizontal or vertical settings are in error?

Opps... Thats the settings from a server here, I'll get the SONY laptop settings an post them.

Last edited by guzzi; 09-10-2004 at 09:19 AM.
 
Old 09-10-2004, 09:39 AM   #7
guzzi
Member
 
Registered: Jun 2004
Location: Lawrence, KS
Distribution: Slackware
Posts: 313

Rep: Reputation: 40
laptop display

the following is a whats' in my /etc/X11/xorg.conf


# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

Section "Monitor"

Identifier "My Monitor"

# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

HorizSync 31.5 - 50.0

# HorizSync 30-64 # multisync
# HorizSync 31.5, 35.2 # multiple fixed sync frequencies
# HorizSync 15-25, 30-50 # multiple ranges of sync frequencies

# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

VertRefresh 40-90

EndSection


# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

Section "Device"
Identifier "VESA Framebuffer"
Driver "vesa"
#VideoRam 4096
# Insert Clocks lines here if appropriate
EndSection

# **********************************************************************
# Screen sections
# **********************************************************************

# Any number of screen sections may be present. Each describes
# the configuration of a single screen. A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
Identifier "Screen 1"
Device "VESA Framebuffer"
Monitor "My Monitor"

# If your card can handle it, a higher default color depth (like 24 or 32)
# is highly recommended.

# DefaultDepth 8
# DefaultDepth 16
DefaultDepth 24
# DefaultDepth 32

# "1024x768" is also a conservative usable default resolution. If you
# have a better monitor, feel free to try resolutions such as
# "1152x864", "1280x1024", "1600x1200", and "1800x1400" (or whatever your
# card/monitor can produce)

Subsection "Display"
Depth 8
Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 16
Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 24
Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 32
Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
EndSubsection

EndSection

the /etc/X11/xorg.conf-vesa is the same. The /etc/X11/xorg.conf-fbdev has only one change from the above, and that is the line In Section "Device"

Driver "fbdev"

Hope this is will help for you.
 
Old 09-11-2004, 08:46 AM   #8
ppuru
Senior Member
 
Registered: Mar 2003
Location: Beautiful BC
Distribution: RedHat & clones, Slackware, SuSE, OpenBSD
Posts: 1,791

Rep: Reputation: 50
Guuzi, can you

1. cp /etc/X11/xorg.conf /etc//X11/xorg.conf.orig
2. run xorgcfg

and try to reconfigure the display.
 
Old 09-11-2004, 12:57 PM   #9
guzzi
Member
 
Registered: Jun 2004
Location: Lawrence, KS
Distribution: Slackware
Posts: 313

Rep: Reputation: 40
display

ppuru

I just finished doing as you requested, and the file /etc/X11/xorg.conf that was created is similar to, but not identical to the inital file.

After running xorgcfg from /usr/X11/R6/bin, I started X and the display was at the resolution it had been, but the file needed tweeking. In the new xorg.conf I fixed the HorizSync from 31.5 - 92.0 to 30 - 110 Vert Refresh was OK at 48.0 - 170.0. And, I uncommented the Video Ram line which was correct.

My video card is a ATI 7000 AGP with 64M. I have the system see it as a generic ATI Radeon. The monitor is a Sony G420. I run this at 1600x1200 @ 85Hz

Have you any suggestions?
 
Old 09-11-2004, 03:44 PM   #10
Cordless
LQ Newbie
 
Registered: Sep 2003
Location: Tennessee
Distribution: Red Hat 9
Posts: 2

Rep: Reputation: 0
I'm having similar problems - I think its something to do with the Vesa drivers - perhaps need to tweak them - any ideas as to what to tweak to???
 
Old 09-11-2004, 06:36 PM   #11
guzzi
Member
 
Registered: Jun 2004
Location: Lawrence, KS
Distribution: Slackware
Posts: 313

Rep: Reputation: 40
display

please excuse my stupidity.

when I ran xorconf, I did it on a system other than the one we all discussing. The above post of mine shows the results from running xorgconf on a SuperMicro desktop system. On the Sony laptop, I don't have the xorgconf available anywhere in the filesystem to run.

Again please accept my appoligies for not keeping on the right track.
 
Old 09-11-2004, 09:15 PM   #12
nocord
LQ Newbie
 
Registered: Sep 2004
Location: Nashville, TN
Distribution: Slackware 10
Posts: 6

Original Poster
Rep: Reputation: 0
Hey guys got it fixed:

Turns out my graphics device was: "vesa" - I changed the driver to i810 and set the depth to 16 and it works great. Thanks for the replys!
 
  


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
Getting a laptop: touchpad locking & bios conflicts & other possible laptop problems? mandrakemikael Linux - Laptop and Netbook 2 12-09-2004 07:15 AM
slackware on a laptop sethgeekx86 Slackware 27 07-07-2004 12:01 PM
Slackware 9.0, old laptop, cinfiguration problems!! davec Linux - Newbie 3 05-07-2004 10:50 AM
Dell 510m laptop&Slackware 9.1 problems Dark Carnival Linux - Laptop and Netbook 3 03-10-2004 01:23 AM
I can't get Slackware on my laptop. FrogGuy Linux - Laptop and Netbook 9 12-27-2003 11:44 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

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