2008-04-22 14:57:03 +00:00
|
|
|
GPARTED
|
2010-12-12 18:17:35 +00:00
|
|
|
=======
|
2008-04-25 15:51:08 +00:00
|
|
|
Gparted is the Gnome Partition Editor for creating, reorganizing, and
|
|
|
|
deleting disk partitions.
|
2008-04-22 14:57:03 +00:00
|
|
|
|
2008-04-25 15:51:08 +00:00
|
|
|
A hard disk is usually subdivided into one or more partitions. These
|
|
|
|
partitions are normally not re-sizable (making one smaller and the
|
|
|
|
adjacent one larger.) Gparted makes it possible for you to take a
|
|
|
|
hard disk and change the partition organization, while preserving the
|
|
|
|
partition contents.
|
2004-09-19 20:24:53 +00:00
|
|
|
|
2008-04-25 15:51:08 +00:00
|
|
|
More specifically, Gparted enables you to create, destroy, resize,
|
|
|
|
move, check, label, and copy partitions, and the file systems
|
|
|
|
contained within. This is useful for creating space for new operating
|
|
|
|
systems, reorganizing disk usage, and mirroring one partition with
|
|
|
|
another (disk imaging).
|
2004-09-19 20:24:53 +00:00
|
|
|
|
2008-04-25 15:51:08 +00:00
|
|
|
Gparted can also be used with storage devices other than hard disks,
|
|
|
|
such as USB flash drives, and memory cards.
|
2008-04-22 14:57:03 +00:00
|
|
|
|
2010-12-12 18:17:35 +00:00
|
|
|
Visit http://gparted.org for more information.
|
2008-04-22 14:57:03 +00:00
|
|
|
|
|
|
|
|
2008-04-25 15:51:08 +00:00
|
|
|
NEWS
|
|
|
|
----
|
|
|
|
Information about changes to this release, and past releases can be
|
|
|
|
found in the file:
|
|
|
|
NEWS
|
2008-04-22 14:57:03 +00:00
|
|
|
|
|
|
|
|
2008-04-25 15:51:08 +00:00
|
|
|
INSTALL
|
|
|
|
-------
|
2008-04-26 20:20:54 +00:00
|
|
|
a. Pre-built Binary
|
|
|
|
|
|
|
|
Many GNU/Linux distributions already provide a pre-built binary
|
|
|
|
package for GParted. Instructions on how to install GParted on
|
|
|
|
some distributions is given below:
|
|
|
|
|
2010-12-12 18:17:35 +00:00
|
|
|
(K)Ubuntu or Debian
|
|
|
|
-------------------
|
2008-04-26 20:20:54 +00:00
|
|
|
sudo apt-get install gparted
|
|
|
|
|
|
|
|
Fedora
|
|
|
|
------
|
|
|
|
su -
|
|
|
|
yum install gparted
|
|
|
|
|
|
|
|
b. Building from Source
|
|
|
|
|
|
|
|
Building Gparted from source requires that several dependencies are
|
|
|
|
installed. These include:
|
|
|
|
g++
|
|
|
|
e2fsprogs
|
|
|
|
parted
|
|
|
|
gtkmm24
|
|
|
|
gettext
|
2008-09-15 17:23:11 +00:00
|
|
|
gnome-doc-utils - required if help documentation is to be built
|
2008-04-26 20:20:54 +00:00
|
|
|
|
|
|
|
On (K)Ubuntu, these dependencies may be obtained by running the
|
|
|
|
following command;
|
|
|
|
sudo apt-get install build-essential e2fsprogs uuid uuid-dev \
|
2008-10-08 21:18:21 +00:00
|
|
|
gnome-common libparted-dev libgtkmm-2.4-dev \
|
2010-05-21 15:27:56 +00:00
|
|
|
libdevmapper-dev gnome-doc-utils
|
2008-04-26 20:20:54 +00:00
|
|
|
|
|
|
|
On Fedora, you will need to run (as root);
|
|
|
|
yum install gtkmm24-devel parted-devel e2fsprogs-devel gettext \
|
2011-11-13 00:03:23 +00:00
|
|
|
'perl(XML::Parser)' desktop-file-utils libuuid-devel \
|
|
|
|
gnome-doc-utils rarian-compat
|
|
|
|
yum groupinstall 'Development Tools'
|
2008-04-26 20:20:54 +00:00
|
|
|
|
2011-02-26 17:18:09 +00:00
|
|
|
On openSUSE, these dependencies may be obtained by running the
|
|
|
|
following command;
|
|
|
|
sudo zypper install automake autoconf gcc-g++ make gnome-common \
|
|
|
|
libuuid-devel parted-devel gtkmm2-devel \
|
|
|
|
gnome-doc-utils-devel
|
|
|
|
|
2008-09-15 17:23:11 +00:00
|
|
|
Briefly, the shell commands `./configure; make; make install' should
|
2011-02-22 20:22:49 +00:00
|
|
|
configure, build, and install this package.
|
|
|
|
|
|
|
|
If you wish to build this package without the help documentation use
|
|
|
|
the --disable-doc flag:
|
2009-02-09 17:46:09 +00:00
|
|
|
E.g., ./configure --disable-doc
|
2011-02-22 20:22:49 +00:00
|
|
|
|
2011-11-13 00:03:23 +00:00
|
|
|
If you wish to build this package for use on a desktop that does not
|
|
|
|
support scrollkeeper use the --disable-scrollkeeper flag:
|
|
|
|
E.g., ./configure --disable-scrollkeeper
|
|
|
|
|
2011-02-22 20:22:49 +00:00
|
|
|
If you wish to build this package to use native libparted /dev/mapper
|
|
|
|
dmraid support use the --enable-libparted-dmraid flag:
|
|
|
|
E.g., ./configure --enable-libparted-dmraid
|
|
|
|
|
|
|
|
Please note that more than one configure flags can be used:
|
|
|
|
E.g., ./configure --disable-doc --enable-libparted-dmraid
|
|
|
|
|
2008-04-26 20:20:54 +00:00
|
|
|
The INSTALL file contains further GNU installation instructions.
|
2008-04-22 14:57:03 +00:00
|
|
|
|
|
|
|
|
2008-04-25 15:51:08 +00:00
|
|
|
COPYING
|
|
|
|
-------
|
|
|
|
The copying conditions can be found in the file:
|
|
|
|
COPYING
|
2008-04-22 14:57:03 +00:00
|
|
|
|
|
|
|
|
2008-04-25 15:51:08 +00:00
|
|
|
DIRECTORIES
|
|
|
|
------------
|
|
|
|
compose - contains String::ucompose() function
|
2008-04-22 14:57:03 +00:00
|
|
|
|
2008-11-12 22:22:59 +00:00
|
|
|
data - contains desktop icons
|
|
|
|
|
2008-04-25 15:51:08 +00:00
|
|
|
doc - contains manual page documentation
|
2008-04-22 14:57:03 +00:00
|
|
|
|
2008-08-07 01:07:25 +00:00
|
|
|
help - contains GParted Manual and international translations
|
|
|
|
|
2008-04-25 15:51:08 +00:00
|
|
|
include - contains source header files
|
2008-04-22 14:57:03 +00:00
|
|
|
|
2008-08-07 01:07:25 +00:00
|
|
|
m4 - contains macro files
|
|
|
|
|
2008-04-25 15:51:08 +00:00
|
|
|
po - contains international language translations
|
2008-04-22 14:57:03 +00:00
|
|
|
|
2008-04-25 15:51:08 +00:00
|
|
|
src - contains C++ source code
|
2008-04-22 14:57:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
DISTRIBUTION NOTES
|
|
|
|
------------------
|
2008-04-26 20:20:54 +00:00
|
|
|
Gparted uses GNU libparted to detect and manipulate devices and partition
|
|
|
|
tables. Several optional packages provide additional file system support.
|
|
|
|
Optional packages include:
|
2008-04-22 14:57:03 +00:00
|
|
|
|
2010-10-29 15:00:41 +00:00
|
|
|
btrfs-tools
|
2008-04-22 14:57:03 +00:00
|
|
|
e2fsprogs
|
|
|
|
dosfstools
|
2008-08-07 01:07:25 +00:00
|
|
|
mtools - required to read and write FAT16/32 volume labels
|
2008-04-22 14:57:03 +00:00
|
|
|
hfsutils
|
2008-07-25 23:05:20 +00:00
|
|
|
hfsprogs
|
2008-04-22 14:57:03 +00:00
|
|
|
jfsutils
|
2009-05-16 18:15:14 +00:00
|
|
|
ntfsprogs
|
2008-04-22 14:57:03 +00:00
|
|
|
reiser4progs
|
|
|
|
reiserfsprogs
|
2011-11-10 20:12:21 +00:00
|
|
|
xfsprogs, xfsdump
|
2008-10-31 21:50:07 +00:00
|
|
|
|
2008-11-12 22:22:59 +00:00
|
|
|
NOTE: * If the vol_id command is in the search PATH, it will be used
|
|
|
|
to read linux-swap, reiser4, hfs, and hfs+ file system
|
|
|
|
volume labels.
|
|
|
|
* If the blkid command is in the search path, it will be used
|
2009-02-09 17:46:09 +00:00
|
|
|
to read file system UUIDs and labels. It is also used for
|
|
|
|
ext4 file detection.
|
2008-11-13 20:06:18 +00:00
|
|
|
blkid is part of the e2fsprogs package.
|
|
|
|
|
2009-03-14 20:02:41 +00:00
|
|
|
|
2009-11-23 19:19:14 +00:00
|
|
|
For Linux software RAID support, the following package is required:
|
|
|
|
mdadm - tool to administer Linux MD arrays
|
|
|
|
|
|
|
|
|
2009-03-14 20:02:41 +00:00
|
|
|
For dmraid support, the following packages are required:
|
|
|
|
|
|
|
|
dmsetup - removes /dev/mapper entries
|
|
|
|
dmraid - lists dmraid devices and creates /dev/mapper entries
|
|
|
|
|
2009-03-26 17:35:00 +00:00
|
|
|
For GNU/Linux distribution dmraid support, the following are required:
|
|
|
|
- kernel built with Device Mapping and Mirroring built. From menuconfig,
|
|
|
|
it is under Device Drivers -> <something> (RAID & LVM).
|
|
|
|
- dmraid drive arrays activated on boot (e.g., dmraid -ay).
|
2009-12-06 20:39:09 +00:00
|
|
|
|
|
|
|
|
2011-01-29 22:44:23 +00:00
|
|
|
For attempt data rescue for lost partitions, the following package
|
|
|
|
is required:
|
|
|
|
gpart - guesses PC-type hard disk partitions
|
|
|
|
|
|
|
|
|
2009-12-06 20:39:09 +00:00
|
|
|
Several more commands are optionally used by GParted if found on the system.
|
|
|
|
These commands include:
|
|
|
|
|
|
|
|
blkid - used to read volume labels and detect ext4 file systems
|
|
|
|
vol_id - used to read volume labels
|
2010-08-10 20:38:23 +00:00
|
|
|
udisks - used to prevent automounting of file systems
|
2009-12-06 20:39:09 +00:00
|
|
|
devkit-disks - used to prevent automounting of file systems
|
2011-01-29 22:44:23 +00:00
|
|
|
{filemanager} - used in attempt data rescue to display discovered
|
|
|
|
file systems. (e.g., nautilus, pcmanfm)
|
2009-12-06 20:39:09 +00:00
|
|
|
hal-lock - used to prevent automounting of file systems
|
2009-12-06 20:58:27 +00:00
|
|
|
gksu - used to acquire root privileges in .desktop file,
|
|
|
|
but only if available when gparted source is configured.
|
2010-05-30 18:03:51 +00:00
|
|
|
udevinfo - used in dmraid to query udev name
|
|
|
|
udevadm - used in dmraid to query udev name
|
2011-01-29 22:44:23 +00:00
|
|
|
yelp - used to display help manual
|
2009-12-06 20:58:27 +00:00
|
|
|
|