blob: 042418bc1d7bf4aafd5a86bacb47364b4456d6b4 [file] [log] [blame]
srs5694e7b4ff92009-08-18 13:16:10 -04001GPT fdisk (aka gdisk)
2by Roderick W. Smith, rodsmith@rodsbooks.com
3
4Introduction
5------------
6
7This software is intended as a (somewhat) fdisk-workalike program for
8GPT-partitioned disks. Although libparted and programs that use it (GNU
9Parted, gparted, etc.) provide the ability to handle GPT disks, they have
10certain limitations that gdisk overcomes. Specific advantages of gdisk
11include:
12
13* The ability to convert MBR-partitioned disks in-place to GPT format,
14 without losing data
15
srs5694221e0872009-08-29 15:00:31 -040016* The ability to convert BSD disklabels in-place to create GPT
17 partitions, without losing data
18
srs5694e7b4ff92009-08-18 13:16:10 -040019* The ability to specify sector-exact partition sizes
20
21* More flexible specification of filesystem type code GUIDs, which
22 GNU Parted tends to corrupt (particularly for FAT partitions)
23
24* Clear identification of the number of unallocated sectors on a
25 disk
26
27* A user interface that's familiar to long-time users of Linux
28 fdisk
29
30* The MBR boot loader code is left alone (GNU Parted tends to
31 wipe it out with every change)
32
srs5694221e0872009-08-29 15:00:31 -040033* The ability to create a hybrid MBR, which permits GPT-unaware
34 OSes to access up to three GPT partitions on the disk
35
srs5694e7b4ff92009-08-18 13:16:10 -040036Of course, gdisk isn't without its limitations. Most notably, it lacks the
37filesystem awareness and filesystem-related features of GNU Parted. You
38can't resize a partition's filesystem or create a partition with a
39filesystem already in place with gdisk, for instance. There's no GUI
40version of gdisk.
41
42Installing
43----------
44
45To compile gdisk, you must have appropriate development tools installed,
46most notably the GNU Compiler Collection (GCC) and its g++ compiler for
srs56942a9f5da2009-08-26 00:48:01 -040047C++. Uncompress the package and type "make" at the command prompt in the
srs5694e7b4ff92009-08-18 13:16:10 -040048resulting directory. The result should be a program file called gdisk. You
49can use this in place or copy the file to a suitable directory, such as
50/usr/local/sbin. You can copy the man page (gdisk.8) to /usr/local/man/man8
51to make it available.
52
53Caveats
54-------
55
56THIS SOFTWARE IS EARLY BETA SOFTWARE! IF IT WIPES OUT YOUR HARD DISK OR
57EATS YOUR CAT, DON'T BLAME ME! To date, I've tested the software mainly on
58two USB flash drives, 2 GiB and 8 GiB in size. I've also made a few minor
59tweaks to a production system with a 500 GiB hard disk and made more
60extensive changes to a handful of 80-160 GiB hard disks. I believe all
61data-corruption bugs to be squashed, but I know full well that the odds of
62my missing something are high. This is particularly true for large drives;
63I have no way of testing the software with > 2TiB drives, which will test
srs56942a9f5da2009-08-26 00:48:01 -040064the 64-bit sector pointer support. I've received user reports of success
65with >2TiB drives, though.
srs5694e7b4ff92009-08-18 13:16:10 -040066
67My main development platform is a system running the 64-bit version of
srs56942a9f5da2009-08-26 00:48:01 -040068Ubuntu 8.04. I've also tested on 64-bit OpenSuSE, 32-bit Fedora 10, 32-bit
srs5694221e0872009-08-29 15:00:31 -040069Ubuntu 6.10, 64-bit Gentoo, 32-bit PowerPC Linux, 32-bit Intel-based Mac
70OS X, and 64-bit Fedora 7.1. Problems relating to 64-bit integers on the
7132-bit Linux have been common during development and may crop up in the
72future. The Mac OS X, FreeBSD, and big-endian (PowerPC) support are new.
srs5694e7b4ff92009-08-18 13:16:10 -040073
74Redistribution
75--------------
76
77This program is licensed under terms of the GNU GPL (see the file COPYING).
78
79Acknowledgements
80----------------
81
82This code is mostly my own; however, I've used three functions from two
83other GPLed programs:
84
85- The code used to generate CRCs is taken from the efone program by
86 Krzysztof Dabrowski and ElysiuM deeZine. (See the crc32.h and
87 crc32.cc source code files.)
88
89- A function to find the disk size is taken from Linux fdisk by
90 A. V. Le Blanc.
91
92Additional code contributors include:
93
94- Yves Blusseau (1otnwmz02@sneakemail.com)
95
srs56947f244ba2009-08-18 14:22:12 -040096- David Hubbard (david.c.hubbard@gmail.com)