启动 MC 服务器并进入分离屏幕

启动 MC 服务器并进入分离屏幕

因此,我尝试在启动时将 minecraft 服务器启动到分离的屏幕。我希望能够使用 ssh 重新连接到该屏幕以监视服务器。这是我使用“rc.local”文件尝试的。

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

su - bart -c "screen -dmS MC /home/ bart/The\ new\ Server/Start"

exit 0

但似乎不起作用。有人知道我做错了什么吗?

顺便说一句。我刚开始使用 Linux。

相关内容