Linux shrink partition size

How do I resize partitions using command line without using a GUI on a server?

I only have access to the server via a terminal and I can’t use graphical tools such as GParted!
I want to create a new partition from a part of the root (about 768mb) for swap.

# df -h Filesystem Size Used Avail Use% Mounted on /dev/vda 20G 1.3G 18G 7% / udev 10M 0 10M 0% /dev tmpfs 199M 4.9M 194M 3% /run tmpfs 100M 12K 100M 1% /run/user tmpfs 5.0M 4.0K 5.0M 1% /run/lock 

3 Answers 3

You cannot shrink/edit a partition if any of the partition on the storage device is mounted. So in order to unmount and edit the root filesystem, the OS need to be shutdown. Then boot into a live system and edit the partition as described in other answers.

Alternative solution : swap file

As an alternative to creating an entire partition, a swap file offers the ability to vary its size on-the-fly, and is more easily removed altogether. Swap file can be hot plugable. i.e can be added and removed without unmounting/turning off the OS.

    Create a 512 MB file called /swapfile . This will be our swap file.

fallocate -l 512M /swapfile 
dd if=/dev/zero of=/swapfile bs=1M count=512 
/swapfile none swap defaults 0 0 

I think this is the most easiest and efficient answer =)! Are there implications in using a file instead of a partition though?

Slightly Low Performance if file is fragmented. There is no performance advantage to either a contiguous swap file or a partition, both are treated the same way.

I think this is the best solution. As you are not formatting, shrinking or otherwise changing partition(tables), there is no risk of data-loss.

First of all is important to know that you cannot resize to shrink your root partition if you are using it (This is called online shrinking). You can only grow it online. This is supported by the resize2fs command. I will assume the following:

  • You don’t want to loose your information on the root partition.
  • You don’t have physical access to the hard drive in order to use a LiveCD. This can apply to a virtual environment or a remote one. In the case of a virtual one you can still manage to boot from a LiveCD if you set the VM to boot from a LiveCD. This is assumming the VM supports outputting the Desktop GUI from where you would run the Gparted app to resize easily. But since this is less likely I assume you can not.

There are 2 type of partitions that you can resize, the LVM partitions or Logical Volume Manager partitions which support Online resizing (Shrinking/Growing) since the creation of the galaxy and the standard partitions most of us use. Right now the only one that has almost 100% support of complete online resizing (Shrink/Grow) is the btrfs filesystem (Which is still in development). I will explain how to do the normal partitions most of us use in the ext4 filesystem.

Читайте также:  Сколько всего существует линуксов

Resizing (Growing) the Partition

To grow your partition you can do it with the root mounted. To do this simply do:

Provided you already have the empty space ready to be merged. Afterwards I recommend rebooting for the changes to take effect correctly. The command above would resize to the maximum permitted. If you wish to resize to a particular size then simply add the size at the end:

sudo resize2fs /dev/sda1 25G 

Note that if you want to specify 25.4 GB, you can not use the «.». you would need to go down one unit of measure. In this case from GB to MB, so it would look like this:

sudo resize2fs /dev/sda1 25400M 

This way you will have a partition of 25.4G

Resizing (Shrinking) the Partition

Shrinking the partition is a two step process which involves:

  • Reducing the size of the file system by the amount needed.
  • Reducing the size of the underlying block device to match that of the file system.

Before reducing the capacity of a file system you need to reduce the size of the block device (Which can be a partition or a logical volume). Since this is not available for any of the ext* file systems you won’t be able to shrink it from 20 GB to 19.5 GB to create the 500 MB swap one.

Even Ext4 does not support online shrinking. If you try to do it you will get the following:

enter image description here

Your only bet as far as I know is to either:

enter image description here

  • Install another Ubuntu version on the same server (On another partition) that can then be used to shrink the root partition of the original Ubuntu Server.
  • Install Ubuntu server from scratch with the size you actually want
  • Use the Ubuntu Server Live Image to resize the partition. For this case, you will need to get to this screen: And choose the Resize option as shown in the image above. From there you will select what the new size will be since from here you can unmount the unit and shrink it if you want.

As an additional help here is the gparted filesystem suppor http://gparted.org/features.php which gives a very detailed list of supported ones and includes if they have full online resizing. Btrfs is amongst them.

I have added a link at the bottom. The kernel also needs to support this if the filesystem is to resize online correctly.

Thank you @Mr.Hyde. There were several issues with Workstation 10 and even 11. I would recommend 12 and for Ubuntu I would also update either to the latest or the new LTS because there were also some issues. In my case I have VMware workstation 12.0.1 and Ubuntu 15.10 64 bit.

@ack_stoverflow that would be incorrect in the man pages. I have many times used resize2fs for just that. Resizing the partition. I think they really need to update that man page. There are limitations depending on the filesystem like stated in the answer but resizing is doable nonetheless.

The answer depends on whether you can unmount the partition to shrink, or not. In your case, you probably cannot unmount the partition. In Linux (UNIX/MAC OS), mounting a partition refers to using the file system and mapping it to the mount point (in your case / ). Unmounting means that you stop using the filesystem, and remove the mapping to the mount point. You cannot unmount the filesystem containing your running OS.

