[Ubuntu] Error: The disk drive for/media/sda2 is not ready yet or not present
2973 단어 ubuntu
The disk drive for /media/sda2 is not ready yet or not present.
Continue to wait, press S to skip or M for manual recovery.
Though I can press s to continue the starting, but that is not so good to do that.
Then i google these.
From here: http://ubuntuforums.org/showthread.php?t=1466555
I found the solution.
First, I use blkid to check the device list
sudo blkid
I got these message
/dev/sda1: LABEL="M-gM-3M-;M-gM-;M-^_M-dM-?M-^]M-gM-^UM-^Y" UUID="AC6849A96849735E" TYPE="ntfs"
/dev/sda2: UUID="1E14506314503FC7" TYPE="ntfs"
/dev/sda5: LABEL="My Documents" UUID="BA768C1F768BDA91" TYPE="ntfs"
/dev/sda6: UUID="95f5cc90-1136-4380-9aa7-cf3081ed5fd1" TYPE="swap"
/dev/sda7: UUID="4f351c19-b8cb-4045-b912-1b2a0bb0101a" TYPE="ext4"
Then open the fstab
sudo vim /etc/fstab
Here is the content
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
#Entry for /dev/sda7 :
UUID=4f351c19-b8cb-4045-b912-1b2a0bb0101a / ext4 errors=remount-ro 0 1
#Entry for /dev/sda1 :
UUID=AC6849A96849735E /media/M_gM_3M__M_gM__M___M_dM_?M__]M_gM__UM__Y ntfs-3g defaults,locale=en_US.UTF-8 0 0
#Entry for /dev/sda5 :
UUID=BA768C1F768BDA91 /media/My_Documents ntfs-3g defaults,locale=en_US.UTF-8 0 0
#Entry for /dev/sda2 :
UUID=1E14506314503FC7 /media/sda2 ntfs-3g defaults,locale=en_US.UTF-8 0 0
UUID=565076185075FED5 /media/SYSTEM_DRV ntfs-3g defaults,locale=en_US.UTF-8 0 0
UUID=02D4A30DD4A301D1 /media/sda2 ntfs-3g defaults,locale=en_US.UTF-8 0 0
#Entry for /dev/sda6 :
UUID=95f5cc90-1136-4380-9aa7-cf3081ed5fd1 none swap sw 0 0
You can the that the RED code, compare to the list of blkid, i DO NOT have these UUID devices
So, I remove these two lines, save, then reboot the system.
Fixed!
Have fun with Ubuntu!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Ubuntu 22.04에 캐디 설치 - HostnExtra이 기사에서는 Ubuntu 22.04에 Caddy를 설치하는 방법을 설명합니다. 이 문서는 설치 프로세스를 안내하고 웹 사이트를 호스팅합니다. Caddy 웹 서버는 Go로 작성된 오픈 소스 웹 서버입니다. Ubunt...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.