Checking for broken links in directory structures
FSlint
The GUI-based FSlint [3] tool, which is based on the findbl
command-line tool (in the fslint package) belongs in the same category as symlinks
. If you call findbl
without any other parameters (or -d
), it searches the current directory for broken links and prints the matches one by one.
Listing 9 shows the result of the call, which is practically identical to those from Listing 2 and Listing 8. The behavior of findbl
becomes clear after a closer look: It is simply a shell script that relies on find
for searching.
Listing 9
findbl
01 $ /usr/share/fslint/fslint/findbl . 02 project/version2/data/dataset3 -> project/version1/data/dataset3
rmlint and chase
I combined the rmlint
[4] and chase
[5] tools as a final option. (Shredder, rmlint
's graphical front end, looked really great on the rmlint
website, but I could not reproduce it on Debian GNU/Linux 11.)
Similar to FSlint, rmlint
aims to find and clean up inconsistencies in entries in the filesystem, including detecting broken links. You can see the call to do this in line 1 of Listing 10.
Listing 10
rmlint and chase
01 $ rmlint -T bl -o pretty:stdout . 02 $ chase old 03 /project/version1
The -T
switch lets you select what rmlint
will look for; bl
is the abbreviation for "broken links." The -o
option determines the output format, and the pretty:stdout
value gives you a prettified display. Figure 2 shows a sample call in which rmlint
detects two broken links (and that's how it's supposed to be).
The chase
tool also performs an exciting task: It tracks down the file to which a symbolic link actually points. It returns 1
in case of an error if the reference target does not exist. Line 2 in Listing 10 shows the call to the old
reference from our example, and the result is the filename.
Avoiding Mistakes
How do you prevent the occurrence of broken links in the first place? Basically, the only advice here is to be more careful because (apart from the filesystem) there is no place where all the links are stored. I'm not aware of a service that checks in the background to make sure that links remain intact and warns you before you break a link.
It makes sense to check, with any of the tools discussed in this article, to see if symbolic links for a file exist before proceeding to delete the file. If you only have access to find
and readlink
, follow the steps shown in Listing 11. The call lists both components – the link and the link target – side by side. To do this, find
uses the -exec
option to echo the name and then display the link destination determined via readlink
.
Listing 11
find and readlink
$ find . -type l -exec echo -n {} "-> " ';' -exec readlink {} ';' ./project/version2/data/dataset3 -> project/version1/data/dataset3 ./project/old -> project/version1 ./project/current -> project/version2
Keep in mind that symbolic links can cross filesystem boundaries. Your only option is to check everything that is mounted in the filesystem.
« Previous 1 2 3 4 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
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.