Linux Disable Mounting of Uncommon Filesystem

To disable the mounting of uncommon filesystems on a Linux system, you can modify the /etc/modprobe.d/modprobe.conf file. Here are the steps to disable the mounting of uncommon filesystems: Open the /etc/modprobe.d/modprobe.conf file with a text editor, such as vi or nano. Add the following line to the file to disable the loading of uncommon filesystem … Read more

Linux / UNIX: Bash Find And Delete All Hidden Files Directories

To find and delete all hidden files and directories in a directory using Bash on Linux or UNIX, you can use the following command: find /path/to/directory -name ‘.*’ -type f -delete -o -type d -empty -delete Here’s what this command does: find is a command for searching for files and directories. /path/to/directory is the directory … Read more

Mac OS X Display Access Warnings Message For The Login Window

To display access warnings message for the login window on a Mac running macOS X, you can use the following steps: Open the “Terminal” application on your Mac. You can find it in the “Utilities” folder within the “Applications” folder. Type the following command into the Terminal and press Enter: sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText … Read more