Tablet PC

Questions about hardware, drivers and peripherals
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
captain_juno

Tablet PC

Post by captain_juno »

Does Linux Mint work on a tablet pc with all the tablet functions like pen input, touch screen, and rotating screen? I have a Toshiba portege m700 for engineering that I'd like to put Elyssa on.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
Husse

Re: Tablet PC

Post by Husse »

I'm not sure at all if this would work
There is a post about how to use a wacom bamboo tablet in the how to section
http://www.linuxmint.com/forum/viewtopi ... 42&t=13950
so at least the pen thing works (if I understand it right)
User avatar
Zwopper
Level 10
Level 10
Posts: 3054
Joined: Fri Nov 30, 2007 12:20 pm
Location: Deep in the Swedish woods
Contact:

Re: Tablet PC

Post by Zwopper »

It works great on my Fujitsu Siemens Lifebook T4215 and on my Fujitsu Siemens Esprimo Mobile U9200, to name but a few!
Actually it works on all my FSC tablets, but that would sound like boasting and I refrain myself from that... :roll: Image Image
Image
My artwork at deviantART | My Band - Electric Alchemea
CREA DIEM!

Lenovo U330P | i5 | 16GB | 128GB - SSD | Elemantary OS 0.4
captain_juno

Re: Tablet PC

Post by captain_juno »

Zwopper wrote:It works great on my Fujitsu Siemens Lifebook T4215 and on my Fujitsu Siemens Esprimo Mobile U9200, to name but a few!
Actually it works on all my FSC tablets, but that would sound like boasting and I refrain myself from that... :roll: Image Image
So I guess the screen flips around fine and the different inputs work well (pen and touch screen)?
User avatar
Zwopper
Level 10
Level 10
Posts: 3054
Joined: Fri Nov 30, 2007 12:20 pm
Location: Deep in the Swedish woods
Contact:

Re: Tablet PC

Post by Zwopper »

captain_juno wrote:
Zwopper wrote:It works great on my Fujitsu Siemens Lifebook T4215 and on my Fujitsu Siemens Esprimo Mobile U9200, to name but a few!
Actually it works on all my FSC tablets, but that would sound like boasting and I refrain myself from that... :roll: Image Image
So I guess the screen flips around fine and the different inputs work well (pen and touch screen)?
Yep!
On some of them i had to install the "fujitsu-button" module.
You probably need to install wacom-tools and maybe xrandrandr xsetwacom if your screen doesn't flip when you tell it to.
If it doesn't work automagically you can take a script like the one below) and bind it to a key (band-aid solution).
Store it somewhere and make sure it's executable. (It's an ugly way of doing it, but it usually works).

Code: Select all

#!/bin/bash
#Screen rotation with xrandr and xsetwacom

CURR_STATE=`xrandr | grep LVDS | cut -d " " -f4 | cut -c2`
echo "Current state is: " $CURR_STATE

if [ $CURR_STATE = "n" ]; then
echo "true"
xrandr -o right
xsetwacom set stylus Rotate CW
xsetwacom set eraser Rotate CW
xsetwacom set cursor Rotate CW
else
echo "false"
xrandr -o normal
xsetwacom set stylus Rotate none
xsetwacom set eraser Rotate none
xsetwacom set cursor Rotate none
fi

#END
Image
My artwork at deviantART | My Band - Electric Alchemea
CREA DIEM!

Lenovo U330P | i5 | 16GB | 128GB - SSD | Elemantary OS 0.4
Locked

Return to “Hardware Support”