1
vote
1answer
59 views

GPT Partition - Used Space immediately after creating partition [duplicate]

I wanted to try out the new GPT system, and used it to partition my new HDD, with the partitions themselves using ext4. For some reason, about 1-2% of the space in each partition is already shown as ...
0
votes
2answers
142 views

Explanations of an Android image build script

I was getting one program for partitioning SD card.I have given that script below: #!/bin/sh if [ $# -lt 2 ]; then echo "example usage: $0 /dev/sdc \$ANDROID_ROOT" exit 1 fi DRIVE=$1 ...
2
votes
1answer
958 views

Unable to create logical partition with Parted

I was fiddling around with parted command on a loopback disk and tried to create some partitions using gpt part table but I keep getting Error: Unable to satisfy all constraints on the partition. when ...
1
vote
2answers
710 views

Gnu Parted Error in HardDisk of Linux?

Anyone help me, why the error getting when excuting the fdisk -l command in linux. # fdisk -l /dev/sdb WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support ...
1
vote
1answer
748 views

Can't increase partition size with GParted?

I've got an external disk with 6 partitions: 4 for linux, one storage in HFS+, and one storage in ext4. I'd like to delete the ext4 storage one and move it's resulting unallocated space into my HFS+ ...
8
votes
2answers
10k views

Create partition aligned using parted

I'm partitioning a non-SSD hard disk with parted because I want a GPT partition table. parted /dev/sda mklabel gpt Now, I'm trying to create partitions correctly aligned so I use the next command ...
2
votes
1answer
429 views

What happens to partition labels after removing a partition?

What will happen to all the remaining partition labels if I remove a single partition? For example if I have a layout that looks like this: /dev/sda1 /dev/sda2 /dev/sda3 /dev/sda4 /dev/sda5 and if ...