Answers:
正如DaveParillo所提到的,任何分配都可以简化为几乎没有。但是,在您的情况下,最好从头开始构建系统。这就是Arch Linux的设计目标。如果您对此想法感到满意,请继续...
-
/dev/sdb1 /mnt/device ntfs defaults 1 0
c1:2345:respawn:/sbin/agetty -8 38400 tty1 linux
到以下内容:
c1:2345:respawn:/sbin/mingetty --autologin username tty1 linux
pacman -Syu
pacman -S libgl xorg xf86-input-evdev mesa vesa
使用以下命令配置X:
Xorg -configure
cp /root/xorg.conf.new /etc/X11/xorg.conf
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
exec startx
logout
fi
exec celtx
shutdown -h now
一旦退出celtx,Arch Linux将关闭。