Admin, Bash, Direct Admin, IT Help Desk, Linux, Linux CLI
There easy way to find large folders on Linux is to use du command. See the example commands: sudo find / -xdev -type f -size +1000M -exec du -sh {} \; The above command list all files larger than 1000M with it size. du -h -x / | sort -h -r | head -10 This command...
IT Help Desk, Linux, Mac, Networking, Windows
If you think that your network connection have an issue, and you don’t know what cause the issue, you can run some simple commands to exclude some common problems. If you think that the problem is caused by your network card, you can run a simple ping command...