パーティションテーブルに書き込めません

パーティションテーブルに書き込めません

私は Asus UX31A Prime - 8GB RAM と 256GB SSD - SanDisk を使用しています。約 2 週間前に休止状態 (Windows) から始まりました。問題は、起動/再開時にストック状態になることです。Windows と Linux をインストールしようとして、この問題について調べました。Linux のパーティション分割で I/O エラーが発生し、Wind インストーラーでは黒い画面と白いカーソルが表示されます (Web で SSD/HDD エラーであることがわかりました)

Linux Live CD/USB 上のパーティションを削除しようとしましたが、うまくいきませんでした - I/O エラー。

今、私が思うに、何らかの理由でパーティション テーブルを編集できないのです。以下に、Fedora Linux ターミナルからのコマンド出力をいくつか投稿します。

パーティションテーブルを取得する

sudo fdisk -l

出力:

Disk /dev/sda: 238.5 GiB, 256060514304 bytes, 500118192 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: 0x90e5b865

Device     Boot     Start       End   Sectors   Size Id Type
/dev/sda1  *         2048    206847    204800   100M  7 HPFS/NTFS/exFAT
/dev/sda2          206848 246163455 245956608 117.3G  7 HPFS/NTFS/exFAT
/dev/sda3       246163456 500115455 253952000 121.1G  7 HPFS/NTFS/exFAT

パーティション テーブルを ASCII として取得し、TXT として保存します。

sudo sfdisk -d /dev/sda > PT.txt

出力

Completed

同じテーブルをアップロードします - 編集なし SSD に:

sudo sfdisk --no-reread -f /dev/sda -O PT.save < PT.txt

出力 - エラーあり:

Disk /dev/sda: 31130 cylinders, 255 heads, 63 sectors/track
Old situation:
Units: cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0

   Device Boot Start     End   #cyls    #blocks   Id  System
/dev/sda1   *      0+     12-     13-    102400    7  HPFS/NTFS/exFAT
/dev/sda2         12+  15322-  15311- 122978304    7  HPFS/NTFS/exFAT
/dev/sda3      15322+  31130-  15808- 126976000    7  HPFS/NTFS/exFAT
/dev/sda4          0       -       0          0    0  Empty
New situation:
Units: sectors of 512 bytes, counting from 0

   Device Boot    Start       End   #sectors  Id  System
/dev/sda1   *      2048    206847     204800   7  HPFS/NTFS/exFAT
/dev/sda2        206848 246163455  245956608   7  HPFS/NTFS/exFAT
/dev/sda3     246163456 500115455  253952000   7  HPFS/NTFS/exFAT
/dev/sda4             0         -          0   0  Empty
sfdisk: Warning: partition 1 does not end at a cylinder boundary
sfdisk: Warning: partition 2 does not start at a cylinder boundary
sfdisk: Warning: partition 2 does not end at a cylinder boundary
sfdisk: Warning: partition 3 does not start at a cylinder boundary
sfdisk: Warning: partition 3 does not end at a cylinder boundary
sfdisk: Failed writing the partition on /dev/sda: Input/output error
Re-reading the partition table ...
sfdisk: Error closing /dev/sda: Input/output error
sfdisk: If you created or changed a DOS partition, /dev/foo7, say, then use dd(1)
to zero the first 512 bytes:  dd if=/dev/zero of=/dev/foo7 bs=512 count=1
(See fdisk(8).)

助けてくれませんか? ありがとう!

答え1

そのFedoraインストールUSB/DVDから実行

dd bs=1M if=/dev/zero of=/dev/sdX

Xそのドライブに表示される文字はどこにありますか(おそらく/dev/sdb

答え2

まずディスク全体の読み取りを試みます。エラーがある場合はディスクが壊れています。

dd if=/dev/sda of=/dev/null bs=4M status=progress

次に、ディスク全体を消去します。エラー (「空き容量がありません」以外の場合は、ディスクが壊れていることを意味します):

dd if=/dev/zero of=/dev/sda bs=4M status=progress conv=fsync
sync

関連情報