2014年4月25日 星期五

[Tips] Linux下好用的終端機 - Terminator

圖片來源:Oracle VUE

長期使用LXDE, 突然需要換編碼, 發現內建的LXTerminal沒辦法快速切換, 逛逛就找到Terminator

幾個還不錯得功能, 例如
* 可支援垂直, 水平的分頁(tab)
* 鍵盤快捷鍵
* 編碼切換
* 無限長度的下拉bar

之後如果有發現其他好用功能再補吧...

2014年4月12日 星期六

[Tips] 在LXDE環境下用快捷鍵做screenshot

方法是使用scrot + openbox
之後就可以按PrtSc直接做screenshot
sudo apt-get install scrot
vi ~/.config/openbox/lxde-rc.xml
  <keybind key="Print">
      <action name="Execute">
          <command>scrot</command>
      </action>
  </keybind>
reference: How can I take a screenshot in LXDE using scrot and the Print Screen button on my keyboard?

2014年4月10日 星期四

[Wordpress] 修改Wordpress字型

Wordpresstwentyeleven預設的字型是使用GeorgiaHelvetica Neue
可以修改style.css的font和font-family, 換成微軟正黑體, 讓整體看起來比較舒服

修改地方如下
318 body, input, textarea {
319         color: #373737;
320         /*font: 15px "Helvetica Neue", Helvetica, Arial, ans-serif;*/
321         font: 15px "微軟正黑體", sans-serif;
322         font-weight: 300;
323         line-height: 1.625;
324 }
383 blockquote {
384         /*font-family: Georgia, "Bitstream Charter", serif;*/
385         font-family: "微軟正黑體", sans-serif;
386         font-style: italic;
387         font-weight: normal;
388         margin: 0 3em;
389 }
393 blockquote cite {
394         color: #666;
395         /*font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;*/
396         font: 12px "微軟正黑體", sans-serif;
397         font-weight: 300;
398         letter-spacing: 0.05em;
399         text-transform: uppercase;
400 }

2014年4月2日 星期三

[資訊安全] nmap掃IP和掃port

nmap是出門在外的好物, 簡單紀錄幾個常用語法

可掃網段, 看ping的回應(-sP: Ping Scan - go no further than determining if host is online)
$ sudo nmap -sP 192.168.1.0/24

可掃網段, 列出主機列表(-sL: List Scan - simply list targets to scan)
$ sudo nmap -sL 192.168.1.1-254

針對特定主機掃描(也可掃網段), 會顯示開啟的port
$ sudo nmap -vPN 192.168.1.x

針對特定主機掃描(也可掃網段), 會顯示開啟的port, 主機用的作業系統
$ sudo nmap -sV 192.168.1.x

以stealth SYN scan的方式掃描, 較不易被對方主機紀錄
$ sudo nmap –sS 192.168.1.x

reference:
* The Art of Port Scanning