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...
Admin, Backup, DevOps, Linux, Unix
The most popular way of backing up your Linux system are rsync and dump. The difference is that when using dump you need to work on a full image, where the rsync allows you to access individual files. Backup using RSYNC command From your local machine: rsync -chavzP...
Admin, IT Help Desk, SQL, WordPress
There is a one line solution to change WordPress site administrator email without waiting for email confirmation. You just need to access your database using phpMyAdmin or directly through SSH and mysql -u -p -h -P -D command. Once you set and ready to run SQL,...