Last active
September 13, 2018 14:42
-
-
Save rajeshg/14c6f3cccd025939b2a23afd320a1d5c to your computer and use it in GitHub Desktop.
useful commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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