Mac使用iterm2连接远程服务器
1.创建配置文件
# 跳到指定目录下,创建配置文件 cd ~/.ssh/ touch XXX # 创建一个文件,如:aliyun
2.编辑配置文件内容
编辑创建的配置文件,补充一下内容
#!/usr/bin/expect -f set host XXXXXXX set user XXXXXX #set port XXXXXX set password XXXXXX #set timeout -1 spawn ssh $user@$host expect "*password:*" send "$password\r" interact expect eof
3.配置iTerm2
1. 打开iterm2->settings
2.Profiles->add添加一个profile name。
3.command中填写刚刚创建的配置文件的地址。
4.iTerm2远程登录
在iterm2中找到profiles,点击创建的配置文件,即可登录。