2011年5月28日 星期六
2011年5月26日 星期四
vim 換行自動對齊功能
【軟件應用】vim 換行自動對齊_Glaivelee --- LIFE NOT IF ELSE_百度空間: "set number
- 已使用 Google 工具列寄出"
在home目錄下
vim .vimrc
set autoindent
set smartindent
另外我加上
set number
可以顯示行號
- 已使用 Google 工具列寄出"
在home目錄下
vim .vimrc
set autoindent
set smartindent
另外我加上
set number
可以顯示行號
透過Facebook分享
wikidpad 去除wiki語法
wikidpad裡面加上*
會有字體變粗變大的效果
但是有些linux command會用到*卻會造成放大的困擾
這時候你需要這個部份的前後加上
就可以保持原始command 的格式嚕
Ref.
wikidpad's help - TextFormatting
擷取部份說明
++++ Preformatted blocks
You can use \<<\pre and >> to enclose blocks which have no special formatting (wiki words, italics) as the default escaping blocks but are shown in HTML as monospaced blocks and have exactly the same formatting as written in the source text.
This is helpful especially for programming source code.
會有字體變粗變大的效果
但是有些linux command會用到*卻會造成放大的困擾
這時候你需要這個部份的前後加上
就可以保持原始command 的格式嚕
Ref.
wikidpad's help - TextFormatting
擷取部份說明
++++ Preformatted blocks
You can use \<<\pre and >> to enclose blocks which have no special formatting (wiki words, italics) as the default escaping blocks but are shown in HTML as monospaced blocks and have exactly the same formatting as written in the source text.
This is helpful especially for programming source code.
透過Facebook分享
2011年5月25日 星期三
利用 netsh 指令修改網路介面參數 - 設定靜態網路資訊
利用 netsh 指令修改網路介面參數 @ 暉獲無度的步烙閣 :: 隨意窩 Xuite日誌: "- 已使用 Google 工具列寄出"
Under Windows XP
你可以利用netsh指令來設定network interface 相關參數
ex.
ip address, netowrk mask, gateway
透過以下指令
netsh interface ip set address name="區域連線 5" source=static addr=192.168.1.5 mask=255.255.255.0
netsh interface ip set address name="區域連線 5" gateway=192.168.1.10 gwmetric=none
方法非常的固定
如果亂下可以會有以下error產生
D:\tools\burntool_256>netsh interface ip set address name="區域連線 5" addr=192.
168.1.3 gateway=192.168.1.1
提供給這個命令的語法不正確。請查閱說明以取得正確的語法。
D:\tools\burntool_256>netsh set address name="區域連線 5" source=static addr=192
.168.1.5 mask=255.255.255.0 gateway=192.168.1.1
找不到下列命令: set address "name=區域連線 5" source=static addr=192.168.1.5 mas
k=255.255.255.0 gateway=192.168.1.1。
Under Windows XP
你可以利用netsh指令來設定network interface 相關參數
ex.
ip address, netowrk mask, gateway
透過以下指令
netsh interface ip set address name="區域連線 5" source=static addr=192.168.1.5 mask=255.255.255.0
netsh interface ip set address name="區域連線 5" gateway=192.168.1.10 gwmetric=none
方法非常的固定
如果亂下可以會有以下error產生
D:\tools\burntool_256>netsh interface ip set address name="區域連線 5" addr=192.
168.1.3 gateway=192.168.1.1
提供給這個命令的語法不正確。請查閱說明以取得正確的語法。
D:\tools\burntool_256>netsh set address name="區域連線 5" source=static addr=192
.168.1.5 mask=255.255.255.0 gateway=192.168.1.1
找不到下列命令: set address "name=區域連線 5" source=static addr=192.168.1.5 mas
k=255.255.255.0 gateway=192.168.1.1。
透過Facebook分享
DNRD intro. from README
簡單來說
DNRD負責將hosts 傳送來的dns request, pass到不同的DNS Server.
並且將DNS Server處理好的dns reply, pass回到hosts.
因此hosts就可以知道domain name要對應什麼ip address.
-s 可以允許你設定要forward 到哪些 DNS Server.
你也可以把dnrd自己當作一個簡單的DNS Server.
這個時候你要利用
-m來做設定
預設會讀取/usr/local/etc/dnrd/master
如果此檔案不存在
就會讀取/etc/hosts
當然你也可以設定其他lcoal位置
DNRD負責將hosts 傳送來的dns request, pass到不同的DNS Server.
並且將DNS Server處理好的dns reply, pass回到hosts.
因此hosts就可以知道domain name要對應什麼ip address.
-s 可以允許你設定要forward 到哪些 DNS Server.
- -s ipaddr(:domain)
- --server=ipaddr(:domain)
- Add a forward DNS server. If multiple -s options are given, dnrd treats the first as a primary DNS server and the rest as backup servers. If the primary DNS server times out, it is deactivated and the next specified server (that is active) is used until the previous gets reactivated.
你也可以把dnrd自己當作一個簡單的DNS Server.
這個時候你要利用
-m來做設定
預設會讀取/usr/local/etc/dnrd/master
如果此檔案不存在
就會讀取/etc/hosts
當然你也可以設定其他lcoal位置
- -m (off|hosts)
- --master=(off|hosts)
- dnrd can act as the primary name server for a number of hosts. By default, it will read in /usr/local/etc/dnrd/master to determine how this is done. If that file doesn't exist, it will act as the primary server for the hosts found in /etc/hosts. This option allows you to override the default behavior. Setting it to off turns off all primary server functionality. Setting it to hosts causes dnrd to act as the primary server for hosts in /etc/hosts regardless of whether it could find /usr/local/etc/dnrd/master.
透過Facebook分享
2011年5月24日 星期二
替blogger 加上 Facebook 官方的推文按鈕
Jax 的工作紀錄: Blogger 的標題加上 Facebook 官方的推文按鈕
- 已使用 Google 工具列寄出"
可以參考上篇文章
他的方法可以在Blogger的標題上加上FB的推文按鈕
我是想放在文章下方
找到
在這之前加上
在找/body
在這之前加上
看預覽按鈕測試是否沒有問題
- 已使用 Google 工具列寄出"
可以參考上篇文章
他的方法可以在Blogger的標題上加上FB的推文按鈕
我是想放在文章下方
找到
在這之前加上
在找/body
在這之前加上
看預覽按鈕測試是否沒有問題
透過Facebook分享
2011年5月23日 星期一
DNRD - Domain Name Relay Daemon
DNRD - Domain Name Relay Daemon: "- 已使用 Google 工具列寄出"
Domain Name Relay Daemon is a cacheing, forwarding DNS proxy server.
特色
1. 有caching功能
2. 備份DNS server資料
3. 提供簡易的routing: 不同domain可以設定不同的forward
4. 預防cache poisoning
5. Force authorative or unauthorative answers for specified domains
6. 分享/etc/hosts內容
7. DNS 黑名單支援
8. TCP支援
運行在 openbsd, freebsd, and linux
Domain Name Relay Daemon is a cacheing, forwarding DNS proxy server.
特色
1. 有caching功能
2. 備份DNS server資料
3. 提供簡易的routing: 不同domain可以設定不同的forward
4. 預防cache poisoning
5. Force authorative or unauthorative answers for specified domains
6. 分享/etc/hosts內容
7. DNS 黑名單支援
8. TCP支援
運行在 openbsd, freebsd, and linux
透過Facebook分享
訂閱:
文章 (Atom)