在我自己的机器上,如果我启动一个新终端并执行需要超级用户权限的操作,我必须输入我的密码。
但是,如果我第二次登录到远程机器,这不是必需的,这怎么可能?这是同一个外壳吗?
ssh remote_machine
sudo su
# enter password
# drop out of the remote shell entirely
ssh remote_machine # again
sudo su
# now continue without typing a password!
这怎么可能?