The apropos command can help you find commands or discover some you don't yet know, but if you get the response "nothing appropriate", it might need some help. Credit: CarlosCastilla / Getty Images On Linux, the apropos command helps identify commands related to some particular term. It can be helpful in finding commands you might want to use—especially when you can’t remember their names. For example, if you couldn’t remember the command to display a calendar or put your shell to sleep for a short period of time, you could try these commands: $ apropos calendar cal (1) - display a calendar $ apropos sleep sleep (1) - delay for a specified amount of time usleep (1) - sleep some number of microseconds For some arguments, like “file”, you will get a long multi-page listing because so many Linux commands work with files. My system identifies 368 such commands. $ apropos file | wc -l 368 If you use Linux often, you may not need to be reminded about many command names. On the other hand, apropos can sometimes help users discover commands that they might not have tried before. Run the command apropos edit, for example, and you might be surprised to see a lot more than vi and nano in the commands listed. You can also type only a portion of a command name to get a listing of commands containing that substring. $ apropos xz unxz (1) - Compress or decompress .xz and .lzma files xz (1) - Compress or decompress .xz and .lzma files xzcat (1) - Compress or decompress .xz and .lzma files xzcmp (1) - compare compressed files xzdec (1) - Small .xz and .lzma decompressors xzdiff (1) - compare compressed files xzegrep (1) - search compressed files for a regular expression xzfgrep (1) - search compressed files for a regular expression xzgrep (1) - search compressed files for a regular expression xzless (1) - view xz or lzma compressed (text) files xzmore (1) - view xz or lzma compressed (text) files Nothing appropriate If you try the apropos command for obviously valid commands and keep getting the response “nothing appropriate”, you might have to make an important update to get it working again. For the most part, you should only see a response like this for commands that don’t exist or that you misspell. If you get this response repeatedly, you might need to address the problem. $ apropos cal cal: nothing appropriate. Since I hadn’t used apropos in quite a while, getting only “nothing appropriate” responses left me wondering why apropos had stopped working and when. It took a bit of head scratching and hunting around before I discovered the mandb command that allowed me to get apropos working again. The mandb command will create or update the manual page index caches, and this turned out to be what my system required. I ran the command as root and then watched as the output filled my screen and kept going. # mandb Processing manual pages under /usr/man... Updating index cache for path `/usr/man/man1’. Wait...mandb: warning: /usr/man/m an1/grub2-emu.1.gz: whatis parse for grub2-emu(1) failed mandb: warning: /usr/man/man1/grub2-mount.1.gz: whatis parse for grub2-mount(1) failed Updating index cache for path `/usr/man/mann’. Wait...done. Checking for stray cats under /usr/man... Checking for stray cats under /var/cache/man/fsstnd... Processing manual pages … One of the intriguing things that I noticed in the mandb output was the many references to “stray cats”. These would be files created by the catman command that use a different structure than is used for man pages, making displaying them faster than displaying the original man pages. The mandb command checks for them whether or not they exist on your system. Wrap-Up The apropos command is helpful when you’re searching for commands you can’t remember or looking to discover some that you might not have used before. Fortunately, the “nothing appropriate” problem is easy to resolve and there really aren’t a lot of stray cats hiding in your Linux system. Related content how-to How to find files on Linux There are many options you can use to find files on Linux, including searching by file name (or partial name), age, owner, group, size, type and inode number. By Sandra Henry Stocker Jun 24, 2024 8 mins Linux opinion Linux in your car: Red Hat’s milestone collaboration with exida With contributions from Red Hat and critical collaborators, the safety and security of automotive vehicles has reached a new level of reliability. By Sandra Henry Stocker Jun 17, 2024 5 mins Linux how-to How to print from the Linux command line: double-sided, landscape and more There's a lot more to printing from the Linux command line than the lp command. Check out some of the many available options. By Sandra Henry Stocker Jun 11, 2024 6 mins Linux how-to Converting between uppercase and lowercase on the Linux command line Converting text between uppercase and lowercase can be very tedious, especially when you want to avoid inadvertent misspellings. Fortunately, Linux provides a handful of commands that can make the job very easy. By Sandra Henry Stocker Jun 07, 2024 5 mins Linux PODCASTS VIDEOS RESOURCES EVENTS NEWSLETTERS Newsletter Promo Module Test Description for newsletter promo module. Please enter a valid email address Subscribe