Discussion:
GPT/NTFS-Partition mounten
(zu alt für eine Antwort)
Daniel Meszaros
2011-10-24 11:30:02 UTC
Permalink
Hi,

ich habe ein SCSI-RAID von einem Windows 2003 SBS abgestöpselt, um es
fortan an einem Debian Squeeze Server zu betreiben. Ein paar Dateien
will ich vor dem Löschen der Partition doch noch sichern, aber das
klappt offenbar nicht, da die NTFS-Partition als GPT-Disk angelegt wurde:

# fdisk -l
[...]
Disk /dev/sdc: 3998.4 GB, 3998421614592 bytes
256 heads, 63 sectors/track, 242107 cylinders
Units = cylinders of 16128 * 1024 = 16515072 bytes
Sector size (logical/physical): 1024 bytes / 1024 bytes
I/O size (minimum/optimal): 1024 bytes / 1024 bytes
Disk identifier: 0xa24313d5

Device Boot Start End Blocks Id System
/dev/sdc1 1 266306 4294967295 ee GPT
Partition 1 does not start on physical sector boundary.
Note: sector size is 1024 (not 512)
[...]

# mount -t ntfs-3g -o ro /dev/sdc1 /mnt/ntfs1
NTFS signature is missing.
Failed to mount '/dev/sdc1': Das Argument ist ungültig
The device '/dev/sdc1' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

# mount -t ntfs-3g -o ro /dev/sdc /mnt/ntfs1
NTFS signature is missing.
Failed to mount '/dev/sdc': Das Argument ist ungültig
The device '/dev/sdc' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

Gibt es einen Weg, das Ding mit dem Debian Server zu lesen oder sollte
ich es dafür doch besser einfach nochmal an die Windowskiste zurück
stöpseln?

CU,
Mészi.
--
Zum AUSTRAGEN schicken Sie eine Mail an debian-user-german-***@lists.debian.org
mit dem Subject "unsubscribe". Probleme? Mail an ***@lists.debian.org (engl)
Archive: http://lists.debian.org/***@meszi.de
Sven Hartge
2011-10-24 11:50:02 UTC
Permalink
Post by Daniel Meszaros
ich habe ein SCSI-RAID von einem Windows 2003 SBS abgestöpselt, um es
fortan an einem Debian Squeeze Server zu betreiben. Ein paar Dateien
will ich vor dem Löschen der Partition doch noch sichern, aber das
Linux kommt mit einer GPT ohne weiteres klar. Daran liegt es also nicht,
dass dein NTFS nicht gemountet werden kann.
Post by Daniel Meszaros
# fdisk -l
[...]
Disk /dev/sdc: 3998.4 GB, 3998421614592 bytes
256 heads, 63 sectors/track, 242107 cylinders
Units = cylinders of 16128 * 1024 = 16515072 bytes
Sector size (logical/physical): 1024 bytes / 1024 bytes
I/O size (minimum/optimal): 1024 bytes / 1024 bytes
Disk identifier: 0xa24313d5
Device Boot Start End Blocks Id System
/dev/sdc1 1 266306 4294967295 ee GPT
Partition 1 does not start on physical sector boundary.
Note: sector size is 1024 (not 512)
[...]
fdisk kann aber nicht mit der GPT umgehen. Was du dort siehst, ist der
Dummy-MBR. Nutze bitte etwas wie gdisk oder gparted, um die wirkliche
Partitionsstruktur sehen zu können.


--
Sigmentation fault. Core dumped.
--
Zum AUSTRAGEN schicken Sie eine Mail an debian-user-german-***@lists.debian.org
mit dem Subject "unsubscribe". Probleme? Mail an ***@lists.debian.org (engl)
Archive: http://lists.debian.org/***@mids.svenhartge.de
Daniel Meszaros
2011-10-24 12:00:02 UTC
Permalink
Post by Sven Hartge
fdisk kann aber nicht mit der GPT umgehen. Was du dort siehst, ist der
Dummy-MBR. Nutze bitte etwas wie gdisk oder gparted, um die wirkliche
Partitionsstruktur sehen zu können. S°
Vielen Dank. Das war's...

# gdisk -l /dev/sdc
GPT fdisk (gdisk) version 0.8.1

Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present

Found valid GPT with protective MBR; using GPT.
Disk /dev/sdc: 3904708608 sectors, 3.6 TiB
Logical sector size: 1024 bytes
Disk identifier (GUID): 86333A71-E348-4292-9D4B-1A46FC72A679
Partition table holds up to 128 entries
First usable sector is 18, last usable sector is 3904708590
Partitions will be aligned on 8-sector boundaries
Total free space is 989 sectors (989.0 KiB)

Number Start (sector) End (sector) Size Code Name
1 18 131089 128.0 MiB 0C01 Microsoft
reserved part
2 131090 3904707601 3.6 TiB 0700 Basic data
partition

# mount -t ntfs-3g -o ro /dev/sdc2 /mnt/ntfs1

# mount | grep sdc2
/dev/sdc2 on /mnt/ntfs1 type fuseblk (ro,allow_other,blksize=4096)

:-)

CU,
Mészi.
--
Zum AUSTRAGEN schicken Sie eine Mail an debian-user-german-***@lists.debian.org
mit dem Subject "unsubscribe". Probleme? Mail an ***@lists.debian.org (engl)
Archive: http://lists.debian.org/***@meszi.de
Loading...