Après le README in de ce référentiel , je suis censé sécuriser Shell vers une machine virtuelle que j'ai créée, mais une fois Je l'ai fait, comment puis-je sortir?
Voici les instructions:
$ git clone git://github.com/honza/Django-chef.git
$ cd Django-chef
# add yourself to the "users" array in the Vagrantfile
$ Sudo echo "127.0.0.1 example.example.com" >> /etc/hosts
$ vagrant up
$ fab vagrant:honza bootstrap # replace with your name
$ vagrant ssh # OK, cool
$ run # I'm trapped!
En supposant que la commande run
continue à s'exécuter au premier plan, vous pouvez très probablement la terminer par CTRL+C
. Ensuite, les sessions Shell (et SSH) peuvent être terminées avec exit
ou CTRL+D
.
Si vous voulez ssh sur la machine, vous pouvez faire ce qui suit:
vagrant ssh
ou
Homestead ssh
Si vous êtes sur la machine, vous pouvez exécuter la commande exit
pour en sortir.