Tips for managing Linux filesystems
Expanding and Shrinking
I recommend making a backup prior to expanding or shrinking. If problems arise unexpectedly, a backup reduces the risk of data loss. You can expand an Ext4 filesystem in an LVM environment, such as in this example, directly in a single step using the lvextend
command.
The prerequisite is that the corresponding LVM volume group still has enough free disk space. The -r
parameter means that, after expanding the LVM logical volume, the Ext4 resize2fs
command is executed and thus the filesystem grows. Expanding is also possible on the fly, that is, the filesystem can be mounted.
You can also shrink an Ext4 filesystem in an LVM environment in a single step using the lvreduce
command. Again, the -r
switch causes a resize2fs
to run before shrinking the LVM logical volume. Shrinking is only possible offline; the filesystem must not be mounted:
umount /mnt/ext4fs lvreduce -L -10G -r /dev/vg00/ext4fs
Customizing Ext4 with tune2fs
With the Ext4 tune2fs tool, you can view and tweak all the adjustable parameters of an Ext4 filesystem. The -l
switch shows you the parameters. One point of interest is the reserved block count, which indicates how many blocks of the filesystem are reserved for files belonging to the root user. This information helps you ensure that the filesystem has room for writing to log files and other essential operations. By default, the reserve is five percent of the filesystem size, which makes sense for the root filesystem. For other uses, a smaller reserve is fine; on a filesystem for backups, you can set the reserve to 0 percent:
tune2fs -m 0 /dev/mapper/vg00-ext4fs
FUSE: Filesystem in Userspace
"Filesystems in Userspace" (FUSE) filesystems are an interesting option. FUSE lets users create filesystems that do without root privileges and kernel code. For a long time, this simple approach to managing a filesystem in userspace was not possible. Until FUSE hit the scene, filesystems had to be implemented in the kernel, with all the complexity that comes with kernel-level operations. FUSE is based on the kernel module fuse.ko
, which fields virtual filesystem requests, and the libfuse library, which passes the requests on to the filesystem in userspace.
If you have an innovative idea for a new filesystem, you will have an easier time programming if you use FUSE for it. FUSE supports countless API bindings: from C, through Perl and Python, to Ruby. Before you start a new FUSE project, however, take a look at existing FUSE implementations – you might find someone has already solved the problem.
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
The GNU Project Celebrates Its 40th Birthday
September 27 marks the 40th anniversary of the GNU Project, and it was celebrated with a hacker meeting in Biel/Bienne, Switzerland.
-
Linux Kernel Reducing Long-Term Support
LTS support for the Linux kernel is about to undergo some serious changes that will have a considerable impact on the future.
-
Fedora 39 Beta Now Available for Testing
For fans and users of Fedora Linux, the first beta of release 39 is now available, which is a minor upgrade but does include GNOME 45.
-
Fedora Linux 40 to Drop X11 for KDE Plasma
When Fedora 40 arrives in 2024, there will be a few big changes coming, especially for the KDE Plasma option.
-
Real-Time Ubuntu Available in AWS Marketplace
Anyone looking for a Linux distribution for real-time processing could do a whole lot worse than Real-Time Ubuntu.
-
KSMBD Finally Reaches a Stable State
For those who've been looking forward to the first release of KSMBD, after two years it's no longer considered experimental.
-
Nitrux 3.0.0 Has Been Released
The latest version of Nitrux brings plenty of innovation and fresh apps to the table.
-
Linux From Scratch 12.0 Now Available
If you're looking to roll your own Linux distribution, the latest version of Linux From Scratch is now available with plenty of updates.
-
Linux Kernel 6.5 Has Been Released
The newest Linux kernel, version 6.5, now includes initial support for two very exciting features.
-
UbuntuDDE 23.04 Now Available
A new version of the UbuntuDDE remix has finally arrived with all the updates from the Deepin desktop and everything that comes with the Ubuntu 23.04 base.