我可以强制用户进行屏幕会话吗?

我可以强制用户进行屏幕会话吗?

我如何监视其他用户的 shell 会话?我想评估其他用户的行为。我正在研究使用 screen,但我不知道如何强制他的终端启动 screen 会话。

有办法吗?

答案1

您可以使用以下命令将屏幕设置为用户的登录 shell

  usermod -s /usr/bin/screen guest

日志记录可以设置在/etc/screenrc

答案2

如果您不想让用户注销,可以尝试跟踪用户的 bash 历史记录。

登录并运行tail -f /home/<username>/.bash_history

相关内容