
當我安裝kali linux時發現grub無法安裝。然後我使用 live USB 嘗試重新安裝 grub:
grub-install /dev/sda
我收到此錯誤:
grub-install: command not found
我正在關注這個答案直到
5) mount -o devpts pts /mnt/linux/dev/pts
它得到這個錯誤:
mount: special device pts does not exist
我該怎麼辦?
答案1
這似乎是答案中的一個拼字錯誤。該命令應類似於:
mount -t devpts pts /mnt/linux/dev/pts
devpts
是一種類型,而不是選項。