su
该论坛上还有其他有关、su -
、su root
... 等 用法的问题。
但我没有找到任何关于该su-to-root
命令的信息,我想了解其用法的基础知识。
我希望这个例子有用:卡利Linux v2.0live(桌面 PC 版本)安装程序使用此.desktop
直接链接:
root@kali:~$ more /usr/share/applications/debian-installer-launcher.desktop
[Desktop Entry]
Version=1.0
Name=Install Kali
Comment=Install this system permanently to your hard disk
Exec=su-to-root -X -c /usr/sbin/debian-installer-launcher
Icon=debian-installer-launcher
Type=Application
Categories=Application;System;
StartupNotify=true
Terminal=false
如果我想从 X Windows 终端手动启动安装程序,我必须使用
su-to-root -X -c /usr/sbin/debian-installer-launcher
或者我可以简单地这样做:
sudo /usr/sbin/debian-installer-launcher
?
答案1
su-to-root 只是 su 的 GUI 前端。如果您熟悉终端,那么使用 sudo 应该可以正常工作。
了解更多信息:http://manpages.ubuntu.com/manpages/intrepid/man1/su-to-root.1.html