Command-Line

.desktop 文件。正確的執行路徑

  • December 27, 2014

我使用 Fedora。安全旋轉中包含許多程序。包含的桌面文件可以工作,但以 root 權限打開程序。

如何編輯此處顯示的桌面文件以在沒有 root 的情況下打開目標。我已經嘗試了所有我能想到的明顯編輯,但沒有任何運氣。

#!/usr/bin/env xdg-open
[Desktop Entry]
Name=argus
Exec=gnome-terminal -e "su -c 'argus -h; bash'"
TryExec=argus
Type=Application
Categories=System;Security;X-SecurityLab;X-Reconnaissance;
#!/usr/bin/env xdg-open
[Desktop Entry]
Name=argus
Exec=gnome-terminal -e "sh -c 'argus -h; bash'"
TryExec=argus
Type=Application
Categories=System;Security;X-SecurityLab;X-Reconnaissance;

這與行為最接近。比我更了解阿格斯的人可以改進它

引用自:https://unix.stackexchange.com/questions/176035