今天安装了arch,感觉不错,这速度可以

虽然没有想想中的那么那么快,不过已经可以了

总结一下遇到的问题以及i自己安装的软件

1.u盘硬盘不能自动挂载

  安装gvfs

2.不能读写挂载

  安装ntfs-3g

3.时间不对

  照wiki上的说

#ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
#hwclock --systohc --utc

  之后你会发现时间慢了8小时

  解决:

  #nano /etc/locatime 然后把最后一个CST-8改成CST-0,有乱码不用管

安装的软件

图形界面的压缩包管理工具:pacman -S xarchiver

画图软件:pacman -S mypaint gimp

图片查看器:pacman -S shotwell

编辑器:vim leafpad geany atom

  atom的安装,去git下载源码编译安装,如下    

sudo pacman -S --needed gconf base-devel git nodejs npm libgnome-keyring python2
export PYTHON=/usr/bin/python2
然后
git clone https://github.com/atom/atom cd atom
git fetch -p git checkout $(git describe --tags `git rev-list --tags --max-count=1`)
script/build
sudo script/grunt install --install-dir /install/atom/here

IDE:pacman -S eclipse codeblocks

音乐播放器:pacman -S deadbeef

视频播放器:

3D建模:pacman -S blender

字典:pacman -S goldendict

浏览器:pacman -S firefox

虚拟机:pacman -S virtualbox

  virtualbox的安装如下

pacman安装virtualbox
pacman安装linux-headers
pacman安装virtualbox-host-modules
然后sudo modprobe vboxdrv
一些高级功能看这里https://wiki.archlinux.org/index.php/VirtualBox_%28%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87%29#.E8.BF.90.E8.A1.8C.E5.AE.98.E6.96.B9.E5.86.85.E6.A0.B8.E7.9A.84.E4.B8.BB.E6.9C.BA

桌面环境xfce4:pacman -S xfce4 xfce4-goodies

邮件客户端:

 office:wps

  

通过添加archlinuxcn源,用pacman安装(仅限64位arch用户)
添加源方法
最简单安装Yaourt的方式是添加Yaourt源至您的 /etc/pacman.conf:

[archlinuxfr]
Server = http://repo.archlinux.fr/$arch

同步并安装:
pacman -Sy

若想安装yaourt
pacman -S yaourt

此时可以pacman -S wps-office
或者 yaourt -S wps-office
原文地址:https://www.cnblogs.com/reddusty/p/5097205.html