2014年6月18日 星期三

pkgutil - Installs Solaris packages easily


http://www.opencsw.org/package/pkgutil/
http://pkgutil.net/

安裝pkgutil
pkgadd -d http://get.opencsw.org/now
/opt/csw/bin/pkgutil -U
/opt/csw/bin/pkgutil -a vim
/opt/csw/bin/pkgutil -y -i vim

幾個常用的指令如下:
  • 更新套件清單
    /opt/csw/bin/pkgutil -U
  • 可用套件清單
    /opt/csw/bin/pkgutil -a
  • 安裝套件
    /opt/csw/bin/pkgutil -i [name]
  • 升級套件
    /opt/csw/bin/pkgutil -u [name]
  • 檢查套件是否有新版
    /opt/csw/bin/pkgutil -c
OpenCSW (pronounced open-cashew /ˈkæʃuː/) is an easy to use open source software distribution installable on top of Solaris and Solaris-based systems. OpenCSW is a community project dedicated to working closely with upstream projects to improve portability of open source software.

2014年6月12日 星期四

Solaris 11 如何設定較強的密碼限制

編輯/etc/default/passwd 檔案。

a. 要求使用者每個月都要變更密碼,但更換的頻率間隔不得少於三個禮拜。
## /etc/default/passwd
##
MAXWEEKS=
MINWEEKS=
MAXWEEKS=4
MINWEEKS=3

b. 要求密碼至少要有8 個字元。
#PASSLENGTH=6
PASSLENGTH=8

c. 保留密碼歷程記錄。
#HISTORY=0
HISTORY=10

d. 要求與上個密碼的最小差異。
#MINDIFF=3
MINDIFF=4

e. 要求至少要有一個大寫字母。
#MINUPPER=0
MINUPPER=1

f. 要求至少要有一個數字。
#MINDIGIT=0
MINDIGIT=1