码迷,mamicode.com
首页 > 系统相关 > 详细

Arch Linux安装后的问题

时间:2017-04-24 16:29:08      阅读:625      评论:0      收藏:0      [点我收藏+]

标签:启动   false   tar   ice   解决方法   目录   pre   modifier   配置   

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 XMODIFIERS=@im=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安装后的问题

标签:启动   false   tar   ice   解决方法   目录   pre   modifier   配置   

原文地址:http://www.cnblogs.com/riocke7cb/p/6757419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!