
seen from Malaysia
seen from T1

seen from Kazakhstan
seen from United States
seen from T1
seen from Romania
seen from Germany
seen from Qatar
seen from Qatar

seen from Italy

seen from Italy
seen from United Kingdom

seen from Italy

seen from Italy
seen from United States

seen from Italy

seen from New Zealand
seen from Italy

seen from United Kingdom
seen from Italy
Running linux commands in the background
Use ‘&’ to make a copy command like ‘cp A B’, complete in the background. So you’d run ‘cp A B&’
Transferring HUGE files
by compressing, splitting, transferring, recombining and decompressing
Compress and split into 70Mbyte chucks
tar -zcvf - <stuff to put in archive> | split --bytes=70m --suffix-length=4 --numeric-suffix - myarchive.tar.gz
recombine and decompress
cat myarchive.tar.* | tar -zxvf -