You are not logged in.
I followed the installation wiki guide but I can't seem to log on. After I reboot and I remove the installation media (USB ) system boots into bios, if I keep it on and don't remove it I get booted into the media itself. I have secure erased the disk multiple times in bios and installed arch multiple times. I believe I have an issue with my bootloader. I have installed grub as a bootloader. Here is my reasoning. If I mount my /dev/sdx to /mnt and chroot into it I can see everything is intact. whole system is there including grub. once I umount -R /dev/sdx and reboot nothing happens and I'm stuck on bios. I have been at it for the past couple of days but I am missing something
I understand this doesn't help because I didn't post the full error code output or any output whatsoever, but I can't even pass the bios screen to get to my system.
this how I installed my system
timedatectl set-ntp truefdisk /dev/sdagn1starting sector defaultlast sector +512Mt11n2starting sector defaultlast sector +16G (I have 16G ddr3 ram)t219n(root)3starting sector defaultlast sector defaultw
mkfs.fat -F32 /dev/sda1mkswap /dev/sda2swapon /dev/sda2mkfs.ext4 /dev/sda3mount /dev/sda3 /mntpacstarp /mnt base base-devel linux linux-frimware nano ### wiki said I can replace this with desire kernel but I couldn't find the syntax, any help would be appreciated##genfstab -U /mnt >> /mnt/etc/fstabarch-chroot /mntln -sf /usr/share/zoneinfo/REGION/CITY /etc/localtimehwclock --systohcnano /etc/locale.genlocale-gennano /etc/hostnamenano /etc/hosts127.0.0.1 localhost::1 localhost127.0.1.1 x.localdomain xpasswdnew passwdretype passwduseradd -m ypasswd ynew passwdretype passwdusermod -aG wheel ypacman -S sudoEDITOR=nano visudomkdir /boot/EFImount /dev/sda1 /boot/EFIpacman -S efibootmgr dosfstools os-prober mtools grubmkinitcpio -P<== i have installed arch with and without this command, wiki says its not necessary pacstrap runs this.grub-install --target=x86_64-efi --bootloader-id=grub_uefi --recheckgrub-mkconfig -o /boot/EFIpacman -S network managersystemctl enable NetworkManagerexitumount -R /mntreboot I remove the media and I'm stuck in bios. I have done these steps close to 20 times since last Thursday. I typed all of those commands from memory please help me I can't boot into my system.
how can I provide any more info needed such as command output if I can't get into the system to clip the output of a command.
Last edited by nouphal763 (2020-09-23 03:47:38)
Offline
Is the installation media booting in UEFI mode? Unified_Extensible_Firmware_Interface#UEFI_variables_support_in_Linux_kernel will be mouned if it is.
If it is what is the output of
efibootmgr -vEdit:
Please use code tags for commands and their outputs e.t.c.
pacstarp /mnt base base-devel linux(wiki said I can replace this with desire kernel but I couldn't find the syntax, any help would be appreciated) linux-firmware nano
To change the kernel change the package name. You can have multiple kernels installed.
mkinitcpio -P <== i have installed arch with and without this command, wiki says its not necessary pacstrap runs this.
Creating a new initramfs is usually not required, because mkinitcpio was run on installation of the kernel package with pacstrap.
For LVM, system encryption or RAID, modify mkinitcpio.conf(5) and recreate the initramfs image
grub-install --target=x86_64-efi --bootloader-id=grub_uefi --recheck Where did you find --recheck option mentioned? It also misses specifying the ESP location.
Last edited by loqs (2020-09-23 01:27:54)
Offline
my installtion media was MBR. I will reinstall again thank you.
grub-install --target=x86_64-efi --bootloader-id=grub_uefi --recheck code above is from youtube. wiki said install linux-capable boot loader and linked to arch boot process. I saw grub was the best or at least best option for me (uefi,gpt,ext4). I looked up youtube and installed it or maybe I thought I installed it, since I vaguely understand what that line is doing. I'd appreciated it if you can let me know or point to reading material on how I should download it for my reinstall.
I learned something new today. Formatting code blocks, thanks for that as well.
Offline
Pls don't reinstall again, just boot from USB archiso and mount your drive:
# mount /dev/sda3 /mnt/
# mount /dev/sda1 /mnt/boot/efi
# arch-chroot /mnt/You are missing --efi-directory option:
# grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub-efithen regenerate grub config file:
# grub-mkconfig -o /boot/grub/grub.cfgOffline
solskog have you read http://slash7.com/2006/12/22/vampires/ #2: Cease Enabling Behavior?
Offline
code above is from youtube.
Youtube guides are not supported here -- they are almost always outdated or just wrong. Use the Installation Guide and the wiki. Ask questions if you get stuck, but do not use youtube.
I learned something new today. Formatting code blocks, thanks for that as well.
You don't need code tags around every line. Just use one [ code ] to start where you are posting code, post all the lines, then close it with one [ /code] tag (without the spaces).
Offline
# grub-install --target=x86_64-efi --efi-directory=esp --removableline above did it for me.I have MSI motherbaord and they want grub uefi on an specefic location. more on the link below.
Offline
nouphal763 wrote:code above is from youtube.
Youtube guides are not supported here -- they are almost always outdated or just wrong. Use the Installation Guide and the wiki. Ask questions if you get stuck, but do not use youtube.
I learned something new today. Formatting code blocks, thanks for that as well.
You don't need code tags around every line. Just use one [ code ] to start where you are posting code, post all the lines, then close it with one [ /code] tag (without the spaces).
thank you
Offline