Elvis Woo

To whom be glory forever and ever. Amen.

Skip to: Content | Sidebar | Footer



Month: March, 2008

Pinging Broadcast Address

4 March, 2008 (20:03) | Linux, Network

For example: 
[user@linuxos ~]# ping 172.30.30.0 -b
WARNING: pinging broadcast address
PING 172.30.30.0 (172.30.30.0) 56(84) bytes of data.
64 bytes from 172.30.30.123: icmp_seq=1 ttl=255 time=0.805 ms
64 bytes from 172.30.30.2: icmp_seq=1 ttl=255 time=1.30 ms (DUP!)
64 bytes from 172.30.30.15: icmp_seq=1 ttl=64 time=33.0 ms (DUP!)
64 bytes from 172.30.30.11: icmp_seq=1 ttl=64 time=35.0 ms (DUP!)
64 bytes from 172.30.30.14: icmp_seq=1 ttl=64 time=37.2 ms (DUP!)
64 bytes [...]

To Replace <p> with <br> in FCKedit

2 March, 2008 (11:37) | Application System

Edit fckconfig.js
FCKConfig.EnterMode = ‘p’ ;                    // p | div | br
FCKConfig.ShiftEnterMode = ‘br’ ;        // p | div | br
Change the value.

*********************************************************

Fix Incorrect GMT time in Proftpd

2 March, 2008 (11:09) | Application System, Linux

Edit proftpd.conf
Add TimesGMT off 

Then save & quit and create a softlink
ln -s /usr/share/zoneinfo/Asia/Shanghai /usr/share/zoneinfo/CST
restart proftpd
************************************************