选择安装方式
CD/USB Arch启动盘安装
使用Arch启动盘比较简单方便,没有额外设置,直接阅读下一步。
USB flash installation media
启动盘制作: USB flash installation media
从已经存在的Linux系统中安装(非Arch类)
从已经存在的非Arch系统环境中安装arch,本质上是搭建引导过程中可以运行 arch-install-scripts
脚本(包括pacstrap
和arch-chroot
命令) 的系统环境。
创建Arch chroot环境
1、推荐使用bootstrap
镜像
1
2
3
4
|
### Download the bootstrap image from a mirror:
[root@GENTOO ~] curl -O http://mirrors.kernel.org/archlinux/iso/2015.10.01/archlinux-bootstrap-2015.10.01-x86_64.tar.gz
### Extract the tarball:
[root@GENTOO ~] cd /tmp# tar xzf <path-to-bootstrap-image>/archlinux-bootstrap-2015.10.01-x86_64.tar.gz
|
2、编辑/tmp/root.x86_64/etc/pacman.d/mirrorlist
本件,选择镜像源
3、进入chroot环境
1
|
/tmp/root.x86_64/bin/arch-chroot /tmp/root.x86_64/
|
使用Arch chroot环境
1、初始化pacman keyring
1
2
|
# pacman-key --init
# pacman-key --populate archlinux
|
2、编辑/etc/pacman.d/mirrorlist
本件,选择镜像源
3、更新软件列表
4、安装系统
Arch Chroot环境已经具备,继续下面的步骤,选择安装需要的系统base
, base-devel
, parted
等.
参考:https://wiki.archlinux.org/index.php/Install_from_existing_Linux
准备
准备磁盘分区
至少准备一个足够大的/分区,如果磁盘容量足够,可以额外创建/home、/boot等。
1
2
3
|
mkdir /mnt
mkdir /mnt/boot
mkdir /mnt/home
|
Mount the root partition on /mnt. After that, create directories for and mount any other partitions (/mnt/boot, /mnt/home, …) and activate your swap partition if you want them to be detected later by genfstab.
1
2
3
|
mount /dev/sdax /mnt
mount /dev/sdax/boot
mount /dev/sdax/home
|
准备连接
默认使用Dhcp,一般自动检测,无需设置
1
|
wget -O /etc/pacman.d/mirrorlist https://www.archlinux.org/mirrorlist/all/
|
取消注释中国的镜像
安装系统
配置系统
fstab文件
- Generate an fstab file (use -U or -L to define by UUID or labels):
1
|
genfstab -p /mnt >> /mnt/etc/fstab
|
chroot
Hostname:
1
|
echo computer_name > /etc/hostname
|
Time zone:
1
|
ln -sf /usr/share/zoneinfo/zone/subzone /etc/localtime
|
Locale:
1
2
|
nano -w /etc/locale.gen
locale-gen
|
Password:
Initial RAM:
Bootloader:
1
2
|
pacman -S grub
grub-install --target=i386-pc --recheck /dev/sda
|
1
|
grub-mkconfig -o /boot/grub/grub.cfg
|
重启