Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从当前的 bash 会话中与用户创建一个新的 bash 会话, 我知道我可以只用一个命令 来尝试找出它。
$ su <user> -c bash
替换所需的用户名。您要么需要知道用户的密码,要么以 root 身份运行它。
或者,您可以执行以下任何操作
$ screen -S <user> $ bash --login <user>
所有这些都将完成您的任务
参考Linux screen命令: http: //linux.die.net/man/1/screen
您可以通过以下方式在 bash 中创建一个新会话:
screen -S test