Tips for managing Linux filesystems
SSHFS for Remote Filesystems
Mounting a filesystem locally via SSH is not rocket science with sshfs. You don't even need root privileges, after all sshfs is a FUSE:
$ sshfs tktest@192.168.56.105:/home/tktest ./sshdir/ tktest@192.168.56.105's password: $ cat /proc/mounts | grep ssh tktest@192.168.56.105:/home/tktest /home/user/tmp/sshdir \ fuse.sshfs rw,nosuid,nodev,relatime,user_id=1000,group_id=1000 0 0
In the preceding commands, an sshfs call is sufficient to mount the /home/tktest
directory locally on the server 192.168.56.105
. You can work with the target directory as with any other normal directory; the difference is that it is actually on the remote server.
As an alternative to the featured simple block devices, you can also created stackable block devices with Linux that offer additional features, such as the Logical Volume Manager (LVM), software RAID (md-raid), the Distributed Replicated Block Device (DRBD), or Device-Mapper targets.
Table 2
Filesystems Differences
Ext3 | Ext4 | XFS | Btrfs |
|
---|---|---|---|---|
Production Ready? |
Y |
Y |
Y |
Partially |
Filesystem Tools |
2fsprogs |
e2fsprogs |
xfsprogs |
btrfs-progs |
mke2fs, resize2fs, e2fsck, tune2fs |
mkfs.xfs, xfs_growfs, xfs_repair, xfs_admin |
mkfs.btrfs, btrfs resize, btrfsck, btrfs filesystem |
||
Maximum Filesystem Size |
16 TiB |
1 EiB |
16 EiB |
16 EiB |
Maximum File Size |
2 TiB |
1 EiB |
8 EiB |
8 EiB |
Expanding on the Fly? |
Y |
Y |
Y |
Y |
Shrinking on the Fly? |
N |
N |
N |
Y |
Expanding Offline? |
Y |
Y |
N |
N |
Shrinking Offline? |
Y |
Y |
N |
N |
Discard (ATA trim) |
Y |
Y |
Y |
Y |
Metadata CRC |
Y |
Y |
Y |
Y |
Data CRC |
N |
N |
N |
Y |
Snapshots/clones/internal RAID/compression |
N |
N |
N |
Y |
Infos
- Understanding EXT4 extents: http://digital-forensics.sans.org/blog/2010/12/20/digital-forensics-understanding-ext4-part-1-extents/
- Ext4 kernel documentation https://www.kernel.org/doc/Documentation/filesystems/ext4.txt
- Ext4 data loss: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/317781/comments/45/
« Previous 1 2 3
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
-
Escuelas Linux 8.0 is Now Available
Just in time for its 25th anniversary, the developers of Escuelas Linux have released the latest version.
-
LibreOffice 7.5 has Arrived Loaded with New Features and Improvements
The favorite office suite of the Linux community has a new release that includes some visual refreshing and new features across all modules.
-
The Next Major Release of Elementary OS Has Arrived
It's been over a year since the developers of elementary OS released version 6.1 (Jólnir) but they've finally made their latest release (Horus) available with a renewed focus on the user.
-
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.