Arch Linux安装后的问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Arch Linux安装后的问题相关的知识,希望对你有一定的参考价值。

1.lspci、screenfetch等指令卡住,关机卡住的问题
本机显卡规模是hd610+GTX950m

google了一下解决方法是把nouveau加入黑名单
那么就直接装N卡驱动
尝试闭源驱动解决方案>>
结果是Xorg无法启动,google了一下没找到有效的方法,详细问题懒得折腾了。。
尝试Bumblebee解决方案>>

1 pacman -S bumblebee bumblebee-settings mesa nvidia
2 gpasswd -a riocke bumblebee
3 systemctl start bumblebeed
4 systemctl enable bumblebeed

测试

1 optirun glxspheres64


2.fcitx无法启动输入法
我使用的是i3、lightdm
解决方法:
vi /etc/profile    或者    vi ~/.xprofile添加下面三(注意下划线)行

1 export GTK_IM_MODULE=fcitx
2 export QT_IM_MODULE=fcitx
3 export [email protected]=fcitx


3.dmenu无法正常启动程序

1 vim /etc/profile

尝试

1 dmenu_run


4.画面撕裂(tearing)
双显卡(i+n)使用bumblebee方案在不禁用核显的情况下,是使用核显作为显示输出。
那么画面撕裂自然和核显有关了,在archwiki找到的解决方案是使用一个intel的X配置文件。
在/etc/X11/xorg.conf.d/目录下新建文件20-intel.conf,文件内容为

1 Section "Device"
2     Identifier "Intel Graphics"
3     Driver "intel"
4     Option "AccelMethod" "sna" //指定加速方式,默认为sna,其他还有uxa
5     Option “TearFree” “true//防止撕裂,仅作用于sna加速方式
6     Option “SwapBuffersWait” “false//禁用垂直同步(vsync),此选项解决了我firefox浏览器单独的撕裂问题
7 EndSection


5.暂时的亮度调节

1 echo xxx > /sys/class/backlight/intel_backlight/brightness


7. ntfs、mtp挂载方法
安装ntfs-3g gvfs-mtp

1 pacman -S ntfs-3g gvfs-mtp

 



















以上是关于Arch Linux安装后的问题的主要内容,如果未能解决你的问题,请参考以下文章

Arch Linux 安装后的设置

linux/arch jdk8安装

arch Linux 安装完,无法通过 SSH 远程连接问题

Vmware安装Arch Linux

"arch/arm/kernel/head.S"里面一点片段的理解

Arch Linux 下Android 源代码的下载以及编译