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
-
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.