私のラップトップにはUbuntu 20.04があり、systemctl hibernate
入力後約10秒後に終了します。
しかし、再びオンにしても前の状態に戻らず、再起動のように起動します。
Windows 10とUbuntu 20.04のデュアルブートです。
- コンテンツ
/etc/fstab:
# <file system> <mount point> <type> <options> <dump> <pass> # / was on /dev/nvme0n1p4 during installation UUID=27945c30-b6bd-466e-b0b7-45870363e944 / ext4 errors=remount-ro 0 1 # /boot/efi was on /dev/nvme0n1p1 during installation UUID=62C8-B178 /boot/efi vfat umask=0077 0 1 /swapfile none swap sw 0 0
- コンテンツ
/etc/default/grub
:GRUB_DEFAULT=0 GRUB_TIMEOUT_STYLE=hidden GRUB_TIMEOUT=10 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT="quiet splash resume=/dev/nvme0n1p4" #tried /dev/nvme0n1p1 and the above UUIDs too. Also tried with the UUID of the swap partition. GRUB_CMDLINE_LINUX=""
- RAM:8GB、スワップファイルサイズ:9437180 kB
- BIOSでセキュアブートが無効になっています。
誰でもこれを行うのに役立ちますか?
答え1
問題は、スワップパーティションが作成されず、スワップファイルのみが生成されるために発生します。
「GParted」ツールを使用してスワップパーティションを作成し、「linux-swap」タイプでフォーマットし、「Swap on」を有効にしました。
パーティションの uuid は /etc/fstab および /etc/default/grub で提供されます。これで問題が解決しました。