On any Linux system, one of the directories that will surely grow in size has to be the /home
directory. This is because system accounts (users) directories will reside in /home except root account – here users will continuously store documents and other files.
Another important directory with the same behavior is /var
, it contains log files whose size will gradually increase as the system continues to run such as log files, web files, print spool files etc.
When these directories fill up, this can cause critical problems on the root file system resulting into system boot failure or some other related issues. However, sometimes you can only notice this after installing your system and configuring all directories on the root file system/partition.
Suggested Read: Linux Directory Structure and Important Files Paths Explained
In this guide, we will show how to move the home directory into a dedicated partition possibly on a new storage disk in Linux.
Installing and Partitioning a New Hard Disk in Linux
Before we proceed any further, we’ll briefly explain how to add a new hard disk to an existing Linux server.
Note: If you already have a partition ready for the operation, move to the section which explains the steps for moving /home
directory in a partition of its own below.
We’ll assume you have attached the new disk to the system. On a hard disk, the number of partitions to be created as well as the partition table is normally determined by disk label type and the first few bytes of space will define the MBR (Master Boot Record) which stores the partition table as well as the boot loader (for bootable disks).
Although there are many label types, Linux only accepts two: MSDOS MBR (516 bytes in size) or GPT (GUID Partition Table) MBR.
Let’s also assume that the new new hard disk (/dev/sdb of size 270 GB used for the purpose of this guide, you probably need a bigger capacity on a server for large user base.
First you need to set the disk label type using fdisk or parted; we have used GPT label name in this example.
# parted /dev/sdb mklabel gpt
Note: fdisk only supports MSDOS MBR for now and parted supports both labels.
Now create the first partition (/dev/sdb1) with size 106GB. We have reserved 1024MB of space for the MBR.
# parted -a cylinder /dev/sdb mkpart primary 1074MB 107GB
Explaining the command above:
- a – option to specify the partition alignment.
- mkpart – sub command to create the partition.
- primary – sets partition type as primary on the hard disk (other values are logical or extended).
- 1074MB – beginning of partition.
- 107GB – end of partition.
Now check the free space on the disk as follows.
# parted /dev/sdb print free
We will create another partition (/dev/sdb2) with size 154GB.
# parted -a cylinder /dev/sdb mkpart primary 115GB 268GB
Next, let’s set the filesystem type on each partition.
# mkfs.ext4 /dev/sdb1 # mkfs.xfs /dev/sdb2
To view all storage devices attached on the system, type.
# parted -l

Moving Home Directory into a Dedicated Partition
Now we have added the new disk and created the necessary partition; it’s now time to move the home folder into one of the partitions. To use a fileysystem, it has to be mounted to the root filesystem at a mount point: the target directory such as /home.
First list the filesystem usage using df command on the system.
# df -l

We will start by creating a new directory /srv/home where we can mount /dev/sdb1 for the time being.
# mkdir -p /srv/home # mount /dev/sdb1 /srv/home
Then move the content of /home into /srv/home (so they will be practically stored in /dev/sdb1) using rsync command or cp command.
# rsync -av /home/* /srv/home/ OR # cp -aR /home/* /srv/home/
After that, we will find the difference between the two directories using the diff tool, if all is well, continue to the next step.
# diff -r /home /srv/home
Afterwards, delete all the old content in the /home as follows.
# rm -rf /home/*
Next unmount /srv/home.
# umount /srv/home
Finally, we have to mount the filesystem /dev/sdb1 to /home for the mean time.
# mount /dev/sdb1 /home # ls -l /home
The above changes will last only for the current boot, add the line below in the /etc/fstab to make the changes permanent.
Use following command to get the partition UUID.
# blkid /dev/sdb1 /dev/sdb1: UUID="e087e709-20f9-42a4-a4dc-d74544c490a6" TYPE="ext4" PARTLABEL="primary" PARTUUID="52d77e5c-0b20-4a68-ada4-881851b2ca99"
Once you know the partition UUID, open /etc/fstab file add following line.
UUID=e087e709-20f9-42a4-a4dc-d74544c490a6 /home ext4 defaults 0 2
Explaining the field in the line above:
- UUID – specifies the block device, you can alternatively use the device file /dev/sdb1.
- /home – this is the mount point.
- etx4 – describes the filesystem type on the device/partition.
- defaults – mount options, (here this value means rw, suid, dev, exec, auto, nouser, and async).
- 0 – used by dump tool, 0 meaning don’t dump if filesystem is not present.
- 2 – used by fsck tool for discovering filesystem check order, this value means check this device after root filesystem.
Save the file and reboot the system.
You can run following command to see that /home directory has been successfully moved into a dedicated partition.
# df -hl

That’s It for now! To understand more about Linux file-system, read through these guides relating to filesystem management on Linux.
- How to Delete User Accounts with Home Directory in Linux
- What is Ext2, Ext3 & Ext4 and How to Create and Convert Linux File Systems
- 7 Ways to Determine the File System Type in Linux (Ext2, Ext3 or Ext4)
- How to Mount Remote Linux Filesystem or Directory Using SSHFS Over SSH
In this guide, we explained you how to move the /home directory into a dedicated partition in Linux. You can share any thoughts concerning this article via the comment form below.
Please help I did all steps but the os won’t boot. It goes into emergency mode what do I do?
The step rm -rf /home is dangerous though, you cannot get it back. It should be mv /home /home-old -> this will backup everything at home, then if everything goes bad you can restore it.
My problem is that I believe in separating code and data. That is why I create two partitions, one for Linux and programs and a separate partition for my data. However, Linux developers insist that the home directory is in the same partition as the Linux code.
Is it even possible to get Linux to use a directory on a separate partition as the “home directory”?
Thanks for your clear and useful instructions.
I have to move my
/home
because the HDD is nearly full. I have a 1 Tb disk installed and I am preparing to partition it etc.I am confused about the partitions you create in your examples.
sdb1
andsdb2
have different file systems and I wonder why it is necessary to have two partitions.My idea was to create the whole HDD as one partition to mount as
/home
.Should I have a second partition? I don’t need one for any other purpose.
Replying to my own comment. What a loser ;)
I made a decision and flew with it. I created a partition on the new HDD that used all but the first MB of the disk. Then followed the instructions to ultimately mount it as
/home
by editing fstab.It worked. So if anyone else wondered about the partitioning you don’t need more than one.
The rsync command with options.
rsync -av
should be
rsync -av -A -X
to preserve SELinux contexts – otherwise, some distributions will fail to mount
/home
properly (or at all) after this.Also, shopt -s dotglob if using cp. Not sure if rsync does hidden files by default, I have always just enabled dotglob for it if I want it to include hidden files.
is
rm -rf home/*
not dangerous? At that time, other programs may crash or even create new directories. Should we not first mount the new drive?@Aaron
Yes, a new line was added to /etc/fstab (using the correct UUID of course). I’m no Linux expert and so not being familiar enough to repair a system that I can’t boot into of course I scrapped the installation.
It’s only a VM I’m experimenting with and I had a previous snapshot, so no great loss to me. But I still have no idea what I did wrong. I’ll have another go later.
Dammit. I missed the Reply button
@John
Please do try again and give us feedback. Many thanks for sharing your thoughts with us.
@Aaron
Brilliant. It worked this time.
I copied your procedure line by line into a LibreOffice document both to check what I was doing and for future reference, adjusting the partition name and UUID as I went.
This time I noticed that LO inserted a space after the equals sign in the /etc/fstab line when I pasted the UUID which I then had to delete. I think this is what messed me up last time.
e.g.
UUID= bdaa2...
Regards.
@John
Great! Many thanks for getting back to us. We are grateful for the feedback.
I do not want to move
/home
, I want to move/home/robert
. I believe separating code and data is a GOOD THING. So I have partitioned my disk so that Ubuntu MATE gets one partition and all my data is in a different partition.This means that when I have to reinstall Ubuntu MATE (Like if release 19.10 does not work at all), none of my data is affected and third party code is untouched. My system uses
/media/robert
as the mount point.Unfortunately, too many Linux programs think that separating code and data is a BAD THING, so they put all their code in my
/home/robert
directory. Is it possible to get Unix to use /media/robert/Shared/Users/robert as my home directory?You can always use symlink
It seems to be missing something. did not work for me when I rebooted I could not get into mint at all. rereading I still don’t understand a lot.
Same here. Everything fine until reboot.
@John
Did you mount the new partition well?
@Aaron
I can verify that it was the space after the
UUID=
infstab
that was causing the problem. I cloned the snapshot of the failed VM and edited thefstab
file in a live CD. It work perfectly.