К основному контенту

Pegatron lucid tablet 3g and Linux

Установка Kubuntu на Pegatron lucid tablet 3g.











Ни одна ОС меня не устроила, даже чистая Ubuntu со своим Unity (своим видом больше подходящая для Tablet PC чем для Desktop) меня не устроила и я решил вновь обратиться к давно заброшенному мной KDE.

Я сделал Bootable USB, так как перепробовал кучу операционных систем, прежде чем сделать свой выбор (к тому времени у меня было уже порядка 10 Bootable USB).



Создаем загрузочный USB или грузимся с USB CDROM (как изменить в bios с какого диска грузиться, я надеюсь все знают).

Устанавливаем Kubuntu как на обычный PC. При установки я указал автоматический вход для созданного пользователя, так как во первых планшетом буду пользоваться я один, во вторых KDM не очень дружит с kvkbd.

После перезагрузки и входом в установленную систему, первым делом настраиваем LAN.
Затем запускаем Konsole - alt+F2 и пишем "konsole".

apt-get update
apt-get upgrade

Затем ставим plasma-netbook

apt-get install plasma-netbook

Меняем в настройках Рабочего пространства Plasma - Тип рабочего пространства на Netbook, нажимаем кнопочку "Применить" и  reboot (перезагрузка).



Поздравляю! Мы получили удобный для работы на tablet pc рабочий стол.


Теперь поставим драйвер touchscreen.
Скачиваем:
http://shop-on-line.tvielectronics.com/download/eGTouch_v1.01.1014.L-x.tar.gz
Раз архивируем в /tmp и запускаем setup.sh

Выполняем в Konsole
cd /tmp
wget  http://shop-on-line.tvielectronics.com/download/eGTouch_v1.01.1014.L-x.tar.gz
gzip -dc eGTouch_v1.01.1014.L-x.tar.gz | tar xf -
cd eGTouch_v1.01.1014.L-x
sudo setup.sh

Затем правим файл конфигурации драйвера

cd /etc
sudo nano eGTouch.ini

находим строки:
MultiTouchEnable   0
Direction     0
и заменяем на
MultiTouchEnable   1
Direction     2

Перезагружаем.

Ну вот и все :) Мы получили вполне юзабильный планшет с полноценной Desktop'ной линухой.

В следующей статье: Настраиваем мультимедиа центр...

p.s.
Вчера настраивал аналогичный девайс, ставил Kubuntu 386:
После установки plasma-netbook, верхняя панель автоматически скрывалась.
Лекарство:
konsole
nano ~/.kde/share/config/plasma-netbookrc
Находим:
[PlasmaViews][2]
panelAutoHide=true
Правим:
panelAutoHide=false
Затем F2

Комментарии

Популярные сообщения из этого блога

How to do Arithmetic Operations in Ansible

You can use arithmetic calculations in Ansible using the Jinja syntax. This is helpful in many situations where you have stored the output of an operation, and you need to manipulate that value. All usual operation like addition, subtraction, multiplication, division, and modulo are possible. Let us start with an example. We will be using the  debug module  to print the out the result. The following tasks show all the basic arithmetic operations. The output is given in comments. Ansible arithmetic operation example - hosts: loc tasks: - debug: msg: "addition{{ 4 +3 }}" #Ansible addition 7 - debug: msg: "substraction {{ 4 - 3 }}" #Ansible arithmetic substraction 1 - debug: msg: "multiplication {{ 4 * 3 }}" #multiplication 12 - debug: msg: "Modulo operation {{ 7 % 4}}" #ansible Modulo operation - find remainder 3 - debug: msg: "floating division {{ 4 / 3}}" #ansible floating divisio...

ubuntu/debian ipmi

#install ipmitool (this is for debian) apt-get install ipmitool #insert the kernel modules needed for ipmi modprobe ipmi_devintf modprobe ipmi_si modprobe ipmi_msghandler #get the current mode (01 00 is dedicated mode) ipmitool raw 0x30 0x70 0x0c 0 #send the raw command to enable dedicated lan ipmitool raw 0x30 0x70 0xc 1 1 0
Ansible - Appending to lists and dictionaries  n this blog post I'll show how to add items to lists and dictionaries, when using loops, and across tasks. Normally when trying to add a new item to the variable, while in the loop, or between tasks, Ansible will ovewrite the values, keeping the result of the last iteration. For example, let's see what will be the result of running the following playbook: --- - name: Append to list hosts: localhost vars: cisco: - CiscoRouter01 - CiscoRouter02 - CiscoRouter03 - CiscoSwitch01 arista: - AristaSwitch01 - AristaSwitch02 - AristaSwitch03 tasks: - name: Add Cisco and Airsta devices to the list set_fact: devices: "{{ item }}" with_items: - "{{ cisco }}" - "{{ arista }}" - name: Debug list debug: var: devices verbosity: 0 [przemek@quasar blog]$ ansible-playbook append_list.yml PLAY [Append to list] ****************...