CF-18

Differences between revisions 7 and 15 (spanning 8 versions)
Revision 7 as of 2008-02-26 01:21:51
Size: 3578
Editor: dos89
Comment:
Revision 15 as of 2008-10-30 00:14:25
Size: 4294
Editor: dqi117
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
This page is about installing and using Ubuntu Linux on Panasonic Toughbook CF-18 This page is about installing and using Ubuntu GNU/Linux on Panasonic Toughbook CF-18 with digitizer screen.

The procedure described below was tested with vanilla Ubuntu 7.10 and 8.04. If you have experience with other versions, please share it with us. If you know how to install Ubuntu on touchscreen CF-18 model or how to solve hot-keys problem, please add relevant information.
Line 6: Line 8:
CF-18 doesn't have internal CD-ROM drive, so easiest way possible is to prepare your own bootable USB Ubuntu pendrive:
http://www.pendrivelinux.com/2007/09/28/usb-ubuntu-710-gutsy-gibbon-install/. If you are not familiar with GNU/Linux follow those instructions literally. In particular, use bootable CD as described, even if you have access to computer with Ubuntu already installed.
CF-18 doesn't have internal CD-ROM drive, so easiest way possible is to prepare your own bootable USB Ubuntu pendrive using one of several different methods:
http://www.pendrivelinux.com/?s=ubuntu . If you are not familiar with GNU/Linux follow those instructions literally.  
Line 10: Line 12:
http://www.justinclarke.com/archives/2006/12/ubuntu_linux_61.html. If you want to boot from pendrive make sure, that you have USB boot option activated in CF-18 BIOS menu. http://www.justinclarke.com/archives/2006/12/ubuntu_linux_61.html.
Line 12: Line 14:
If you want to boot from pendrive make sure, that you have USB boot option activated in CF-18 BIOS menu.

== Configuring digitizer ==

Please note: for touchscreen version of CF-18 you may need other instructions.
 
Line 45: Line 53:
First remember to turn off all compitz beautifiers :(.
And sorry, no automated rotation this time. Screen rotating functionality works great with the help of simple script (and sophisticated programmer who wrote it, thank you, Janek!). Open your text editor of choice as an admin (ie. "sudo gedit" in terminal), and copy/paste this text:

Important! R
emember to turn off all compitz beautifiers (all the 3d effects - right click on your desktop, click wallpaper change, go to visual effects tab, and select no effects) first.

There is no automated rotation after moving physical screen
. However screen rotating functionality works great with the help of simple script (and sophisticated programmer who wrote it, thank you, Janek!). Open your text editor of choice as an admin (ie. "sudo gedit" in terminal), and copy/paste this text:
Line 74: Line 84:

== Works out-of-the-box in 7.10 ==

 *Touchpad (Synaptics touchpad had issues in previous Ubuntu versions)
 *SD Card reader
 *Graphic Card
 *USB
 *Ethernet
 *Screen closing sensor
 *Wlan (wifi)
 *Bluetooth
 *PCMCIA adapter

This page is about installing and using Ubuntu GNU/Linux on Panasonic Toughbook CF-18 with digitizer screen.

The procedure described below was tested with vanilla Ubuntu 7.10 and 8.04. If you have experience with other versions, please share it with us. If you know how to install Ubuntu on touchscreen CF-18 model or how to solve hot-keys problem, please add relevant information.

Installing Ubuntu

CF-18 doesn't have internal CD-ROM drive, so easiest way possible is to prepare your own bootable USB Ubuntu pendrive using one of several different methods: http://www.pendrivelinux.com/?s=ubuntu . If you are not familiar with GNU/Linux follow those instructions literally.

You may found good instructions for installing Ubuntu 6.10 on Justin's Clark webpage: http://www.justinclarke.com/archives/2006/12/ubuntu_linux_61.html.

If you want to boot from pendrive make sure, that you have USB boot option activated in CF-18 BIOS menu.

Configuring digitizer

Please note: for touchscreen version of CF-18 you may need other instructions.

For proper configuration of Wacom tablet in 7.10 make sure, that appropriate portions of your xorg.conf file (to edit this execute sudo gedit /etc/X11/xorg.conf in terminal) look like this:

Section "InputDevice"
        Driver          "wacom"
        Identifier      "stylus"
        Option          "Device"        "/dev/input/wacom"
        Option          "Type"  "stylus"
        Option          "ForceDevice"   "ISDV4"# Tablet PC ONLY
EndSection

Section "InputDevice"
        Driver          "wacom"
        Identifier      "eraser"
        Option          "Device"        "/dev/input/wacom"
        Option          "Type"  "eraser"
        Option          "ForceDevice"   "ISDV4"# Tablet PC ONLY
EndSection

Section "InputDevice"
        Driver          "wacom"
        Identifier      "cursor"
        Option          "Device"        "/dev/input/wacom"
        Option          "Type"  "cursor"
        Option          "ForceDevice"   "ISDV4"# Tablet PC ONLY
EndSection

After that most of the laptop functionality works out of the box.

Screen rotating

You may want to add ability of screen rotating between landscape and portrait mode to your CF-18.

Important! Remember to turn off all compitz beautifiers (all the 3d effects - right click on your desktop, click wallpaper change, go to visual effects tab, and select no effects) first.

There is no automated rotation after moving physical screen. However screen rotating functionality works great with the help of simple script (and sophisticated programmer who wrote it, thank you, Janek!). Open your text editor of choice as an admin (ie. "sudo gedit" in terminal), and copy/paste this text:

if [ "`xrandr|grep 'current 1024'|wc -l`" -eq "1" ]
then
    echo "Rotate right"
    xsetwacom set stylus rotate 1
    xrandr -o right
else
    echo "Rotate normal"
    xsetwacom set stylus rotate 0
    xrandr -o normal
fi

Save it with the name rotatescreen in folder /usr/bin/.

Execute sudo chmod +x /usr/bin/rotatescreen in terminal.

Now by executing "rotatescreen" command you will have your screen rotated between portrait and landscape mode. I created a simple activator with command rotatescreen in my panel - now all i have to do after changing position of physical screen is to tap an icon.

Known issues

Panasonic Hotkeys doesn't work out of the box. This include screen brightness and volume control hotkeys (FN + F keys) and external hotkeys: screen rotating, activating on-screen keyboard, activating/deactivating wifi etc. There is workaround which includes kernel and acpi hacking for other Toughbook models, but i havn't tested it with CF-18: http://www.da-cha.jp/letsnote . If you know know any other working solution, please post it here and/or email me (rekrutacja[at]gazeta.pl) - thank you!

If you need to change your screen brightness settings or want to switch on/off wifi you may still do this - simply press F2 just after turning your computer on. This will take you to BIOS menu. On this stage you may still use hotkeys to select proper settings. After you leave BIOS menu they will get inactive.

Works out-of-the-box in 7.10

  • Touchpad (Synaptics touchpad had issues in previous Ubuntu versions)
  • SD Card reader
  • Graphic Card
  • USB
  • Ethernet
  • Screen closing sensor
  • Wlan (wifi)
  • Bluetooth
  • PCMCIA adapter

CF-18 (last edited 2010-10-10 01:53:09 by 99)