惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
爱范儿
爱范儿
D
Docker
I
InfoQ
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
D
DataBreaches.Net
月光博客
月光博客
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
MyScale Blog
MyScale Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学

Arch Linux Forums

Avidemux crashes without strace / Applications & Desktop Environments how to apply patches with non-linux linends / Newbie Corner Replicating CachyOS on vanilla Arch (or at least getting close) / Arch Discussion What's arch linux GUI package manager ? / Newbie Corner Hibernation failing due to insufficient memory / System Administration profiledef.sh editting question / Installation trying to script kde plasma wallpaper settings / Programming & Scripting Looking for new Audacious package maintainer / Creating & Modifying Packages issues installing arch with LUKS2 encryption / Newbie Corner QEMU PXE booting does not work with OVMF.4m.fd / Applications & Desktop Environments Wired lan regular disconnect / Newbie Corner Need Help setting up ARCH in my G16 G634JZR iwlwifi started failing consistently, trying to determine root cause Windows randomly jumping between monitors after GNOME 50 update No display via DP or HDMI after boot. / Kernel & Hardware how to change acpi platform_profile? / Newbie Corner Linux denied all kernel modules which not loaded right now Use iPhone as Webcam for Arch Linux Video Output Failure on nvidia-580xx-dkms on TTY --> Desktop switch (Page 2) / Kernel & Hardware I was going to rant ..WINE32 Sabotage compliments of Arvind Krishna / Arch Discussion [SOLVED] LUKS drive auto unlocked by TPM when expected not to / Networking, Server, and Protection Hibernate/suspend from X = dark panel; from TTY = works (ASUS G14, hyb (Page 2) / Laptop Issues Headphone jack noise/buzz / Newbie Corner segmentation fault in cc1plus when building CLK / AUR Issues, Discussion & PKGBUILD Requests Console alternative to meld / GNU/Linux Discussion Problem with paru git clone / Newbie Corner XKB questions / Applications & Desktop Environments gnome-keyring-daemon is not working correctly / Applications & Desktop Environments [SOLVED] Steam opens and immediately closes constantly / Newbie Corner Firefox rounded edges on Sway / Applications & Desktop Environments
System not booting after installing Arch. / Installation
VoidTheGamer · 2026-06-25 · via Arch Linux Forums

#1 Today 13:53:36

VoidTheGamer25
Member
Registered: Today
Posts: 3

System not booting after installing Arch.

i RTFM, tried to install arch with the wiki installation guide and it didn't work. after i finish everything (no errors afaik) and i reboot, only the SSD appears in the boot override menu. if i select it, it defaults me to the typical screen that says that i need to insert a correct boot device. Yesterday i was able to install Arch with a video, and when i did it with the video there was another entry besides the SSD that was GRUB, so i suspect the problem is with grub. I also installed grub from the wiki. If you have any idea of what it could be (or need more info to help me determine what the problem is) pls comment.

#2 Today 15:11:21

cryptearth
Member
Registered: 2024-02-03
Posts: 2,199

Re: System not booting after installing Arch.

well - given i've installed arch several times with different setups all resulting in bootable systems ... and the fact that when following other instructions the result was different ... the most likely cause was user error - either by doing something in a not correct order or not do required steps at all or executing wrong commands with wrong parameters

for grub on efi systems one need:
- grub
- efibootmanager

correct install command:

grub-install --efi-directory=<esp mount point> [--boot-directory=<extbootldr mount point>] [--bootloader-id=<other than default>] [--target=x86_64-efi]

where as only --efi-directory is semi-mandatory (i don't know its default from top of my head) while the other are optional unless you have a non-standard setup (the --target option became somewhat obsolete as usually the install detects the correct one - it's only required when you want to cross-install like prepare a efi grub on a legacy system or install legacy on a efi system)

nonetheless: here only the manual install guide and archinstall are supported - when you followed any other guide contact its author
(btw: as you not linked the video in question noone here can check it for any differences)

so, tl;dr: whatever it was - you did something different - and unless you can provide the exact history from boot of arch install media to reboot noone here can tell where you went wrong - although there are a few common pitfalls
also: if you're on a laptop that's not specifically designed to be used with linux chances are you ran into some quirks - as its common with laptops to go kaputt when you throw anything else at them than windows

#3 Today 15:29:27

VoidTheGamer25
Member
Registered: Today
Posts: 3

Re: System not booting after installing Arch.

I followed the OFFICIAL arch install guide. it worked with the video but not with the guide. The video in question is https://www.youtube.com/watch?v=U8uMmsJQTZM . I have installed grub and efibootmgr with pacman in the arch-chroot. The command i have used is the following: # grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB and yes, i have generated the config file with  grub-mkconfig -o /boot/grub/grub.cfg  .

I formated the disk with sda1 (1gb) formatted in fat32 for the EFI partition and sda2 with the rest of the space (~200GB) formatted in ext4 for the root partition. then before going into arch-chroot i mounted them with:

mount /dev/sda1 /mnt/boot (created before with mkdir)
mount /dev/sda2 /mnt

i dont really know what ESP is, i get its the EFI system partition or something but i genuinely dont understand it. i assumed it was /boot since i mounted the ESP to /mnt/boot. also, grub said it installed without problems.

The PC in question is a normal PC with an msi board, a gtx 750 ti, and an i3 which i dont remember the generation.

Hope this helps to diagnose the issue, if you need any more info tell me.

Thanks in advance!

#4 Today 15:43:55

cryptearth
Member
Registered: 2024-02-03
Posts: 2,199

Re: System not booting after installing Arch.

VoidTheGamer25 wrote:

mount /dev/sda1 /mnt/boot (created before with mkdir)
mount /dev/sda2 /mnt

there we go - wrong order!

you have to mount root first!

in your case

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

what happens when you do it your way:

first you create /mnt/boot in the temp fs of the install environment and mount the esp there
then you mount the new root partition to /mnt and by this you shadow the other mount
the new roit doesn't even have a /boot because you not created it yet

you always have to mount the upper one first - and then what's inside

the guide tells you exactly that:

https://wiki.archlinux.org/title/Instal … le_systems

Last edited by cryptearth (Today 15:48:21)

#5 Today 15:53:06

VoidTheGamer25
Member
Registered: Today
Posts: 3

Re: System not booting after installing Arch.

Ok, i did it mounting the root first!

it didnt work... same problem as before. i followed the guide step by step. i dont get why its not working, the only thing i can think of is that the ESP that i have to put in the grub installer command isnt actually /boot...