How to list folders starting with a dot on Linux. This is very useful.

This is how to list all directories starting with a . on Linux. This is a very useful Linux trick. ┌──(john㉿DESKTOP-PF01IEE)-[~] └─$ ls -ld .*/ drwxr-xr-x 11 root root 4096 Feb 12 09:02 ../ drwxr-xr-x 21 john john 4096 Jun 15 15:58 ./ drwx—— 3 john john 4096 Feb 8 07:38 .BurpSuite/ drwx—— 7 john … Read more

Setting defaults for new users on a Linux system.

Setting defaults for new users on a Linux system To set defaults for new users on your Linux system, the /etc/skel folder will come into play. You may place the .bash_profile, .bashrc & .bash_logout files that set defaults for the user such as the BASH shell prompt, and the logout and login options. This is … Read more