hello,
~# parted /dev/sda unit B print
Model: ATA Hitachi HDS5C404 (scsi)
Disk /dev/sda: 4000787030016B
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Number Start End Size File system Name Flags
3 15728640B 528482303B 512753664B linux-swap(v1) primary raid
1 528482304B 2576351231B 2047868928B ext3 primary raid
2 2576351232B 4624220159B 2047868928B ext3 primary raid
4 4624220160B 4000786153471B 3996161933312B primary raid
~# mount -t ext3 -o ro /dev/sda4 /mnt/diskB
mount: wrong fs type, bad option, bad superblock on /dev/sda4,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
~# mount -t ext4 -o ro /dev/sda4 /mnt/diskB
mount: wrong fs type, bad option, bad superblock on /dev/sda4,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
~# fdisk -l /dev/sda
GNU Fdisk 1.2.4
Copyright (C) 1998 - 2006 Free Software Foundation, Inc.
This program is free software, covered by the GNU General Public License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Disk /dev/sda: 4000 GB, 4000784417280 bytes
255 heads, 63 sectors/track, 486401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda3 2 65 506047 82 Linux Swap / Solaris
Warning: Partition 3 does not end on cylinder boundary.
/dev/sda1 65 314 2520157 83 Linux
Warning: Partition 1 does not end on cylinder boundary.
/dev/sda2 314 563 2000092 83 Linux
Warning: Partition 2 does not end on cylinder boundary.
/dev/sda4 563 486402 3902501767 83 Linux
Warning: Partition 4 does not end on cylinder boundary.
~# fsck -v /dev/sda4
fsck from util-linux-ng 2.17.2
fsck: fsck.linux_raid_member: not found
fsck: Error 2 while executing fsck.linux_raid_member for /dev/sda4
~# fsck.ext3 -v /dev/sda4
e2fsck 1.41.12 (17-May-2010)
The filesystem size (according to the superblock) is 121953183 blocks
The physical size of the device is 60976592 blocks
Either the superblock or the partition table is likely to be corrupt!
Abort? no
/dev/sda4 contains a file system with errors, check forced.
Pass 1: Checking inodes, blocks, and sizes
Error reading block 88069664 (Invalid argument) while getting next inode from scan. Ignore error? no
Error while scanning inodes (54312961): Can’t read next inode
e2fsck: aborted
please help me …