Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 solaris 中卸载 .pkg?我们有安装 pkgadd -d one.pkg 的命令。同样,我们可以有卸载命令吗?
没有直接的方法,因为包含包的文件的名称可以是任何东西。您需要检索包名称才能将其删除。
这可以使用该 oneliner(ksh 或 bash)来完成:
# pkgrm $(pkginfo -d one.pkg | nawk '{print $2}')
pkgrm <pkg_name>
要知道包名称,请运行以下命令
pkginfo -l <word_in_package_name>