Tag Archives: AIX

RSYNC Examples in AIX

Backing up data using rsync command rsync is a great tool for backing up and restoring files. I’ll use some example to explain on how it works. Example of the remote server and folder that needs to be backup or … Continue reading

Posted in OS-AIX | Tagged | Leave a comment

How to list the most biggest directory on AIX

du command – To list the most biggest directory To list the five most biggest directory, you have to perform the command below: du -sk ./* | sort -rn | head -5 Output: $ du -sk ./* | sort -rn … Continue reading

Posted in OS-AIX | Tagged | Leave a comment