使用Arch Linux时出现的问题
使用了Arch快半年了,这个文章实在是写晚了。。
1. oh my zsh 安装使用
首先安装Zsh
1 | sudo pacman -S zsh |
安装oh my zsh
1 | sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" |
切换shell从bash到zsh
首先查看可用shell列表:
1 | ➜ ~ cat /etc/shells |
切换到zsh
1 | chsh -s /usr/bin/zsh |
2. error: failed to commit transaction (conflicting files)
问题描述:这个问题已经碰到了几次,原因暂未知。
1 | error: failed to commit transaction (conflicting files) |
解决方法:
首先,检测一下冲突文件有没有包在使用1
pacman -Qo /path/to/file
结果一般就是没有包在使用。。所以下面就rm掉所有引起冲突的文件就行了,问题解决。最近碰见了这个问题好几次,但是出现原因暂未知。。太烦了。
3. 窗口撕裂
问题描述:我不知道这个问题应不应该叫做窗口撕裂:在上下滚动内容的时候,滚动方向最下面的内容会出现重影,显得好像屏幕刷新有延迟。
解决方法:
1 | sudo vim /etc/X11/xorg.conf.d/20-intel.conf |
然后添加如下内容:
1 | "Device" |
默认的
AccelMethod
的值为sna
,在我这里使用sna
会出现滚动延迟的情况,但是使用uxa
就没有这种现象。但是更改了这个值之后发现了一个新问题就是笔记本不合盖子屏幕自动关闭之后不能唤醒,只有切到tty之后再切回来才行。待解决。
4. signature from xxx is marginal trust
问题描述:
error: archlinuxcn-keyring: signature from “Jiachen Yang \
“ is marginal trust
:: File /var/cache/pacman/pkg/archlinuxcn-keyring-20170522-1-any.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
解决办法:
sudo pacman-key --refresh-keys
代码运行结果就是新导入了很多PGP signature, 然后问题解决。
解决方法二
1 | sudo rm -R /etc/pacman.d/gnupg/ |
可以看出这也是走的更新key的路数。
但是出现这种问题执行pacman -S archlinux-keyring
重装archlinux-keyring
是没有用的。
还有一种说法是系统时间不正确
不知道这个系统时间是指哪个时间。
5. /opt sysmlink file conflicts
问题描述:由于在安装Arch系统时,/home分区是独立于/root分区的,而yaourt安装的大型软件都是会安装到/opt下面,导致系统分区会被很快用光。所以我的解决方法是在/home分区下新建opt分区,然后建立软链接:
ln -s /home/opt /opt
但是这样做之后会导致在yaourt安装软件是出现/opt already exists
的file conflicts
错误。
官方解释如下:
Directory Symlink Handling: Example time! Arch Linux has a /lib -> /usr/lib symlink. Previously, if pacman was installing a package and it found files in /lib, it would follow the symlink and install it in /usr/lib. However the filelist for that package still recorded the file in /lib. This caused heaps of difficulty in conflict resolving – primarily the need to resolve every path of all package files to look for conflicts. That was a stupid idea! So now if pacman sees a /lib directory in a package, it will detect a conflict with the symlink on the filesystem. If you were using this feature to install files elsewhere, you probably need to look into what a bind mount is! Note that this change requires us to correct the local package file list for any package installed using this mis-feature, so we bumped the database version. Upgrade using pacman-db-upgrade. Thanks to Andrew!
解决方法:
在/etc/fstab里加入如下内容:
1 | solve the /opt sysbolink file conficts errors |
problems solved, splendid!
### 6. wine下TIM中文界面部分乱码
问题描述: 已经通过winetricks corefonts cjkfonts
安装了字体,但是qq登录界面以及消息预览界面的中文都是方块。
解决方法:
1 | vim .wine/system.reg |
SimSun代表windows下的simsun.ttc字体,这里提供下载:下载simsun.ttc
7. xfce4下开机时某些非自启应用会自动运行
问题描述:已经关闭了auto save sessions
,但是在登录之后某些应用仍然会自动启动,具体表现为某次关机前系统的工作状态。
解决方法:
1 | rm -r .cache/sessions/* |
All clear!!!