Hacker News new | ask | show | jobs
by brazzledazzle 3414 days ago
I wonder if Linux can mimic the technique Microsoft uses to grow volumes and filesystems on the fly. It's something I've missed on the occasion. It's pretty slick.
3 comments

A number of Linux filesystems support online resize. See this handy chart: https://en.wikipedia.org/wiki/Comparison_of_file_systems#Res...
All my VMs have a separate /boot and ext4 as / (xfs would work, too).

With this setup - using KVM, mind you - I can change the disk size of the VM and resize the / filesystem inside by just using resize2fs, no need to reboot, umount or anything else.

The impression I got a long time ago was that it's potentially unsafe. Is that old information?
I have not read that anywhere, I did it many times without data loss or other issues. You just need to use a relatively recent distro (Centos 6 +).

If you use xfs, watch out, you can grow a fs, but not shrink it - which is why I use ext4 when I want more flexibility.

It depends on the filesystem but yes, it can.