Re: Truncated Filesystem

From: Joshua Baker-LePain
Date: Fri Sep 28 2007 - 22:15:22 EST


On Fri, 28 Sep 2007 at 8:49pm, Benjamin Carr wrote

What kind of partition table is it? MS-DOS partition tables have a 2 TB
limit.

Hadn't thought of that, doesn't look good.
-Ben

sudo fdisk -l /dev/sdc1
benc's password:

Issue number one -- don't use fdisk, as it doesn't support devices that big. Use parted instead:

parted /dev/sdc
mklabel gpt
mkpart primary ext2 0 11TB
quit

where you may have to sub some other value for the "11TB" in the mkpart line -- I forget the exact syntax.

--
Joshua Baker-LePain
QB3 Shared Cluster Sysadmin
UCSF
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/