Show shared library dependency in Linux
在Linux內找某程式所依賴的 library. #ldd /usr/bin/w libproc-3.2.7.so => /lib64/libproc-3.2.7.so (0x00000037afa00000) libc.so.6 => /lib64/libc.so.6 (0x00000037b0800000) /lib64/ld-linux-x86-64.so.2 (0x00000037af600000)
在Linux內找某程式所依賴的 library. #ldd /usr/bin/w libproc-3.2.7.so => /lib64/libproc-3.2.7.so (0x00000037afa00000) libc.so.6 => /lib64/libc.so.6 (0x00000037b0800000) /lib64/ld-linux-x86-64.so.2 (0x00000037af600000)
#vos addsite -server XXXXX3 -partition a -id root.afs #vos release -id root.afs #vos examine -i root.afs root.afs 536870912 RW 4 K On-line …
如果我要設定2GB快取. 就修改 /etc/rc.d/init.d/afs 檔案.設定 $CACHESIZE 值為 2 * 1024 * 1024. 如下 : # vi /etc/rc.d/init.d/afs …(omit) CACHEINFO=${CACHEINFO:-/usr/vice/etc/cacheinfo} CACHE=${CACHEDIR:-/usr/vice/cache} AFS=${AFSDIR:-/afs} CACHESIZE=2097152 …(omit)
可以用 fs getcrypt 指令檢查目前你的 OpenAFS 是否有加密. # fs getcrypt Security level is currently clear. 如果出現上列訊息就代表沒加密. 可以使用 fs setcrypt on 指令加密. # fs …
記錄一下這幾個連結 http://tldp.org/LDP/Bash-Beginners-Guide/html/index.html http://ppewww.physics.gla.ac.uk/~chrisc/SUPA/lecturenotes/bash/bash.html 常有機會寫 bash 但是bash還是不熟悉.
This HOWTO is based on SL5, RHEL5, CentOS 5. (rrdtool-1.2.23-1.el5.rf.x86_64, rrdtool-1.2.23-1.el5.rf.i386) STEP 1 : Go to http://oss.oetiker.ch/rrdtool/pub/contrib/ to get the PHP rrdtool …
[root@cluster1 ~]$ top -b -n 1 |sed -n -e “8,`cat /proc/cpuinfo | grep processor | tail -n 1 | awk ‘{print $3 …
[root@cluster1 ~]$ cat /proc/cpuinfo | grep processor | tail -n 1 | awk ‘{print $3 + 1}’
SDL (Simple DirectMedia Layer) 是個跨平台的多媒體 library. 無意間找到 Sol’s Graphics for Beginners 網頁看起來很有趣. 下面程式碼來自於 SDL Skeleton and Putting Pixels 網頁. #include #if defined(_MSC_VER) …
我之前在夏威夷的老闆曾經跟我說過有個網頁工具可以管理 server.那時的我有記起來. 但是, 年代久遠已經忘記記在哪裡? 絕對不是記到腦袋. 後來 Google 很久後才找到. 這個 Webmin 工具. 真的很方便. 可以輕鬆管理 web server, dhcp server, dns server, ldap server …等. …