LinuxQuestions.org
Visit Jeremy's Blog.
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-06-2005, 05:42 AM   #1
salparadise
Senior Member
 
Registered: Nov 2002
Location: Birmingham UK
Distribution: Various
Posts: 1,736

Rep: Reputation: 146Reputation: 146
sony vaio pcg-c1xd screen problems


Greetings,

I'm trying to install linux on a Sony Vaio PCG-C1XD Picture Book.
I managed to get Kubuntu on it.
The only problem I can see is that the screen only displays the top left corner of the desktop.
I've tried various resolutions all to no avail.

Is there some trick to this, this being an unusual shaped screen n'all ?


Many thanks.
 
Old 09-06-2005, 09:54 PM   #2
J_K9
Member
 
Registered: Nov 2004
Distribution: Slackware 11, Ubuntu 6.06 LTS
Posts: 700

Rep: Reputation: 30
Hi! Yes, I'm pretty sure you need to change your XFree86 config file, but I'm gonna give you a link to get you started off:

Linux on C1XD

That's an ok link, but there are plenty more on Google! (This is a nice way of saying Googleit ).

edit: Here's what you need to put in your xf86config file (type in "locate xorg.conf" into terminal, because I can't remember exactly where it is! /usr/X11R6 I think...)
Code:
XF86Config

# **********************************************************************
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **********************************************************************
#
Section "Module"

# This loads the DBE extension module.

    Load        "dbe"  	# Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

# This loads the Type1 and FreeType font modules
    Load        "type1"
    Load        "freetype"

# This loads the GLX module
    #Load       "glx"

EndSection

# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************

Section "Files"

    RgbPath	"/usr/X11R6/lib/X11/rgb"

    FontPath   "/usr/X11R6/lib/X11/fonts/local/"
    FontPath   "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath   "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
    FontPath   "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
    FontPath   "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath   "/usr/X11R6/lib/X11/fonts/Speedo/"
    FontPath   "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath   "/usr/X11R6/lib/X11/fonts/100dpi/"
    FontPath   "/usr/local/lib/X11/fonts/hack/"
    FontPath   "/usr/local/share/bochs/fonts/"
    FontPath   "/usr/local/share/AbiSuite/fonts/"

EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"

EndSection

# **********************************************************************
# Input devices
# **********************************************************************

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"

    Identifier	"Keyboard1"
    Driver	"Keyboard"

    Option "AutoRepeat" "500 30"

    Option "XkbRules"	"xfree86"
    Option "XkbModel"	"pc105"
    Option "XkbLayout"	"us"

EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

    Identifier	"Mouse1"
    Driver	"mouse"
    Option "Protocol"    "wsmouse"
    Option "Device"      "/dev/wsmouse"
    Option "ZAxisMapping" "4 5"

EndSection

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

# Any number of monitor sections may be present

Section "Monitor"

    Identifier  "Sony LCD Panel"

    HorizSync   30-64

    VertRefresh 50-100
    Modeline "1024x480" 65 1024 1032 1176 1344 480 491 493 525

EndSection


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

# Any number of graphics device sections may be present

Section "Device"
    Identifier	"Standard VGA"
    VendorName	"Unknown"
    BoardName	"Unknown"

    Driver     "vga"

EndSection

# Device configured by xf86config:

Section "Device"
    Identifier  "NeoMagic (laptop/notebook)"
    Driver      "neomagic"
    Option	"SWcursor"
    Option	"internDisp"
    Option	"externDisp"
    Option	"ShadowFB"
    Option	"overrideValidateMode"
EndSection


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

Section "Screen"
    Identifier  "Screen 1"
    Device      "NeoMagic (laptop/notebook)"
    Monitor     "Sony LCD Panel"
    DefaultDepth 16

    Subsection "Display"
        Depth       8
        Modes       "640x480" "800x600" "1024x768" "1280x1024"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x480" 
        #Modes       "1024x768" 
        ViewPort    0 0
	Virtual	1024 768	
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "640x480" "800x600" "1024x768"
        ViewPort    0 0
    EndSubsection
EndSection

# **********************************************************************
# ServerLayout sections.
# **********************************************************************

Section "ServerLayout"

    Identifier  "Simple Layout"

    Screen "Screen 1"

    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"

EndSection
Just edit your xf86config file (check that above to make sure the resolution and everything are correct and match your laptop's specs, even though they're meant to be, and paste it in). And then, fire away!

J_K9

Last edited by J_K9; 09-06-2005 at 10:32 PM.
 
Old 09-07-2005, 03:33 AM   #3
salparadise
Senior Member
 
Registered: Nov 2002
Location: Birmingham UK
Distribution: Various
Posts: 1,736

Original Poster
Rep: Reputation: 146Reputation: 146
Perfect. That's exactly what I was looking for. Thankyou!
I'd already spent about a day googling for help but missed that one.
I did have to copy some of the sections across but the device is now running the Kubuntu desktop nicely.
Bosses jaw on floor. He didn't think it could be done.

 
  


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
RH9 login problems on sony vaio PCG-C1VPK tango_echo_xray Linux - Laptop and Netbook 4 04-20-2008 11:07 AM
Sony Vaio PCG-GRT390z, sonypi problems xpromisex Linux - Laptop and Netbook 0 07-30-2005 11:31 PM
problems installing suse 9.0 on sony vaio pcg-r505gck laptop vakilp Linux - Laptop and Netbook 0 12-27-2004 02:17 PM
x11 "split screen" on sony vaio picturebook pcg-c1xd Kerridis Linux - Laptop and Netbook 1 01-04-2004 05:32 PM
installing SUSE pro 8.1 from external firewire disc on Sony Vaio Picturebook PCG-C1XD jurg.hengstler Linux - Newbie 0 08-16-2003 10:53 AM

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

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