[참고] 


1. $sudo apt-get install ntfs-3g    #NTFS 방식을 인식할 수 있는 모듈 설치

2. $mkdir /mnt/usb    #마운트할 폴더 생성

3. $sudo mount -t ntfs /dev/sda1 /mnt/usb

4. $sudo nano /etc/fstab

5. 편집 모드 'i' 누르고 제일 아래 한 줄 추가

/dev/sda1    /mnt/usb    ntfs    defaults    0    0

6. 재부팅

7. /mmt/usb 폴더로 이동하면 USB 읽혀짐

8. (사용 후) $sudo umount /mnt/usb    #연결해제




[생긴 증상]

  • NTFS 64기가 바이트 usb 메모리를 읽게 하려고 위와 같은 함
  • 하지만 usb를 빼고 부팅하면 바탕화면으로 진입이 안 됨
  • 에러 메시지( 참고: https://blog.naver.com/chandong83/220740458995)
    • You are in emergency mode. After logging in, type "journalctl -xb" to view system logs, "systemctl reboot" to reboot, "systemctl default" or ^D to try again to boot into default mode.

Cannot open access to console, the root account is locked.

See sulogin(8) man page for more details.


Press Enter to continue.

  • 다시 usb를 꼽고 부팅하면 바탕화면 진입 가능



+ Recent posts