这是我收到的通知:
The file '/home/heart/Phantombot/PhantomBot-2.4.1/PhantomBot.jar'
is not marked as executable. If this was downloaded or copied
from an untrusted source, it may be dangerous to run.
For more details, read about the executable bit.
基本上,JAR 文件没有运行所需的权限。我该如何授予它此权限?
答案1
要将可执行位添加到文件,请使用以下构造:
chmod +x /path/to/file
您的文件的命令jar
是
chmod +x /home/heart/Phantombot/PhantomBot-2.4.1/PhantomBot.jar
如果您是该文件的所有者。
如果您不是该文件的所有者,请使用前导sudo
:
sudo chmod +x /home/heart/Phantombot/PhantomBot-2.4.1/PhantomBot.jar