哈哈,終於找到 FreeBSD 裝不順利的原因了,
原來是 OpenSSL 這個東西在亂搞鬼,
FreeBSD 原本都有內建一版 OpenSSL
但是更新 Ports Tree 之後再安裝 OpenSSL 則會更新到 0.9.8k
由於已經試驗過所有版本的 FreeBSD (x64,x86,7.1,6.4,6.3)
所以可以輕易推論出目前不能使用 Ports Tree 上的 OpenSSL 最新版,
否則會造成 LDAP, nss_ldap, apache
以及其他所有跟 OpenSSL 有關係的服務不匹配。
呼….問題終於解決了~~爽。
netbsd
以下為 NetBSD 3 基本網路設定
安裝也是照畫面指示即可,
網路配置
Read the rest of this entry »
打開簡單的 rcp 權限
今日老闆突然要打開 rcp 的語法權限,
是 AIX 與 Solaris…
Read the rest of this entry »
freebsd
1. 安裝套件
必須裝 openldapclient, nss_ldap, pam_ldap 這三種套件
- nss_ldap :
功能: 尋找到帳號資訊
設定檔: /usr/local/etc/nss_ldap.conf
備註:直接使用 ports 安裝 nss_ldap 即會自動安裝相對應的 openldap-client 版本
若是先安裝 openldap-client 再安裝 nss_ldap 的話
可能造成 openldap-client 與 nss_ldap 版本不符合而無法安裝 nss_ldap
Read the rest of this entry »
Linux
$tar -zxvf [filename] #可以解 *.tar.gz $tar -jxvf [filename] #可以解 *.tar.bz2 |
這是 Linux 上的 tar,
有些 Unix 或是 BSD 上面的 tar 不支援直接帶參數解 gz 與 bz2,
只能用 gzip -d先把 *.gz 解掉再用tar -xvf 解。