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
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
KDE Plasma 5.27 Beta is Ready for Testing
The latest beta iteration of the KDE Plasma desktop is now available and includes some important additions and fixes.
-
Netrunner OS 23 Is Now Available
The latest version of this Linux distribution is now based on Debian Bullseye and is ready for installation and finally hits the KDE 5.20 branch of the desktop.
-
New Linux Distribution Built for Gamers
With a Gnome desktop that offers different layouts and a custom kernel, PikaOS is a great option for gamers of all types.
-
System76 Beefs Up Popular Pangolin Laptop
The darling of open-source-powered laptops and desktops will soon drop a new AMD Ryzen 7-powered version of their popular Pangolin laptop.
-
Nobara Project Is a Modified Version of Fedora with User-Friendly Fixes
If you're looking for a version of Fedora that includes third-party and proprietary packages, look no further than the Nobara Project.
-
Gnome 44 Now Has a Release Date
Gnome 44 will be officially released on March 22, 2023.
-
Nitrux 2.6 Available with Kernel 6.1 and a Major Change
The developers of Nitrux have officially released version 2.6 of their Linux distribution with plenty of new features to excite users.
-
Vanilla OS Initial Release Is Now Available
A stock GNOME experience with on-demand immutability finally sees its first production release.
-
Critical Linux Vulnerability Found to Impact SMB Servers
A Linux vulnerability with a CVSS score of 10 has been found to affect SMB servers and can lead to remote code execution.
-
Linux Mint 21.1 Now Available with Plenty of Look and Feel Changes
Vera has arrived and although it is still using kernel 5.15, there are plenty of improvements sure to please everyone.