首页 > 代码库 > Virtualbox中安装Arch Linux
Virtualbox中安装Arch Linux
1、配置Pacman源,添加阿里云的源地址。
编辑/etc/pacman.d/mirrorlist,先注释掉里面的所有行,然后在文件的最顶端添加
1 Server = http://mirrors.aliyun.com/archlinux/$repo/os/$arch
2、安装openssh并开启SSH服务。--本人习惯用SSH连接操作。
1 pacman -Sy openssh2 systemctl enable sshd
3 systemctl start sshd
为root账户设置密码,然后用ssh连接。
3、磁盘分区。
fdisk /dev/sda
/分区18G,swap分区2G。共20G硬盘。--可按自己需求划分。
格式化分区及swap。
mkfs.ext4 /dev/sda1mkswap /dev/sda2swapon /dev/sda2
4、挂在分区。
mount /dev/sda1 /mnt
5、安装基础系统。
pacstrap -i /mnt base base-devel
6、生成fstab。
genfstab -U -p /mnt >> /mnt/etc/fstab
7、配置基础系统。
arch-chroot /mnt /bin/bash
8、语言
编辑/etc/locale.gen,移除需要的行前的 #:
vi /etc/locale.gen
locale-gen
echo LANG=en_US.UTF-8 > /etc/locale.conf
9、设置时区
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime.conf
hwclock --systohc --utc
10、主机名
echo altman > /etc/hostname
11、设置root密码
passwd
12、安装Grub:
BIOS + MBR:
# pacman -S grub# grub-install --target=i386-pc --recheck /dev/sda
生成配置文件:
# grub-mkconfig -o /boot/grub/grub.cfg
13、退出chroot
# exit
卸载新分区
# umount -R /mnt
Virtualbox中安装Arch Linux
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。