码迷,mamicode.com
首页 > 系统相关 > 详细

Virtualbox中安装Arch Linux

时间:2014-08-27 01:34:56      阅读:335      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   文件   ar   art   

1、配置Pacman源,添加阿里云的源地址。

  编辑/etc/pacman.d/mirrorlist,先注释掉里面的所有行,然后在文件的最顶端添加  

1 Server = http://mirrors.aliyun.com/archlinux/$repo/os/$arch

2、安装openssh并开启SSH服务。--本人习惯用SSH连接操作。

1 pacman -Sy openssh
2 systemctl enable sshd
3 systemctl start sshd

  为root账户设置密码,然后用ssh连接。

3、磁盘分区。

fdisk /dev/sda

  /分区18G,swap分区2G。共20G硬盘。--可按自己需求划分。

  格式化分区及swap。

mkfs.ext4 /dev/sda1
mkswap /dev/sda2
swapon /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

标签:style   blog   http   color   os   io   文件   ar   art   

原文地址:http://www.cnblogs.com/superaltman/p/3938531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!