Ich besitze ein Asus UX31A Prime – 8 GB RAM und SSD 256 GB – SanDisk. Es begann vor etwa zwei Wochen nach dem Ruhezustand (Windows). Das Problem ist, dass es beim Booten/Fortsetzen stockt. Ich suche danach, indem ich versuche, Windows und Linux zu installieren. Ich habe einen E/A-Fehler bei der Partitionierung unter Linux und beim Wind-Installer bekomme ich einen schwarzen Bildschirm und einen weißen Cursor (ich habe im Internet herausgefunden, dass es sich um einen SSD/HDD-Fehler handelt).
Ich habe erfolglos versucht, die Partitionen auf der Linux Live-CD/dem USB zu löschen – E/A-Fehler.
Ich denke, es liegt an der Partitionstabelle, die aus irgendeinem Grund nicht bearbeitet werden kann. Ich werde unten einige Befehlsausgaben vom Fedora Linux Terminal veröffentlichen.
Partitionstabelle abrufen
sudo fdisk -l
AUSGABE:
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
Partitionstabelle als ASCII abrufen und als TXT speichern:
sudo sfdisk -d /dev/sda > PT.txt
AUSGABE
Completed
Laden Sie die gleiche Tabelle hoch – KEINE BEARBEITUNG auf SSD:
sudo sfdisk --no-reread -f /dev/sda -O PT.save < PT.txt
AUSGABE - MIT FEHLER:
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).)
Können Sie mir helfen? Danke!
Antwort1
Von diesem Fedora-Installations-USB/DVD-Laufwerk aus
dd bs=1M if=/dev/zero of=/dev/sdX
wo X
ist der Laufwerksbuchstabe, der (vermutlich /dev/sdb
) angezeigt wird
Antwort2
Versuchen Sie zunächst, die gesamte Diskette zu lesen. Wenn dabei ein Fehler auftritt, ist Ihre Diskette defekt:
dd if=/dev/sda of=/dev/null bs=4M status=progress
Löschen Sie dann die gesamte Festplatte. Fehler (außer „kein Speicherplatz mehr“ bedeutet, dass die Festplatte defekt ist):
dd if=/dev/zero of=/dev/sda bs=4M status=progress conv=fsync
sync