2015年10月12日 星期一

Diy 520 培林 安裝/移除 工具

使用四驅車齒輪,上面的洞剛好可以放入520培林

使用螺絲緊迫來安裝或移除導輪培林

2015年5月3日 星期日

LG G2 Kitkat 升級 Lollipop 失敗

使用LG PC Suite ,前天收到Android lollipop更新,
但是按下去更新到一半就失敗,無法重開機進入系統,每次開機都卡在download的畫面


LG PC Suite可以重試,但一直無法成功
不過發現到一個現象: 每次更新image,成功的%都漸漸增加,感覺只要花時間一遍遍更新,就可以達到100%

經歷了一整天的重試,終於達到100%而順利開機了!!!!!



============================================================
由於重試幾次失敗後,重新更新就又會需要重新下載更新檔
有找到一個做法可以不用重新下載:
  1. 下載官方image
    1. 使用imei查詢機台可用最新的image(KDZ)
      1. 回傳的XML內會帶下載網址
    2. 或是上網直接抓
      1. http://lg-phone-firmware.com/index.php?id_mod=36
      2. 國家與電信商沒差,只須確認
        1. 型號 (D802/F320K/F320L...)
        2. ROM 大小(16/32)
  2. 使用LG Flash Tool 2014燒錄KDZ

      1. 上網抓LG Flash Tool 2014
        1. 解壓縮後將KDZ放到相同資料夾內
      2. 開啟LGFlashTool2014.exe
        1. Normal Flash: 不清data
        2. CSE Flash:  清data
      3. 第二個頁面按下start即可開始燒錄
      4. 燒錄失敗後重插USB,繼續重試

2015年1月11日 星期日

linux bash function for switch tmux session(若不存在則重新建立)

可以直接切換到Tmux 不同session

加在.bashrc內

tmux_goto_branch ()
{
        P="$1"

        if [ "$P" == ""]
        then
                echo "$0: must enter branch name..."
                exit
        fi

        tmux has -t $PROJ
        if [[ "$?" == "0" ]];
        then
                echo "$0: Session exist, switch to it";
                tmux attach -t $PROJ
        else
                echo "$0: Session not exist, create a new one"
                tmux new -s $PROJ -n $PROJ
        fi

}

用法: tmux_goto_branch BRANCH_TEST

設定linux shell 提示字元與ssh 登入的title

查看ubuntu 的.bashrc, 可以發現下列設定:


if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac


其中可以看到如果要改顏色,可以使用顏色標示包起來

登入shell時,提示符號預設長這樣  username@server:~$

使用putty等軟體經由SSH 連入時,可以看到登入視窗的title也會跟著變,由此可知這個title是從linux內拿來的,就是上述最後一組PS1變數的設定


所以經由上述分析,可以寫一個function, 放在.bashrc內,之後就可以簡單的手動設定想要的提示符號與title

set_title ()
{
        PS1="${debian_chroot:+($debian_chroot)}\[\033[01;32m\]$*\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ "
        PS1="\[\e]0;${debian_chroot:+($debian_chroot)}$*: \w\a\]$PS1"
}



使用方法:
    set_title "test title"