2016/05/15

VirtualMachine 由 USB 開機

Download: https://www.plop.at/en/bootmanager/download.html

將下載回來的檔案解壓縮,只需要用到plpbt.iso
以VMware為例,VirtualBox作法相似,都是指定CD/DVD開機,並且設定好USB連結後啟動虛擬機

在VMware中的CD/DVD Device指定為plopbt.iso,並插入USB
啟動虛擬機後就能從選單中選擇USB開機

2016/05/11

[Go] GOPATH

export GOROOT=$HOME/go
export GOPATH=$HOME/gopath
export PATH=$PATH:$GOROOT/bin

Reference: https://golang.org/doc/install

It is better to install go by downloading binary file.
If you use apt-get to install go, do not set "export GOROOT=$HOME/go"
To unset that, type "unset GOROOT"

[Vim] Vundle (Vim Plugin Manager)

為了替vim加入輔助不同語言開發的plugin
爬文所發現的plugin manager
基本上想要加上新的vim plugin,只要在.vimrc設定檔中加入Plugin 'plugin name'
再到vim裡面執行:PluginInstall,就會自動幫你處理到好,非常方便。