Skip to content

Instantly share code, notes, and snippets.

@rajeshg
Last active September 13, 2018 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajeshg/14c6f3cccd025939b2a23afd320a1d5c to your computer and use it in GitHub Desktop.
Save rajeshg/14c6f3cccd025939b2a23afd320a1d5c to your computer and use it in GitHub Desktop.
useful commands
# speed test from command line - https://askubuntu.com/questions/104755/how-to-check-internet-speed-via-terminal
curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3 -
# vagrant commands
vagrant box add ubuntu/bionic64 # to download ubuntu bionic64 images. More can be found at vagrantcloud.com
vagrant init bionic64 # to initialize a vm using the image we downloaded
vagrant up # to turn on the box that we initialized
vagrant ssh # to ssh into the box
vagrant reload --provision # to reload after editing Vagrantfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment