start new:
tmux
start new with session name:
tmux new -s myname
| # Start the old vagrant | |
| $ vagrant init centos-6.3 | |
| $ vagrant up | |
| # You should see a message like: | |
| # [default] The guest additions on this VM do not match the install version of | |
| # VirtualBox! This may cause things such as forwarded ports, shared | |
| # folders, and more to not work properly. If any of those things fail on | |
| # this machine, please update the guest additions and repackage the | |
| # box. |
| """ | |
| A common use case in a Fabric script is to: | |
| 1. Activate the virtualenv | |
| 2. cd to the project dir | |
| Here is a simple context manager to achieve this with a one line with statement: | |
| """ | |
| # fabconfig.py | |
| def dev(): |