开机 grub 进 arch 后有以下输出
把 arch 启动项搞崩了。。。
Loading Linux Linux...
error: invalid cluster 0.
Loading initial virtual disk
alloc magic is broken at 0x91a6fdc0: 91b0b720
Aborted. Press any key to exit.
然后我下载了 8 月份的镜像(10 月那时还没出, 9 月的有问题),
准备按网上搜到的以下类似操作操作
mount /dev/sda2 /mnt/boot
wifi-menu
arch-chroot /mnt
pacman -Syy
pacman -Syu
pacman -S udev mkinitcpio linux
mkinitcpio -p linux
grub-mkconfig -o /boot/grub/grub.cfg (たぶんいらない)
exit
genfstab -U -p /mnt >> /mnt/etc/fstab (たぶんいらない)
umount -R /mnt
reboot
但在执行 mkinitcpio -p linux 时说没有 specific linux img 什么的
于是我决定重装 grub ,但在重装时,说 /boot/grub/是只读文件系统,无法删除,于是我 ls -l 了一下,晚些时候上图,现在向大家求助。。。
1
linux40 OP |
2
skydiver 2015-10-01 00:01:47 +08:00
重新挂载一下不就不是只读的了么
|
4
skydiver 2015-10-01 00:05:27 +08:00
mount -o remount,rw /boot
|