Partitioning your HD using Gparted/KDE Partition Manager

WARNING: for disk naming Please refer to UUID, Partition Labelling and fstab, as by default aptosid uses UUID
On a Live-ISO a password is not set. Therefore use sudo then press 'enter'. See: Live Mode

Resizing the NTFS partition requires you to reboot the system immediately! DON'T DO any other operations on this partition before the reboot, otherwise you will get errors. Please read this.

Always back-up your data!

Basics

A partition must have a filesystem. Linux knows different filesystems to use. Ext4 is the recommended format for aptosid. ext2 is handy as a storage format as an MS Windows™ driver is available for data-swapping. Ext2 Installable File System For MS Windows.

For normal use we recommend the ext4 file system, it is the default file system for aptosid .

Using KDE Partition Manager & Gparted

Creating and managing partitions is not something that is typically done every day. Therefore, a good idea is to read this guide once, to get comfortable with the concepts and some of the panels that will appear. The following assumes that you are using a live-iso . Should you be hard disk installed <sudo> will not work, refer to About Xapps whilst in X as root .

KDE Partition Manager, if installed on the live-iso - run in a terminal:

sudo partitionmanager

Gparted, if installed on the live-so - run in a terminal:

sudo gparted
Gparted will you let create and see GPT disks.

If you need to partition a USB drive, (or SD and SDXC cards), whilst hard disk installed you will need to be root. Refer to About Xapps whilst in X as root else use the commandline tools cfdisk or gdisk.

 
The following screenshots are of Gparted. KDE Partition Manager behaves in much the same manner.

NTFS partition Resizing

Resizing the NTFS partition requires you to reboot the system immediately! DON'T DO any other operations on this partition before the reboot, otherwise you will get errors.

Full GParted documentation: To read the full documentation including, How-To copy partitions please go to GParted

Writing to NTFS partitions with ntfs-3g

Be warned: Whilst the ntfs-3g is stated to be 'stable', never use it without external backup, and of course not on production systems! If you do, it's your fault if your data gets lost, so use at your own risk!

Open a shell and enter the following commands:See Partitioning your HD - Disk Naming

su
apt-get update && apt-get install ntfs-3g
umount /media/xdxx
mount -t ntfs-3g /dev/disk/by-uuid/xxyyzz[etc] /media/xdxx
To get out of the konsole type: exit

An example to add ntfs to /etc/fstab after installing ntfg-3g for a permanent mount point is :

 UUID=486E97C46E97A8E8                         /media/disk3part1    ntfs         defaults  0    0

Now your NTFS Volume should be mounted rw and you should be able to store data on it. But again, be warned! It is not recommended for use on a daily basis.

exfat

exfat is a proprietary file system covered by patents held by Microsoft ™ and commonly found on SDXC cards. To mount/read/write to the file system, simply install the exfat-fuse package:

apt-get update && apt-get install exfat-fuse
Content last revised 17/09/2013 1110 UTC