Latitude 11 5175二合一电脑安装ubuntu(lxle)备忘

笔记本/便携移动设备,手机平板等软硬件
回复
头像
lxnnix
帖子: 89
注册时间: 2007-08-19 22:24
来自: 南京

Latitude 11 5175二合一电脑安装ubuntu(lxle)备忘

#1

帖子 lxnnix » 2018-02-25 23:23

一、安装
安装过程不多赘述。参考如下文章:
Howto: Linux Mint 18/Win 10 on Dell Lattitude 5175 Tablet self.Dell
https://www.reddit.com/r/Dell/comments/ ... tude_5175/

简单整理后的步骤:
1、在win10下用磁盘碎片整理一下C盘。然后到磁盘管理中压缩一下C盘,分出来一个空余的新分区。
2、重启电脑按F2进boot,在Secure Boot 中 选择Secure Boot Enable, 把开关打成Disabled。
3、重启,开始安装linux。

二、各项功能
我安装的是LXLE,ubuntu的话应该大同小异。

(1)正常的功能
键盘(Fn键、键盘灯均正常)
触控板
声音
左侧的音量+-键
Fn键
蓝牙
触摸屏
电池充电时分别显示双电池电量
手写笔(使用前记得在插槽中按紧几秒充电:http://www.dell.com/support/manuals/cn/ ... active-pen

(2)不正常的功能
摄像头
挂起

(3)需要配置才能生效的功能
屏幕旋转后的触摸屏的方向没有旋转(触控板的方向也没有旋转),导致横向滑动的时候,屏幕是竖向滑动。
配置方法如下:
https://wiki.ubuntu.com/X/InputCoordinateTransformation
https://askubuntu.com/questions/368317/ ... r-touchpad

查询触控板和触控屏设备:
~$ xinput -list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ Alps Alps Touchpad Touchpad id=10 [slave pointer (2)]
⎜ ↳ G-Tech Wireless Dongle id=12 [slave pointer (2)]
⎜ ↳ Wacom HID 4807 Pen stylus id=13 [slave pointer (2)]
⎜ ↳ Wacom HID 4807 Finger touch id=14 [slave pointer (2)]
⎜ ↳ Wacom HID 4807 Pen eraser id=19 [slave pointer (2)]
...

查询触控板和触控屏设备的旋转属性:

代码: 全选

xinput list-props  'Alps Alps Touchpad Touchpad' | grep Coordinate
xinput list-props  'Wacom HID 4807 Finger touch' | grep Coordinate
设置旋转属性(向右翻转时xrandr -o left):

代码: 全选

xinput set-prop 'Alps Alps Touchpad Touchpad' 'Coordinate Transformation Matrix' 0 -1 1 1 0 0 0 0 1
xinput set-prop 'Wacom HID 4807 Finger touch' --type=float "Coordinate Transformation Matrix" 0 -1 1 1 0 0 0 0 1
恢复旋转属性:

代码: 全选

xinput set-prop 'Alps Alps Touchpad Touchpad' 'Coordinate Transformation Matrix' 0 0 0 0 0 0 0 0 0
xinput set-prop 'Wacom HID 4807 Finger touch' --type=float "Coordinate Transformation Matrix" 0 0 0 0 0 0 0 0 0
可将上述指令写在脚本中然后在.config/openbox/lxde-rc.xml中设置快捷键。

三、设备型号

代码: 全选

~$ sudo lspci
00:00.0 Host bridge: Intel Corporation Sky Lake Host Bridge/DRAM Registers (rev 08)
00:02.0 VGA compatible controller: Intel Corporation Sky Lake Integrated Graphics (rev 07)
00:04.0 Signal processing controller: Intel Corporation Skylake Processor Thermal Subsystem (rev 08)
00:05.0 Multimedia controller: Intel Corporation Sky Lake Imaging Unit (rev 01)
00:13.0 Non-VGA unclassified device: Intel Corporation Device 9d35 (rev 21)
00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21)
00:14.2 Signal processing controller: Intel Corporation Sunrise Point-LP Thermal subsystem (rev 21)
00:14.3 Multimedia controller: Intel Corporation Device 9d32 (rev 01)
00:15.0 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller (rev 21)
00:15.1 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller (rev 21)
00:15.2 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller (rev 21)
00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI (rev 21)
00:16.3 Serial controller: Intel Corporation Device 9d3d (rev 21)
00:17.0 SATA controller: Intel Corporation Sunrise Point-LP SATA Controller [AHCI mode] (rev 21)
00:1d.0 PCI bridge: Intel Corporation Device 9d18 (rev f1)
00:1d.1 PCI bridge: Intel Corporation Device 9d19 (rev f1)
00:1f.0 ISA bridge: Intel Corporation Device 9d46 (rev 21)
00:1f.2 Memory controller: Intel Corporation Sunrise Point-LP PMC (rev 21)
00:1f.3 Audio device: Intel Corporation Sunrise Point-LP HD Audio (rev 21)
00:1f.4 SMBus: Intel Corporation Sunrise Point-LP SMBus (rev 21)
01:00.0 Network controller: Intel Corporation Wireless 8260 (rev 3a)
02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader (rev 01
。
<完> :em09
LXLE了。
poloshiao
论坛版主
帖子: 18279
注册时间: 2009-08-04 16:33

Re: Latitude 11 5175二合一电脑安装ubuntu(lxle)备忘

#2

帖子 poloshiao » 2018-02-25 23:36

https://en.wikipedia.org/wiki/LXLE_Linux
LXLE Linux
LXLE is a Linux distribution based upon the most recent Ubuntu/Lubuntu LTS release, using the LXDE desktop environment.
LXLE is a lightweight distro, with a focus on visual aesthetics, that works well on both old and new hardware.
回复