필자의 경우 부팅 메시지는 다음과 같습니다. 스왑 파티션이 삭제되었습니다.
Gave up waiting for suspend/resume device
/dev/sda4 ... ...
[***] A start job is running for dev-disk-by\...\...\...\.device
...
...
...
먼저 fstab 파일의 내용을보고
cat /etc/fstab
이런 종류의 출력을 반환합니다.
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda4 during installation
UUID=8c1977eb-ac90-426b-bc9b-a7fb2ec8d760 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda3 during installation
UUID=00fd67-123DE-4b98-aa17-2d4025aed54 none swap sw 0 0
/dev/sr0 /media/cdrom0 udf,iso9660 user,noauto 0 0
그런 다음 "설치 중에 스왑이 / dev / sdax에있었습니다"라는 메시지가 나타납니다.
삭제 된 파티션 (예 : fdisk 또는 Gparted)을 다시 만든 다음이 명령을 사용하여 파티션의 새 uuid를 찾으십시오.
ls -l /dev/disk/by-uuid/
이 결과는 다음과 같습니다.
total 0
lrwxrwxrwx 1 root root 10 févr. 19 07:18 00151dcd-2bf5-4b98-aa17-8f40ef4cfd86 -> ../../sda4
lrwxrwxrwx 1 root root 10 févr. 19 07:18 6C5A1AC45A1A8B4A -> ../../sda2
lrwxrwxrwx 1 root root 10 févr. 19 07:18 8c1977eb-ac90-426b-bc9b-a7fb2ec8d760 -> ../../sda3
lrwxrwxrwx 1 root root 10 févr. 19 07:18 C064106664106188 -> ../../sda1
fstab 파일에서 스왑의 적절한 uuid를 복사 / 붙여 넣기하여 마지막 명령으로 표시된 올바른 uuid로 fstab을 업데이트하십시오. 그런 다음 재부팅하면 문제가 해결됩니다.
quiet
와splash
옵션을 제공합니다. GRUB 항목을 임시로 편집하고이 옵션없이 부팅하십시오. 정지되는 메시지와 그 직후의 메시지에 특히주의하십시오.