First, backup the existing sources.list file:

sudo cp /etc/apt/sources.list{,.backup}

To find the best APT archive mirror, use apt-select. Apt-sel...

Continue reading...

Find

find / -size +50M -type f -exec du -h {} \; | sort -nr | less
Find large files. Us less for easer reading.

find /box/Ark/ -size +10M -type f...

Continue reading...