Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

50%
+0 −0
Q&A Partially moving /home to a new partition, leaving some content behind

Karl's advice is good. I would also recommend trying LVM2 to give yourself more flexibility in future. Ubuntu flavour docs but it's essentially the same in all distros. The thing it does for you ...

posted 5d ago by polydact‭

Answer
#1: Initial revision by user avatar polydact‭ · 2025-03-27T22:17:19Z (5 days ago)
Karl's advice is good. I would also recommend trying LVM2 to give yourself more flexibility in future.

[Ubuntu flavour docs](https://documentation.ubuntu.com/server/explanation/storage/about-lvm/index.html) but it's essentially the same in all distros.

The thing it does for you is not leave you with a partition table that looks like a full board on a sliding block puzzle. You can
1. allocate 70% of a disk,
2. expand that 70% to 80%,
3. take the last 20% for a new partition,
4. then shrink the 80% back to 60% and grow the 20% to 40%.

You have to tell the filesystems before you do it, but this is one of LVM's tricks that a partition table can't do for you. There are also snapshots and other goodies.

Gotchas,
* It's not something you want to migrate an existing install to, unless perhaps when replacing storage hardware.
* You can also give yourself headaches if you use it on removable media. It works but there are extra commands to use.

However if you add a drive, or want to experiment, this is a great tool to know.