Here.
Related Posts
Sample /etc/fstab entry for EBS volume
gid= and uid= are not valid for XFS, pass “grpid=” to your fstab entry. /dev/xvdf /media/ebs/data xfs defaults,auto,noatime,noexec,grpid=1000 0 0
Here’s my first very rough draft of “LifeTips”.
https://github.com/gubatron/LifeTips#life-tips It is a short manuscript with actionable tips to live a better life, it’s there primarily as a manual for my kids when I die. Advice is grouped into 6 sections:– TIME– BODY– MIND– MONEY– WORK/LEADERSHIP (Entrepreneurship)– PEOPLE Most needed and valuable feedback is welcome. If you have corrections, additions, feel free to Create […]
command line speed test, see how fast is your server’s connection
Save the following script in a file called speed_test #!/bin/bash # Requirements # sudo apt-get install lftp iperf lftp -e ‘pget http://releases.ubuntu.com/14.04.3/ubuntu-14.04.3-desktop-amd64.iso; exit; ‘ make sure the file is executable: sudo chmod +x speed_test Once you have installed lftp and iperf make sure you have the script somewhere in your $PATH. The script basically downloads […]