Elonex Webbook internal screen after Precise Puppy install

What works, and doesn't, for you. Be specific, and please include Puppy version.
Post Reply
Message
Author
User avatar
heatherw
Posts: 4
Joined: Wed 24 Jul 2013, 20:13
Location: UK

Elonex Webbook internal screen after Precise Puppy install

#1 Post by heatherw »

Hi

I am a beginner but this seems rather specific so I have placed this here.

The Elonex Webbook has to be connected to an external monitor to have Linux installed (wonderful)... after this is done you can tweak the config files to get the internal display screen sorted out - though this may not be possible with all versions of Linux I have installed Puppy on the harddrive and want to try to get the screen working.

When I got it working in the past I used this from http://webbookblog.com/ (mind you that was in 2010)
With Karmic Koala

Code: Select all

gksudo gedit /etc/X11/xorg.conf
which will bring up a text editor with an empty file. Type or paste the following:

Code: Select all

Section "Device"
Identifier "Configured Video Device"
Driver "OpenChrome"
option "PanelSize" "1024x600"
option "ForcePanel"
EndSection
----------------------------
With Jaunty and

Code: Select all

/etc/X11/xorg.conf
:

Code: Select all

Section "Device"
Identifier "Configured Video Device"
Driver "openchrome"
option "PanelSize" "1024×600"
EndSection
Can anyone tell me if there is a similar command to gksudo gedit /etc/X11/xorg.conf that I can do to get this done in Precise Puppy (5.6.1)?

Many thanks

HeatherW

User avatar
RetroTechGuy
Posts: 2947
Joined: Tue 15 Dec 2009, 17:20
Location: USA

Re: Elonex Webbook internal screen after Precise Puppy install

#2 Post by RetroTechGuy »

heatherw wrote:Hi

I am a beginner but this seems rather specific so I have placed this here.

The Elonex Webbook has to be connected to an external monitor to have Linux installed (wonderful)... after this is done you can tweak the config files to get the internal display screen sorted out - though this may not be possible with all versions of Linux I have installed Puppy on the harddrive and want to try to get the screen working.
I don't know for-sure, but I think that Precise was designed for better support for newer machines, and the Webbook seems to be somewhat older.

I have an Asus EEE900 netbook upon which I launched Puppy 5.28 without any issue. If your video isn't coming up, I would consider rolling back to a slightly older version (often the different versions have much different driver bundles -- I've been very happy with 5.28). And if the hardware is still uncooperative, perhaps a "retro" version (such as 5.25 Retro).
Last edited by RetroTechGuy on Wed 24 Jul 2013, 23:25, edited 1 time in total.
[url=http://murga-linux.com/puppy/viewtopic.php?t=58615]Add swapfile[/url]
[url=http://wellminded.net63.net/]WellMinded Search[/url]
[url=http://puppylinux.us/psearch.html]PuppyLinux.US Search[/url]

User avatar
RetroTechGuy
Posts: 2947
Joined: Tue 15 Dec 2009, 17:20
Location: USA

#3 Post by RetroTechGuy »

A quick search of Murga (see the search link in my sig) shows these for the Elonex Webbook.

These 2 posts indicate that it booted under:

Puppy 4.31:
http://www.murga-linux.com/puppy/viewtopic.php?t=74738

SlaxerPup:
http://www.murga-linux.com/puppy/viewto ... 314#305314

IIRC, 5.x migrated many/most of the 4.31 driver bundle forward to the new version -- so it might be a good bet.

5.28.005 distro:
http://distro.ibiblio.org/puppylinux/puppy-5.2.8/

Lucid Retro 525-2.6.30.5-v4:
http://www.murga-linux.com/puppy/viewto ... 627#521627
[url=http://murga-linux.com/puppy/viewtopic.php?t=58615]Add swapfile[/url]
[url=http://wellminded.net63.net/]WellMinded Search[/url]
[url=http://puppylinux.us/psearch.html]PuppyLinux.US Search[/url]

User avatar
heatherw
Posts: 4
Joined: Wed 24 Jul 2013, 20:13
Location: UK

Re: Elonex Webbook internal screen after Precise Puppy install

#4 Post by heatherw »

SOLUTION FURTHER DOWN...
RetroTechGuy wrote:I have an Asus EEE900 netbook upon which I launched Puppy 5.28 without any issue.
Thanks for the replies... I looked up your screen resolution and the fact that it was also 1024x600 gave me inspiration to just keep randomly pressing buttons.

Interestingly, I came across a button I hadn't noticed before, I had already played with {SETUP > Xorg Video Wizard > "Xorg Video Wizard"} and come to the bios-looking screen with the same list of resolutions as the {SETUP > QuickSetup first-run settings}... However I had previously failed to notice that one of the buttons at the bottom was "more", in there it had a 1024x600 option which may help other people... however on the Elonex Webbook I have (an early model) this then stopped the external monitor from working as well!!

SOLUTION:

Altering the configuration file with {SETUP > Xorg Video Wizard > "Xorg Video Wizard"} and opting all the way through until you get "tweak" button, allows you to edit the text file and still preview and drop edits, you have to be a confident blind-rummager though.

I have noticed that you can also access the file directly in puppy by {SETUP > Xorg Video Wizard > "Edit xorg.conf"} though I didn't do this and am not sure if it will drop edits and do previews as well as the "Xorg Video Wizard".

#NB. Comment-out everything between
Section "Monitor"
EndSection
#NB. Keep the card0 device intact (with many options commented out) AND add anything missing from the below
Section "Device"

Identifier "card0"
Driver "openchrome" #card0driver
Option "PanelSize" "1024x600" ##
Option "ForcePanel" "true" ##
EndSection
#NB. Comment-out everything in the Screen0 screen section until you have only the below
Section "Screen"
Identifier "Screen0"
Device "Card0"
EndSection
And you should have your very old Elonex Webbook working!! yippee.[/quote]

User avatar
heatherw
Posts: 4
Joined: Wed 24 Jul 2013, 20:13
Location: UK

Re: Elonex Webbook internal screen after Precise Puppy install

#5 Post by heatherw »

#NB. Comment-out everything between
Section "Monitor"
EndSection
PS. I COMMENTED OUT THE ABOVE AS WELL AS THE CONTENTS INBETWEEN.

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

Re: Elonex Webbook internal screen after Precise Puppy install

#6 Post by L18L »

heatherw wrote:...Can anyone tell me if there is a similar command to gksudo gedit /etc/X11/xorg.conf that I can do to get this done in Precise Puppy (5.6.1)?

Code: Select all

geany /etc/X11/xorg.conf
or if X is not running:

Code: Select all

mp /etc/X11/xorg.conf

User avatar
heatherw
Posts: 4
Joined: Wed 24 Jul 2013, 20:13
Location: UK

Re: Elonex Webbook internal screen after Precise Puppy install

#7 Post by heatherw »

L18L wrote:

Code: Select all

geany /etc/X11/xorg.conf
or if X is not running:

Code: Select all

mp /etc/X11/xorg.conf
Thanks :D

User avatar
RetroTechGuy
Posts: 2947
Joined: Tue 15 Dec 2009, 17:20
Location: USA

Re: Elonex Webbook internal screen after Precise Puppy install

#8 Post by RetroTechGuy »

heatherw wrote:And you should have your very old Elonex Webbook working!! yippee.
Excellent!... ;-)

Image
[url=http://murga-linux.com/puppy/viewtopic.php?t=58615]Add swapfile[/url]
[url=http://wellminded.net63.net/]WellMinded Search[/url]
[url=http://puppylinux.us/psearch.html]PuppyLinux.US Search[/url]

Post Reply