kali linux를 설치했는데 grub을 설치할 수 없다는 것을 발견했습니다. 그런 다음 라이브 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
옵션이 아닌 유형입니다.