我正在研究Debian8(杰西)(64位)。我想以普通用户的身份运行程序,而不需要创建帐户并将其切换到普通用户。
我正在运行bash脚本中的主程序:
screen ./run
其中run包含:
#!/bin/bash
ulimit -c unlimited
while true; do ./tfs --log-file "output.txt" "error.txt" | tee out.txt; done
我想以普通用户的身份运行“tfs”
最佳答案
我建议:
su - -c "screen /path/to/run" username
关于linux - 以普通用户(root身份)执行程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43151358/