LINUX.ORG.RU

История изменений

Исправление Vsevolod-linuxoid, (текущая версия) :

Первый вопрос я решил так, у меня тоже дуалбут Debian + Arch: в /etc/default/grub прописана строчка

GRUB_DISABLE_OS_PROBER=true
, а сам Arch прописан вручную в /etc/grub.d/40_custom
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.

menuentry "Arch Linux" {
 UUID=uuid-раздела-с-Arch
 search --fs-uuid $UUID --set root
 linux /boot/vmlinuz-linux root=UUID=$UUID rw 
 initrd /boot/initramfs-linux.img
}
важен именно rw, почему-то. Выяснить точные uuid разделов можно через команду
blkid -c /dev/null

Исходная версия Vsevolod-linuxoid, :

Первый вопрос я решил так, у меня тоже дуалбут Debian + Arch: в /etc/default/grub прописана строчка

GRUB_DISABLE_OS_PROBER=true
, а сам Arch прописан вручную в /etc/grub.d/40_custom
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.

menuentry "Arch Linux" {
 UUID=uuid-раздела-с-Arch
 search --fs-uuid $UUID --set root
 linux /boot/vmlinuz-linux root=UUID=$UUID rw 
 initrd /boot/initramfs-linux.img
}
важен именно rw, почему-то.