#arch# #linux# #archlinux#
最近,进军archlinux的人越来越多了,有些人想要双系统,但就是过长不看
所以我这个萌新这就来教一下如何安装win+linux双系统.
1:
首先在win系统分出两个盘,我这边把archlinux系统盘分了200g,引导分了1g
2.插入写好的archlinux live启动盘(我这边推荐rufus.iso写入),然后电脑bios选择archlinux启动盘
,不会的这一步百度,然后就会进入图2这个选项,我们选择第一个.
3.
进入archlinux live系统后,会是图3这个亚子,输入timedatectl set-ntp true
然后输入fdisk -l查看,这边没有备图,我刚刚分的200g内存是/dev/sda5
1g内存是/dev/sda6
你们的自己看
然后我们更改格式
mkfs.ext4 /dev/sda5
mkfs.fat -F32 /dev/sda6
4.
挂载分区
把200g系统盘系统盘挂载到/mnt,我这里
输入的是mount /dev/sda5 /mnt
创建boot到/mnt
mkdir /mnt/boot
挂载引导到boot
mount /dev/sda6 /mnt/boot
5.
换源
awk /China/,/Server/ /etc/pacman.d/mirrorlist > ~/*
mv ~/* /etc/pacman.d/mirrorlist
换好源后,开始安装系统
6.
安装系统
pacstrap /mnt base linux linux-firmware
然后骚等一会
安装好后输入
genfstab -U /mnt >> /mnt/etc/fstab
7.
配置系统
用chroot进入系统
arch-chroot /mnt
改地区与时辰
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
hwclock --systohc
8.
语言
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
echo "zh_CN.UTF-8 UTF-8" >> /etc/locale.gen
echo "LANG=en_US.UTF-8" >/etc/locale.conf
然后输入locale-gen更新
echo "arch" >/etc/hostname #arch是你要的主机名字
主机名字弄好后,输入pacman -S vim dhcpcd grub efibootmgr
systemctl enable dhcpcd
vim /etc/hosts
改成图片这个样子,图片里的arch写成你的主机名字
随后输入mkinitcpio -P
并且passwd设置密码
9.
grub引导
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=Arch
grub-mkconfig -o /boot/grub/grub.cfg
10.
输入exit退出chroot
随后输入umount -R /mnt
reboot,拔出u盘即可
最近,进军archlinux的人越来越多了,有些人想要双系统,但就是过长不看
所以我这个萌新这就来教一下如何安装win+linux双系统.
1:
首先在win系统分出两个盘,我这边把archlinux系统盘分了200g,引导分了1g
2.插入写好的archlinux live启动盘(我这边推荐rufus.iso写入),然后电脑bios选择archlinux启动盘
,不会的这一步百度,然后就会进入图2这个选项,我们选择第一个.
3.
进入archlinux live系统后,会是图3这个亚子,输入timedatectl set-ntp true
然后输入fdisk -l查看,这边没有备图,我刚刚分的200g内存是/dev/sda5
1g内存是/dev/sda6
你们的自己看
然后我们更改格式
mkfs.ext4 /dev/sda5
mkfs.fat -F32 /dev/sda6
4.
挂载分区
把200g系统盘系统盘挂载到/mnt,我这里
输入的是mount /dev/sda5 /mnt
创建boot到/mnt
mkdir /mnt/boot
挂载引导到boot
mount /dev/sda6 /mnt/boot
5.
换源
awk /China/,/Server/ /etc/pacman.d/mirrorlist > ~/*
mv ~/* /etc/pacman.d/mirrorlist
换好源后,开始安装系统
6.
安装系统
pacstrap /mnt base linux linux-firmware
然后骚等一会
安装好后输入
genfstab -U /mnt >> /mnt/etc/fstab
7.
配置系统
用chroot进入系统
arch-chroot /mnt
改地区与时辰
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
hwclock --systohc
8.
语言
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
echo "zh_CN.UTF-8 UTF-8" >> /etc/locale.gen
echo "LANG=en_US.UTF-8" >/etc/locale.conf
然后输入locale-gen更新
echo "arch" >/etc/hostname #arch是你要的主机名字
主机名字弄好后,输入pacman -S vim dhcpcd grub efibootmgr
systemctl enable dhcpcd
vim /etc/hosts
改成图片这个样子,图片里的arch写成你的主机名字
随后输入mkinitcpio -P
并且passwd设置密码
9.
grub引导
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=Arch
grub-mkconfig -o /boot/grub/grub.cfg
10.
输入exit退出chroot
随后输入umount -R /mnt
reboot,拔出u盘即可