Linux / Windowsデュアルブート、Linuxではディスクウィンドウが開いていないことがわかりません。

Linux / Windowsデュアルブート、Linuxではディスクウィンドウが開いていないことがわかりません。

Ubuntu / Windowsノートブックをダブルブートできなくなりました!私のラップトップには3つの物理ドライブがあります。 1つはLinux OS(EXT4)とストレージパーティション(EXT4)を含む1TBドライブ、Windows(NTFS)は256GBドライブ、1つはWindows用のデフォルトSteam用1TBゲーム用ドライブ(xFAT)です。数ヶ月間、デュアルブートはうまくいきました。 GRUBからUbuntuやWindowsで起動するオプションを提供できました。突然、GRUBはこのオプションを提供しなくなりました。それまではWindowsのアップデートがあったかもしれませんが、わかりません。

$ fdisk -l /dev/sd*
Disk /dev/sda: 931.53 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: Samsung SSD 860 
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 18E98FBB-1792-4B9F-AE70-D7230CF76A40

Device          Start        End    Sectors   Size Type
/dev/sda1        4096     618495     614400   300M EFI System
/dev/sda2      618496  390405605  389787110 185.9G Linux filesystem
/dev/sda3  1917749445 1953520064   35770620  17.1G Linux swap
/dev/sda4   390406144 1722437631 1332031488 635.2G Linux filesystem
/dev/sda5  1722437632 1917749247  195311616  93.1G Linux filesystem

Partition table entries are not in disk order.


Disk /dev/sda1: 300 MiB, 314572800 bytes, 614400 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x00000000


Disk /dev/sda2: 185.89 GiB, 199571000320 bytes, 389787110 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


Disk /dev/sda3: 17.6 GiB, 18314557440 bytes, 35770620 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


Disk /dev/sda4: 635.17 GiB, 682000121856 bytes, 1332031488 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


Disk /dev/sda5: 93.14 GiB, 99999547392 bytes, 195311616 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

fdiskから飛び出します(snapは何らかの理由で/ dev / loop *をたくさん生成するため、出力を短縮しました。

BIOSはUbuntuパーティションとWindowsパーティションをチェックします。 Windowsから起動すると、Windowsに直接移動します。 Ubuntuで起動すると、UbuntuオプションのみのGRUBが表示されます。 UbuntuのGPartedはLinuxがあるディスクを見ることができます。それがすべてです。 Windows ディスク管理では、3 つのディスクをすべて表示できます。

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/sda2 during installation
UUID=89fd39a1-00ee-429d-9180-ee01e4b902cb /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/nvme0n1p1 during installation
UUID=AEE5-58FE  /boot/efi       vfat    umask=0077      0       1
# swap was on /dev/sda3 during installation
UUID=df732c5a-28b7-4602-8e1b-0028a0680d9c none            swap    sw              0       0
/dev/disk/by-uuid/28610f4e-5241-482f-88cc-bdbad16b5c9b /mnt/Storage auto nosuid,nodev,nofail,x-gvfs-show 0 0

この問題の原因が何であるかを知っている人はいますか? 256GBのWindowsディスク上のSSDとnvmeと1TB Steamのゲームストレージディスクが同時に失敗する可能性があるため、ドライブが失敗したとすぐに想定しません。

ベストアンサー1

oldfredの提案に感謝します。問題の1つは、Windowsクイックスタートがオンになっていることでした。また、私のBIOSはIntelのRSTを使用していますが、Ubuntu / GRUBで他のディスクを見ることができるようにするには、このRSTもオフにする必要があります!

おすすめ記事