Puppy 5.1.1 on to Toshiba 1805-S203 with Trident graphics

How to do things, solutions, recipes, tutorials
Post Reply
Message
Author
novellahub
Posts: 15
Joined: Thu 21 Jun 2007, 16:11
Location: Shakopee, MN USA
Contact:

Puppy 5.1.1 on to Toshiba 1805-S203 with Trident graphics

#1 Post by novellahub »

I was having issues with my Toshiba Satellite 1805-S203 laptop booting on the latest Puppy Linux 5.1.1 release. The machine has Trident video graphics. It was booting to a black screen and then stalled. Here is what I did to get around the issue:

1. Boot off of CD with the following option: pfix=nox
2. When the machine comes up, run xorgwizard (Must do this twice in the command prompt for it to come up)
3. Choose to select your own driver ---> Trident
4. Select the default resolution --> 1024X768
5. Select OK to exit the xorgwizard (Do not test resolution or you will be stuck at the black screen)
6. Edit the xorg.conf file in /etc/X11/ (I used vi as the editor)
7. Add the following lines in the xorg.conf file:

Code: Select all

Section "Device"
    Identifier    "Trident Microsystems CyberBlade/i1"
    Driver        "trident"
    BusID        "PCI:1:0:0"
    Option	"NoDDC"
EndSection

Section "Monitor"
    Identifier    "ToshLCD"
    Option        "DPMS"
    HorizSync      30-71
    VertRefresh    50-100
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Monitor       "ToshLCD"
    Device        "Trident Microsystems CyberBlade/i1"
    DefaultDepth    16
    SubSection "Display"
       	Depth        16
        Modes        "1024x768"
    EndSubSection
    SubSection "Display"
        Depth        24
       	Modes        "1024x768" 
    EndSubSection
    SubSection "Display"
       	Depth        16
        Modes        "800x600"
    EndSubSection
    SubSection "Display"
       	Depth        24
        Modes        "800x600" 
    EndSubSection
EndSection
8. Start X windows with the following command: xwin


Notes:

The machine should now boot up as normal. Make sure you save your personal puppy save file so these settings get used again on the next boot. I was able to do a successful frugal install after that to the laptop's hard drive.
Joe
Lupu 5.28

gilbi
Posts: 5
Joined: Thu 11 Nov 2010, 22:45
Location: Rome - ITALY

Same problem on Presario 12XL515.

#2 Post by gilbi »

Hi novellahub,
I'm quite new to linux, but I've managed to frugal install lupu 5.1.1 by connecting the HDD of my old laptop with my company laptop through an ide interface, following instruction given by shinobar on his helpful document. That was needed just because the cdrom drive seems to be out of service, as it is the same for the floppy also. At the beginning it was not booting to Win ME nor to Puppy, but after doing some adjustment to Grub4Dos menu, now it can boot in Win ME and in Puppy safe mode (prompt). Please could you be so kind to list each specific step to edit the xorg.conf file? Any help will be very appreciated and welcome.

novellahub
Posts: 15
Joined: Thu 21 Jun 2007, 16:11
Location: Shakopee, MN USA
Contact:

#3 Post by novellahub »

The xorg.conf file is in /etc/X11/ folder. At the prompt enter:

vi /etc/X11/xorg.conf

If you are unfamiliar with the vi editor, go here for more information:

vi editor guide
Joe
Lupu 5.28

gilbi
Posts: 5
Joined: Thu 11 Nov 2010, 22:45
Location: Rome - ITALY

#4 Post by gilbi »

Many thanks Joe, for your suggestions.
I will have a look on that and learn something useful.

Post Reply