Читайте также:  Linux line number grep

If the partition can be unmounted

Lets assume you want to shrink a 200GB ext4 partition on /dev/sda4 mounted to /data . It currently contains music and movies or similar, so you can temporarily unmount it. You want to create a 4GB swap.

sudo resize2fs /dev/sda4 196G 

to resize the ext4 filesystem to 196 GB, assuming that there is enough space. Now, you have to shrink the partition. I currently belive you need to use cfdisk to delete the existing partition, and recreate a smaller partition in its place. You can then also create a new partition for the swap.

will give you a text-based gui to inspect your partition table. I would recommend you to print the partition table to a file or screen at that point, and take note of the current configuration as backup. You can then select /dev/sda4 and delete the partition. In its place, free space will be displayed. Use new to create a new partition with 196 GB in its place, and set the type to ext4. Then, move to the trailing free space and create the 4GB swap partition with type swap . Note: I did not test these commands, as I can’t play around with my / at the moment.

If the partition cannot be unmounted

You cannot shrink a mounted ext3/4 partition (see manpage of resize2fs ). As you are running your OS from / , you cannot unmount / . That means you have to boot another OS (e.g. from USB key) to do the changes.

In your case, it is a remote server (on KVM most likely), so you might not be able to boot from USB/ a live OS image. There might be other ways to change the partitioning from your vServer provider through an admin GUI. I believe that is your best bet currently.

Источник

How to Resize a Partition using fdisk

Disclaimer: The following information has been provided by Red Hat, but is outside the scope of our posted service level agreement and support procedures. The information has been tested however is provided as-is and any configuration settings or installed applications made from the information in this article could make your Operating System unsupported by Red Hat Support Services and non-recoverable. The intent of this article is to provide you with information to accomplish your system needs. Use the information in this article at your own risk.

On disks with a GUID Partition Table (GPT), using the parted utility is recommended, as fdisk GPT support is in an experimental phase.

Procedure

1. Unmount the partition:

2. Run fdisk disk_name.

~]# fdisk /dev/vdb Welcome to fdisk (util-linux 2.23.2). Changes will remain in memory only, until you decide to write them. Be careful before using the write command. Command (m for help): 

3. Check the partition number you wish to delete with the p. The partitions are listed under the heading “Device”.

Command (m for help): p Disk /dev/vda: 407.6 GiB, 437629485056 bytes, 854745088 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: dos Disk identifier: 0x5c873cba Partition 2 does not start on physical sector boundary. Device Boot Start End Blocks Id System /dev/vda1 * 2048 1026047 512000 83 Linux /dev/vda2 1026048 1640447 307200 8e Linux LVM 

4. Use the option d to delete a partition. If there is more than one, fdisk prompts for which one to delete.

Command (m for help): d Partition number (1,2, default 2): 2 Partition 2 has been deleted. 

5. Use the option n to create a new partition. Follow the prompts and ensure you allow enough space for any future resizing that is needed. It is possible to specify a set, human-readable size instead of using sectors if this is preferred.

Note: It is recommended to follow fdisk’s defaults as the default values (for example, the first partition sectors) and partition sizes specified are always aligned according to the device properties.

Warning: If you are recreating a partition in order to allow for more room on a mounted file system, ensure you create it with the same starting disk sector as before. Otherwise the resize operation will not work and the entire file system may be lost.

Command (m for help): n Partition type: p primary (1 primary, 0 extended, 3 free) e extended Select (default p): *Enter* Using default response p. Partition number (2-4, default 2): *Enter* First sector (1026048-854745087, default 1026048): *Enter* Last sector, +sectors or +size (1026048-854745087, default 854745087): +500M Created a new partition 2 of type 'Linux' and of size 500 MiB. 

6. Check the partition table to ensure that the partitions are created as required using the p option.

Command (m for help): p Disk /dev/vda: 407.6 GiB, 437629485056 bytes, 854745088 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: dos Disk identifier: 0xf6e2b6cb Device Boot Start End Blocks Id System /dev/vda1 * 2048 1026047 512000 83 Linux /dev/vda2 1026048 2050047 512000 8e Linux LVM 

7. Write the changes with the w option when you are sure they are correct.

Important: Errors in this process that are written could cause instability with the selected file system.

8. Run fsck on the partition.

~]# e2fsck /dev/vdb1 e2fsck 1.41.12 (17-May-2010) Pass 1:Checking inodes, blocks, and sizes Pass 2:Checking directory structure Pass 3:Checking directory connectivity Pass 4:Checking reference counts Pass 5:Checking group summary information ext4-1:11/131072 files (0.0% non-contiguous),27050/524128 blocks 

9. Finally, if you need to increase or decrease the file system, refer to the How to Shrink an ext2/3/4 File System with resize2fs, or the How to Grow an ext2/3/4 File System with resize2fs.

Читайте также:  Лучшие ос на базе линукс

If you don’t need to increase or decrease the file system, mount the partition.

Источник

Оцените статью
Adblock
detector