PHP讀取TXT檔案

●要讀取的txt檔的權限一定要為646,而非一般的644。
●文字用雙引號括住"",如 "1234";數字則不用,如:1234。
●變數前一定要加上錢字號 $。
●PHP程式碼要放在 <?    ?> 之中,檔案副檔名要為 .php。
From:http://sean.infor.org/phpteach/phpteach.htm

繼續閱讀 »

Please follow and like us:

文字命令傳送mail

假設我們要寄信給本機的 root:
$ mail root
如果我們要寄信給非本機的使用者,可以使用的收件人格式如下:
* user@cc.ncu.edu.tw
* user@[140.115.1.13]
執行了 mail 之後,程式會先要求我們輸入郵件主旨,輸入後就可以開始打本文了。當完成本文的編

繼續閱讀 »

Please follow and like us:

[Ports] Trafd 統計流量

#cd /usr/ports/net-mgmt/trafd
#make install clean
它會跑一隻 daemon , 去 log 指定 interface 收到封包的資料
預設是記下 packet 的 protocol、src ip、dst ip、src port、dst port、size
同一個 socket 的資料 , 會把 size 往上累加
因此不會說收到多少 packets 就有幾筆資料 …
用 ports 簡單裝完後
到 /etc/rc.conf 加幾行
trafd_enable="YES"
trafd_ifaces="rl0" # depend on your interface
trafd_flags="-p" # don't put interface into promiscuous mode
trafd_log="/var/log/trafd.log" # daemon log position
From:http://blog.outian.net/archives/211

繼續閱讀 »

Please follow and like us:

如何新增硬碟

在 FreeBSD 裡面新增硬碟其實很簡單。
首先把硬碟掛上去,你可以用 DOS 的 pfdisk.exe 來分割新的 partition,或是以 DOS 的 fdisk.exe 割一個 primary partition,再用 pfdisk.exe 把 partition ID 改成 165 (十進位)。
* 如果你想用 FreeBSD 的 fdisk,在進入 FreeBSD 後先以 Step-4 的方法建立 /dev/sd0s2*,再執行 fdisk sd0 觀察 sd0 的硬碟分割狀況,如下範例︰(這是 1G 的 SCSI Fireball,已經割了一個 primary FreeBSD partition)
From:http://www.douzhe.com/mirrors/fanqiang.com/a1/b2/20010416/150114_b.html

繼續閱讀 »

Please follow and like us:

中文檔名變亂碼

wget 中文檔名變亂碼
中文檔名在平常的情況下會被編碼, 但是在 --cut-dirs 時又是正常的, 那就大家用 --cut-dirs, 或是使用 outta-port/wget 吧

wget -r -np -nH --cut-dirs=3 ftp://freebsd.sinica.edu.tw/pub/statue/test/
測試.txt
wget -r -np -nH -nd ftp://freebsd.sinica.edu.tw/pub/statue/test/
%B4%FA%B8%D5.txt
wget "ftp://freebsd.sinica.edu.tw/pub/statue/test/*"
%B4%FA%B8%D5.txt

wget 的安裝:
# cd /usr/ports/outta-port/wget
# make install clean
From:FreeBSD Chinese HOWTO

繼續閱讀 »

Please follow and like us:
Pages: Prev 1 2 ... 5 6 7 8 9 10 11 12 Next