arch linux 安装记录[不解释][精简版]
【分区,选择安装包】光盘启动,运行/arch/setup启动安装程序。
安装源选择cd,【时间设置选择,local】,分区,使用ext4格式,设置挂在点.
选择软件包,安装【base】,【base-devel】,再选择【wireless_tools】和无线驱动【zd1211-firmware】,然后安装软件包。
【修改rc.conf】【network部分】
lo="lo 127.0.0.1" #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255" #eth0="dhcp" wlan0="wlan0 192.168.168.80 netmask 255.255.255.0 broadcast 192.168.168.255" INTERFACES=(lo !eth0 wlan0) gateway="default gw 192.168.168.1" ROUTES=(gateway)
|
【语言设置】
修改/etc/locale.gen为中文 en_US.UTF-8 UTF-8 en_US ISO-8859-1 zh_CN.GB18030 GB18030 zh_CN.GBK GBK zh_CN.UTF-8 UTF-8 zh_CN GB2312 去掉以上行的注释# 执行locale-gen
添加用户 useradd -m -G audio,video,floppy,lp,optical,network,storage,wheel,dbus,hal,users -s /bin/bash USERNAME passwd USERNAME
vi /home/heaven/.xinitrc 添加行export LANG="zh_CN.UTF-8"
|
【配置无线网络】
ifconfig eth0 down ifconfig wlan0 up lsusb iwconfig iwlist wlan0 scan |less iwconfig wlan0 essid "KRUP-AP" dhcpcd wlan0
vi /etc/resolv.conf
添加行
nameserver 202.96.128.166
nameserver 168.95.1.1
ping -c 2
|
【配置更新源】
vi /etc/pacman.conf
添加
[archlinuxfr]
Server =
vi /etc/pacman.d/mirrorlist
添加
Server = Server =
Server = |
【更新系统】
pacman -Syu pacman-optimize pacman -Sy yaourt sudo rm /usr/bin/{view,rview} pacman -S vim
|
【建立sudo】
pacman -S sudo
export VISUAL=vim
visudo
编辑这行USER_NAME ALL=(ALL) ALL |
【配置声音】
在/etc/modprobe.d/modprobe.conf中加入这行 options snd-pcsp index=2
执行: pacman -S alsa-utils alsa-oss gpasswd -a yourusername audio
$ alsamixer 用左右光标键移动到Master和PCM声道上,按M取消掉静音。用向上键增加音量 $ aplay /usr/share/sounds/alsa/Front_Center.wav $ alsactl store
vi /etc/rc.conf 修改DAEMONS=(syslog-ng network crond alsa)
|
【安装X】
安装Xorg pacman -S xorg pacman -S xf86-input-evdev pacman -S mesa (可选) lspci | grep VGA pacman -Ss xf86-video | less pacman -S xf86-video-ati libgl ati-dri pacman -S xf86-input-keyboard xf86-input-mouse Xorg -configure cp /root/xorg.xonf.new /etc/X11/xorg.conf
配置 input设备热插拔 pacman -S xf86-input-evdev /etc/rc.d/hal start usr/sbin/groupadd -g 81 dbus usr/sbin/useradd -c 'System message bus' -u 81 -g dbus -d '/' -s /bin/false dbus
vi /etc/rc.conf 把hal添加到rc.conf的daemon
|
【安装字体】
pacman -S ttf-ms-fonts ttf-dejavu ttf-bitstream-vera pacman -S wqy-zenhei |
【配置桌面启动】
pacman -S fvwm
pacman -S slim
su - heaven
cp /etc/skel/.xinitrc ~/
vi ~/.xinitrc
添加行exec fvwm
修改文件:/etc/inittab #id:3:initdefault: 注释这行 # Boot to X11 id:5:initdefault: 取消注释
#x:5:respawn:/usr/bin/xdm -nodaemon 注释这行 x:5:respawn:/usr/bin/slim >& /dev/null 取消这行
|
【安装桌面应用软件】
yaourt ibus-sunpinyin
pacman -S gamin
pacman -S rox roxterm urxvt wicd firefox
pacman -S gvim scite
pacman -S smplayer audacious
###Mac Fvwm requiements
pacman -S urxvt habak scrot trayer mpd mpc
|
阅读(3275) | 评论(0) | 转发(0) |