2015/11/29

[Raspberry Pi] Ubuntu Mate 安裝紀錄

不知道要選哪個OS的話,可以參考這篇有介紹:
Raspberry Pi 的基礎 - 24 套作業系統大集合,我該選誰?
http://blog.itist.tw/2015/11/how-to-choosing-operating-system-for-raspberry-pi.html

1.安裝完Ubuntu Mate之後,要手動分配空間給系統,否則只會用到3.7GB左右的空間

  sudo fdisk /dev/mmcblk0
  接著參數依序為d、2
  sudo resize2fs /dev/mmcblk0p2
  接著參數依序為n、p、2、enter、enter

2.酷音輸入法
   sudo apt-get install fcitx-chewing
   重新登入後就能選擇中文輸入

   後記: 重裝系統之後因為不明原因,輸入法圖示跑不出來,就換成gcin了
   sudo apt-get install gcin

3.遠端控制
   sudo apt-get install xrdp

4.FTP
  sudo apt-get install vsftpd

  #vsftpd設定檔 (IPv4跟IPv6同時Listen好像會有問題)
  sudo vim /etc/vsftpd.conf

  FileZilla連上FTP後中文亂碼的問題: (強制使用UTF8編碼)
  https://twnoc.net/support/Knowledgebase/Article/View/143/0/filezilla

5.LAMP

Reference:
http://www.unixmen.com/how-to-install-lamp-stack-on-ubuntu-15-10/
http://www.codingstartup.com/how-to-setup-lamp-on-ubuntu/

6.Transmission-Daemon

Reference:
https://wwssllabcd.github.io/blog/2013/04/22/how-to-setup-transmission-deamon-in-raspberry-pi/
https://help.ubuntu.com/community/TransmissionHowTo
To be continued...

2015/11/14

[Git] 使用TortoiseGit & Google Drive

1.首先電腦必須安裝mysisgit,這裡的git GUI以TortoiseGit為例 (也可以選擇命令列介面)

  詳細步驟請參閱: https://backlogtool.com/git-guide/tw/intro/intro2_1.html

2.利用Google Drive空間作為Git Server(主要是Github之類的git repository服務,要免費使用的話就得將程式碼開源)
 
  只要開好Google Drive的共用權限,並設定好Git的遠端路徑,就可以讓多人協作一個repository了

  詳細步驟請參閱: http://www.coder.com.tw/blog/system/windows_tortoisegit_googledrive/

2015/11/01

[Linux] pscp傳檔

(Linux部分皆以傳至Raspberry Pi帳戶pi為例,IP Address請依實際IP來指定)

(1)Windows to Linux:

pscp D:\testfile.txt pi@192.168.0.101:/home/pi/Downloads

(2)Linux to Windows

pscp pi@192.168.0.101:/home/pi/Downloads/testfile.txt D:\

如果要傳送整個目錄,需在路徑之前加上 -r