安装sudo:
1.root权限执行visudo,会打开一个配置文件
2.在打开的配置文件上加入新的一行USERNAME ALL=(ALL) ALL
安装声卡:
1.pacman -S alse-utils
2.gpasswd -a USERNAME audio 添加用户到audio用户组以支持声音
3.vi /etc/rc.conf (在/etc/rc.conf的DAEMONS中加入alsa)
为IBM X31安装ati驱动:
pacman -S xf86-video-ati
如果是其他显卡的话,google一下看看应该安装啥驱动。
安装gnome:
1.pacman -S gnome gdm hal
2.vi /etc/rc.conf (把hal和gdm加入/etc/rc.conf的义域:DAEMONS中)
3./etc/rc.d/hal start
4.startx (如果可以看到图形界面,说明已经成功了)
5.重启,不出意外应该可以进入gnome,出了意外请google
安装个苹果风格的linux:
参考:http://www.stchman.com/transform_osx.html

配置hal的IBM X31鼠标中键:
需要在/etc/hal/fdi/policy/一个文件,如下:
cat /etc/hal/fdi/policy/use-multiple-layouts-with-mouse.fdi
[code=xml]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Section "InputDevice"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection
-->
<deviceinfo version="0.2">
<match key="info.product" string="TPPS/2 IBM TrackPoint">
<merge key="input.x11_options.EmulateWheel" type="string">true</merge>
<merge key="input.x11_options.EmulateWheelButton" type="string">2</merge>
<merge key="input.x11_options.XAxisMapping" type="string">6 7</merge>
<merge key="input.x11_options.YAxisMapping" type="string">4 5</merge>
<merge key="input.x11_options.ZAxisMapping" type="string">4 5</merge>
<merge key="input.x11_options.Emulate3Buttons" type="string">true</merge>
</match>
</deviceinfo>
[/code]
有疑问请参考:http://www.linuxsir.org/bbs/thread341470.html
IBM X31其他配置:
参考:http://wiki.archlinux.org/index.php/IBM_ThinkPad_X31
安装中文输入法fcitx:
1.pacman -S fcitx
2.打开用户home目录下 .bashrc 文件,加入以下内容:
[code=c]
#setup XIM environment, needn't if use SCIM as gtk-immodules
export GTK_IM_MODULE=xim
export QT_IM_MODULE=xim
export XMODIFIERS="@im=fcitx"
[/code]
假如不能输入文字,字已经出现,你可能要在/etc/profile中加入一行
export LC_CTYPE=zh_CN.utf8
如有问题,请参考: http://wiki.archlinux.org/index.php/Fcitx
安装yaourt:
1.从AUR上下载并安装,如果不会安装AUR包的,google之。
yaourt AUR下载地址:http://aur.archlinux.org/packages.php?ID=5863
安装软件:
1.pacman -S gimp gqview gedit vim evince unrar unzip stardict jre flashplugin 等等
安装字体,使用准圆字体:
1. 下载ttf文件:http://nog-os.googlecode.com/files/ZhunYuan.ttf
2. 将此字体文件拷贝到/usr/share/fonts
3. 刷新字体缓冲:fc-cache -f
更多问题请参考:http://wiki.archlinux.org/index.php/Xorg_Font_Configuration_X%E5%AD%97%E4%BD%93%E9%85%8D%E7%BD%AE
安装多媒体播放器:
1.pacman -S smplayer
2.pacman -S audacious
翻人比黄花瘦墙和突破流量限制:
因为我拥有一个网络主机的SSH账号,而我所处的网络有做流量限制,使用SSH隧道却没有流量限制,因此我安装了翻人比黄花瘦墙工具proxychains,通过它任何程序都可以通过隧道访问网络了:
为了达到翻人比黄花瘦墙的目的,首先要建立起SSH隧道,使用如下命令:
ssh -aTfnN -D 端口号 用户@主机地址
如: ssh -aTfnN -D 7070 admin@examplehost.com
yaourt -S proxychains.
通过修改配置文件vi /etc/proxychains.conf中的部分内容就可以愉快的翻人比黄花瘦墙了。
如有疑问参考此博文:http://linuxdesktop.cn/2009/07/09/tsocks.html
参考资料:
1.打造完美的 Linux 桌面系列文章 http://linuxtoy.org/archives/the-perfect-linux-desktop-arch-linux-2007-08-2-4.html
2.Archlinux官网 http://wiki.archlinux.org/
3.本文用斜体表示在shell中输入的命令和参数
