2013/07/21

fasd on Ubuntu - 命令列加速工具



(圖片來自 o3noblog)

之前 othree 大大推薦的 fasd 可在 PPA 上下載了。

$ sudo add-apt-repository ppa:fcwu-tw/ppa
$ sudo apt-get update
$ sudo apt-get install fasd

使用 bash 的朋友們,可在 .bashrc 加入

eval "$(fasd --init auto)"

可用的命令有

alias a='fasd -a'        # any
alias s='fasd -si'       # show / search / select
alias d='fasd -d'        # directory
alias f='fasd -f'        # file
alias sd='fasd -sid'     # interactive directory selection
alias sf='fasd -sif'     # interactive file selection
alias z='fasd_cd -d'     # cd, same functionality as j in autojump
alias zz='fasd_cd -d -i' # cd with interactive selection

真是好記又好用 :)

2013/07/17

Linux Firmware Debug Kit on Ubuntu




跟我一樣有點年紀,或是曾經做過 BIOS 相關工作的朋友們,一定有聽過 merck 的 LFDK。沒有聽過 LFDK,至少也有聽過 RU 吧,但 RU 是在 DOS 執行的工具,LFDK 則是相似的 Linux 工具。目前 LFDK 能查看 PCI register,IO and memory space。

小 弟將它重新包裝並做些修改後放到人 PPA 上,可以使用以下指令安裝:

$ sudo add-apt-repository ppa:fcwu-tw/ppa
$ sudo apt-get update
$ sudo apt-get install lfdk

執行

$ sudo lfdk

程式完全用 github 托管,希望有心人能再豐富 lfdk 的功能。