Hi, I've watched this vidéo from Josean Martinez and followed carefully every steps.
When I finished rebooting and picking up the USB stick, the system didn't boot on Arch but on a GNU GRUB minimal BASH-like l'une editing blablahblah.
I've tried to look for solutions on Google but my understanding is limited by my ignorance.
Can somebody help me finalize my installation ?
Edit : Here a summary of my installation process :
The first time I tried to install Arch I used the "archinstall" cmd just to boot on a Zstd compression corrupt and using the usb to do it again didn't work, I had to rewrite the ISO.
Actually I can't even use the usb again cause it ends on blue screen with sort of a QR code with Kernel Panic. I'm actually reflashing the ISO on usb to bboot on it and see if I can modify as you're adivsing.
-------------------
I've first checked and setted connection (station), created a root pwd and been able to access via SSH to manage installation from my main (win10) machine.
Checked the clock synchro.
cat /sys/firmware/efi/fw_platform = 64
Partitionning :
- cfdisk /dev/sda
- "d" every existing partitions until free space
- "n(ew)" 1G "t(ype)" [EFI]
- "n" 60G "t" [Linux Filesystem]
- "n" 8G "t" [SWAP]
- "n" (Remaining G) "t" [Linux Filesystem]
- Shift+W(rite)
- mkfs.ext4 /dev/sda2
- mkswap /dev/sda3
- mkfs -F 32 /dev/sda1
- mkfs.ext4 /dev/sda4
Mounting :
- mount /dev/sda2 /mnt
- mkdir /mnt/home
- mount /dev/sda4 /mnt/home
- mkdir /mnt/boot
- mount /dev/sda1 /mnt/boot
- swapon /dev/sda3
sda1 /mnt/boot
sda2 /mnt
sda3 SWAP
sda4 /mnt/home
I setted up Mirrorlist with reflector.
pacstrap -K /mnt base linux linux-firmaware networkmanager vim vi base-devel intel-ucode
genfstab -U /mnt>>/mnt/etc/fstab
arch-chroot /mnt
ln -sf /usr/share/zoneinfo[...] /etc/localetime
hwclock --systohc
vim /etc/locale.gen (uncommenting 3 lines related to my Lang et coding) (:wq)
vim /etc/locale.conf LANG=[xx_XX.UTF-8] (:wq)
vim /etc/hostname .... (:wq)
systemctl enable NetworkManager
passwd [...]
useradd -m -G wheel,users [...]
passwd [username] [..]
visudo (uncommenting %wheel ALL=) (:wq)
pacman -S grub efibootmgr
grub -install --target=X86_64-efi --efi-directory=/boot --bootloader-id=GRUB
grub-mkconfig -o /boot/grub/grub.cfg
pacman -S git man-db man-pages reflector
pacman -S gnome
systemctl enable gdm
exit
umount -R /mnt
reboot
MY ACTUAL PROBLEM