如何在终端中退出流浪者的SSH


21

遵循该存储库中的README文件之后,我应该将外壳安全地固定到已创建的虚拟机中,但是一旦这样做,我该如何退出呢?

以下是说明:

$ 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! 

Answers:


25

假设run命令保持在前台运行,您很有可能以结尾CTRL+C。然后,可以使用exit或终止Shell(和SSH)会话CTRL+D


2
我在Windows 10中使用了Cmder,exitCTRL+D为我CTRL+C工作,但没有成功。
user3731622 '16

我也是。exit似乎是这里的最佳答案。
奥斯丁

3

如果要SSH到计算机,可以执行以下操作:

vagrant ssh

要么

homestead ssh

如果您在计算机中,则可以运行命令exit以退出该计算机。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.