deepin常见问题
Easul Lv6

可供问题参考的平台

deepin与统信参考文档
deepin论坛

deepin打不开设置中心

BASH
1
2
3
4
5
6
# 可以更新系统,可能会有dpkg相关的报错,可以无视
sudo apt-get dist-upgrade
# 也可以直接安装控制中心
sudo apt install dde-control-center
# deepin手动更新内核
sudo apt install linux-image-deepin-stable-amd64 linux-headers-deepin-stable-amd64

参考1
参考2

deepin分区出现了很多个squashfs

原因: 安装了snapxdroid(安装了snap后, 每安装一个软件, 就会多一个虚拟分区, 虚拟分区运行软件更安全)
解决方法:

BASH
1
2
3
4
# terminal里输入如下命令用deepin的编辑器打开显示设备的配置文件
sudo deepin-editor /usr/lib/udev/rules.d/80-udisks2.rules
# 在文末加入
KERNEL == "loop*", ENV {UDISKS_IGNORE} = "1"

参考

触摸板相关

触摸板无法使用

可能的原因与解决办法

  1. xxx.service的影响
    如果在deepinsystemctl中的服务启动失败,那么可能会影响到触摸板驱动的加载,导致触摸板无法使用。
    xxx.service文件修改正确后,那么就没有问题了。

触摸板的禁用与开启

BASH
1
2
3
4
5
## 启用触摸板
## 启用后如果不起作用,可能需要需 重启系统 或者 关机再开机
sudo modprobe psmouse
## 禁用触摸板
sudo rmmod psmouse

安装软件失败后,重启显示initramfs

BASH
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 问题排查
# 可能是因为安装该软件,导致文件系统损坏
# 解决方案
# 在刚刚 (initramfs) 后边输入 exit ,显示如下

[ 2.309521] kfd kfd: amdgpu: TOPAZ not supported in kfd
BusyBox v1.30.1 (Debian 1:1.30.1.2-1+dde) built-in shell (ash)
Enter 'help' for a list of built-in commands.
(initranfs) exit
deepin contains a file system with errors, check forced.
Inodes that were part of a corrupted orphan linked list found.

deepin: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
(i.e., without -a or -p options)
fsck exited with status code 4
The root filesystem on /dev/sda10 requires a manual fsck

BusyBox v1.30.1 (Debian 1:1.30.1.2-1+dde) built-in shell (ash)
Enter 'help' for a list of built-in commands.
(initranfs)

# 提示 /dev/sda10 分区出了问题,需要用 fsck 手动修复,故输入如下命令
fsck -y /dev/sda10

# 然后进行自动修复
# 相关提示如下
fsck from util-linux 2.33.1
e2fsck 1.44.5 (15-Dec-2018)
deepin contains a file system with errors, check forced.
Pass 1: Checking inodes, blocks, and sizes
Inodes that were part of a corrupted orphan linked list found Fix? yes
Inode 526609 was part of the orphaned inode list. FIXED.
Inode 527336 was part of the orphaned inode list. FIXED.
Inode 531493 was part of the orphaned inode list. FIXED.
Inode 531532 was part of the orphaned inode list. FIXED.
Inode 532491 was part of the orphaned inode list. FIXED.
Inode 533694 was part of the orphaned inode list. FIXED.
Inode 534881 was part of the orphaned inode list. FIXED.
Inode 535094 was part of the orphaned inode list. FIXED.
Inode 535099 was part of the orphaned inode list. FIXED.
Inode 537797 was part of the orphaned inode list. FIXED.
Inode 537822 was part of the orphaned inode list. FIXED.
Inode 543215 was part of the orphaned inode list. FIXED.
Inode 544990 was part of the orphaned inode list. FIXED.
Inode 547949 was part of the orphaned inode list. FIXED.

# 修复完成后,命令行输入 exit ,然后回车就可以正常进入系统了

注: 安装某个软件包后,文件系统受损,有可能是硬盘问题,可以多关注硬盘状况,及时备份数据,避免可能的硬盘问题导致数据丢失。

deepin论坛记录
解决办法参考链接

 评论