Установка на Zenbook UX32LN [SOLVED]

Intel Core i7 4510U, 8 Гб, 256 Гб (SSD), NVIDIA GeForce 840M 2 ГБ,

Устанавливаю по следующей инструкции:

# Partitioning. Use gdisk: it's an fdisk equilevant for GPT (GUID partition Table) which you need for UEFI boot.
gdisk /dev/sda

# create new GUID partition table and destroy everything on disk
o

# New partition
n

# Create the following ones. Not making a swap because I have plenty of ram. You can make one if you really want it.
sda1
 1024M
 EF00
 /boot
sda2
 4G
 8300
 /swap
sda3
 ~G #Rest of disk space
 8300
 /

# Write the changes and quit
w

# Create filesystems
mkfs.vfat -F32 /dev/sda1
mkswap /dev/sda2
mkfs.ext4 /dev/sda3

# Mount the filesystems
swapon /dev/sda2
mount /dev/sda3 /mnt

mkdir /mnt/boot
mount /dev/sda1 /mnt/boot

# And install the system
pacstrap /mnt base base-devel

# Set up fstab
genfstab -U -p /mnt >> /mnt/etc/fstab

# Configuring the system
arch-chroot /mnt

# Create locale file
# Remove the "#" in front of the locale(s) you need, en_US.UTF-8 in my case
nano /etc/locale.gen

# Save the file and generate the locales
locale-gen

# locale.conf
echo LANG=en_US.UTF-8 > /etc/locale.conf
export LANG=en_US.UTF-8

# Set up the hostname (aeonius in my case)
echo zenbook > /etc/hostname

# Install the bootloader
# The mount command will most likely result in an error due to it being loaded already
mount -t efivarfs efivarfs /sys/firmware/efi/efivars
pacman -S gummiboot
gummiboot install

# Create a configuration file to add an entry for Arch Linux to the gummiboot manager
nano /boot/loader/entries/arch.conf

# Contents of arch.conf file should be:
title  Arch Linux
linux  /vmlinuz-linux
initrd  /initramfs-linux.img
options  root=/dev/sda1 rw

restart

и при загрузке выдает следующее:


::mounting '/dev/sda1' on real root
mount: unknown filesystem type 'vfat'
You are now being dropped into an emergency shell.
sh: can't access tty; control turned off
Корень же sda3? Тогда почему:

# Contents of arch.conf file should be:
...
options  root=/dev/sda1 rw
?
Ура! Спасибо действиетльно помогло!
 
Зарегистрироваться или войдите чтобы оставить сообщение.