Solaris

Solaris:如何刪除配置文件?

  • February 14, 2018

帶有 RBAC 的 Solaris 11,配置文件可以為使用者提供一些特權(類似於 sudo,但更高級)。

有命令

profiles -p "profile name"

我可以創建個人資料

有命令

usermod -P "profile name" role/user

我可以將配置文件分配給使用者或角色

有命令

usermod -P -"profile name" role/user

我可以從使用者中刪除配置文件。

哪個命令從系統中刪除配置文件?

手冊頁中,它出現profiles(1)一種形式

profiles -p "profile name" delete

將刪除配置文件。手冊頁中的一個範例:

範例 5 刪除配置文件

以下命令從 LDAP 中刪除使用者管理器配置文件:

example% profiles -p "User Manager" -S ldap delete -F

不過,我目前無法訪問帶有要測試的配置文件的 Solaris 11 實例。

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