SSH не может подключиться к эмулятору ARM qemu

От человекаmount:

   errors={continue|remount-ro|panic}
              Define the behavior  when  an  error  is  encountered.   (Either
              ignore  errors  and  just mark the filesystem erroneous and con‐
              tinue, or remount the filesystem read-only, or  panic  and  halt
              the  system.)   The default is set in the filesystem superblock,
              and can be changed using tune2fs(8). 

Таким образом, вы должны смонтировать виртуальную машину с параметром continueвместо remount-ro.

mount -o errors=continue
mount -o remount
2
15.12.2017, 13:56
1 ответ

вам нужно подключить qemu к текущему терминалу добавьте это к вашей бегущей строке

-append "root=/dev/sda rw console=ttyS0,115200 acpi=off nokaslrearlyprintk=serial,ttyS0,115200" 

а потом где ты внутри кему настройте ip вашего ник:

ifconfig eth0 10.0.2.15 netmask 255.255.255.0 up && route add default gw 10.0.2.2
1
20.11.2020, 12:26

Теги

Похожие вопросы