WDS的目的是延伸無線網路,它有分bridge和repeater二種,首需要二台相同品牌,相同機種的AP(建議)
brideg是指LAN1-->AP1-->Wireless-->AP2-->LAN2,AP1與AP2分別接到區域網路(有線)中,AP1/AP2中間是用無線接起來的,此時無線網路只有AP1到AP2中,其他NB不能利用無線連線
repeater是指LAN-->AP1-->Wireless-->AP2-->Wireless,AP1/路AP2利用無線連起來外,AP1/AP2也提供無線網給NB用,只是在AP2提供的無線網路速度會減半
2011年12月2日
2011年4月11日
SVN
Changelog Between Two Tags in Subversion
#svn log -v -r42:79 file:///dev/svn/trunk
Merge branch test
#svn merge --dry-run -r OLD_REV:NEW_REV {branch path}
Merge branch
#svn merge -r OLD_REV:NEW_REV {branch path}
#svn commit -m "LOG"
Ref:http://svnbook.red-bean.com/en/1.1/ch04s04.html
new revision: 888
old revision: 777
#svn merge -r 888:777
==> rollback from 888 revision to 777 revision
Ref: http://stwei.blogspot.com/2010/06/howto-svn-rollback.html
#svn log -v -r42:79 file:///dev/svn/trunk
Merge branch test
#svn merge --dry-run -r OLD_REV:NEW_REV {branch path}
Merge branch
#svn merge -r OLD_REV:NEW_REV {branch path}
#svn commit -m "LOG"
Ref:http://svnbook.red-bean.com/en/1.1/ch04s04.html
new revision: 888
old revision: 777
#svn merge -r 888:777
==> rollback from 888 revision to 777 revision
Ref: http://stwei.blogspot.com/2010/06/howto-svn-rollback.html
2011年2月14日
Makefile
$?: 代表已被更新的 dependencies 的值。也就是 dependencies 中,比 targets 還新的值。
$@: 代表 targets 的值。
$<: 代表第一個 dependencies 的值。
$*: 代表 targets 所指定的檔案,但不包含副檔名。
* make -k: 會讓make在遇到錯誤的時候仍然運行,而不會停在第一個問題
* make -n: 只印出將會進行的工作,而不會真的去執行
* make -f makefile_name: 告訴make需要用那個makefile檔案。當你的make檔不是叫makefile的時候,需要自行透過-f加上你檔案名字,make才找的到你的makefile
Ref:
http://tetralet.luna.com.tw/index.php?op=ViewArticle&articleId=185&blogId=1
http://kevincrazy.pixnet.net/blog/post/29780477
http://hsian-studio.blogspot.com/2008/09/makefile_08.html
$@: 代表 targets 的值。
$<: 代表第一個 dependencies 的值。
$*: 代表 targets 所指定的檔案,但不包含副檔名。
* make -k: 會讓make在遇到錯誤的時候仍然運行,而不會停在第一個問題
* make -n: 只印出將會進行的工作,而不會真的去執行
* make -f makefile_name: 告訴make需要用那個makefile檔案。當你的make檔不是叫makefile的時候,需要自行透過-f加上你檔案名字,make才找的到你的makefile
Ref:
http://tetralet.luna.com.tw/index.php?op=ViewArticle&articleId=185&blogId=1
http://kevincrazy.pixnet.net/blog/post/29780477
http://hsian-studio.blogspot.com/2008/09/makefile_08.html
Tag:VoIP
Embeded System,
Linux
2010年11月18日
Allowing Root Logins to Telnet and FTP Services
只要編輯/etc/securetty即可
加入以下就可以讓10個session以root telnet登入
pts/0
pts/1
pts/2
pts/3
pts/4
pts/5
pts/6
pts/7
pts/8
pts/9
Ref: http://www.idevelopment.info/data/Unix/Linux/LINUX_TelnetFTPAsRoot.shtml
Tag:VoIP
Linux
2010年9月12日
2010年8月16日
stdout stderr
1 - denotes stdout ( standard output )
2 - denotes stderr ( standard error )
/dev/null . apparently is null , nothing , empty , zero etc , etc .
2>/dev/null - redirect stderr to nothing , it turns stderr off.
>/dev/null 2>&1 also can write as 1>/dev/null 2>&1 - stdout redirect to /dev/null (no stdout) ,and redirect stderr to stdout (stderr gone as well) . end up it turns both stderr and stdout off
a little practice may help to undstand above .
#ls /usr /nothing
#ls /usr /nothing 2>/dev/null
#ls /usr /nothing >/dev/null 2>&1
2 - denotes stderr ( standard error )
/dev/null . apparently is null , nothing , empty , zero etc , etc .
2>/dev/null - redirect stderr to nothing , it turns stderr off.
>/dev/null 2>&1 also can write as 1>/dev/null 2>&1 - stdout redirect to /dev/null (no stdout) ,and redirect stderr to stdout (stderr gone as well) . end up it turns both stderr and stdout off
a little practice may help to undstand above .
#ls /usr /nothing
#ls /usr /nothing 2>/dev/null
#ls /usr /nothing >/dev/null 2>&1
2010年3月7日
訂閱:
文章 (Atom)