2016年6月18日 星期六

Arch Linux 安裝備忘錄(二)

接續 Arch Linux 安裝備忘錄(一)



測試是否連網,如果沒有,開啟 DHCP 服務或其它(參考 Arch Wiki
$ ping 8.8.8.8
# systemctl enable dhcpcd.service

安裝應用程式之前,先更新套件
# pacman -Syu

安裝音效
# pacman -S alsa-utils
# alsamixer ( 將 Master 與 PCM 調至100% )

安裝 xorg
# pacman -S xorg-server xorg-server-utils xorg-xinit

安裝影像驅動及輸入驅動程式 ( 非 virtualbox )
# pacman -S xf86-input-synaptics
# pacman -S xf86-video-intel
(可以查查看 xf86-input- 或 xf86-video- )

安裝影像驅動及輸入驅動程式 ( virtualbox )
# pacman -S virtualbox-guest-utils virtualbox-host-dkms linux-headers
# modprobe -a vboxguest vboxsf vboxvideo
新增 /etc/modules-load.d/virtualbox.conf 檔案,並寫入:
vboxguest
vboxsf
vboxvideo

安裝 視窗管理員、時鐘、虛擬終端機
# pacman -S xorg-twm xorg-xclock xterm
# startx
# exit
( 當 X Window 安裝成功,才可以安裝桌面環境與視窗管理員 )

建立使用者帳號
# useradd -m -g users -G wheel -s /bin/bash jim
# passwd jim
編輯 /etc/sudoers ,並於 root All=(All) All 後一行增加 jim All=(All) All

沒有留言:

張貼留言