搜尋此網誌

網頁

顯示具有 Embedded Linux 標籤的文章。 顯示所有文章
顯示具有 Embedded Linux 標籤的文章。 顯示所有文章

2013年10月21日 星期一

The authenticity of host can't be established issue



when using ssh connect to 192.168.0.xxx would meet this issue:

  ssh  -o StrictHostKeyChecking=no  192.168.0.xxx

2013年10月19日 星期六

git commit 常用指令

修正 commit 過的版本歷史紀錄 : http://ithelp.ithome.com.tw/question/10138791

* git reset --hard "HEAD^"
* git reset --soft "HEAD^"
* git reset --hard ORIG_HEAD
* git commit --amend

設定 .gitignore 忽略清單: http://ithelp.ithome.com.tw/question/10138831

2013年9月12日 星期四

Vim 取代所有字串



當需要替換大量字串時,可以於套用以下命令:

str1 : 需要被替換掉的字串

str2: 欲替換的新字串

:g/str1/s//str2/g

2012年12月27日 星期四

2012年11月15日 星期四

2012年10月9日 星期二

實用的 Linux screen 指令


當出差或需要遠端連線時,網路品質若不佳,可以使用screen 指令,確保連線中斷之後,之前的操作能夠繼續進行。

教學網頁: http://lagunawang.pixnet.net/blog/post/2836825-linux-screen%E6%8C%87%E4%BB%A4

2012年6月4日 星期一

C語言測試 想成為嵌入式程序員應知道的0x10個基本問題:


http://lionrex.pixnet.net/blog/post/69461615

2011年11月26日 星期六

修改source.list 避免apt-update 伺服器失效問題

當遇到apt-update 伺服器失效問題時,可以修改source.list更換伺服器位址

2011年7月6日 星期三