2014年7月27日 星期日

第三周工作小結

實習第三週工作小結

  1. Linux Server 的OS 重灌 (版本: mint 17)
  2. 從 windows 遠端登入設置 (xrdp)
  3. 幫忙 Windows Server 架設

2014年7月21日 星期一

Linux的第一堂課-2


  1. 從github fork 學長的專案到自己的github
  2. 在eclipse建立自己版本
  3. 用Team合作,上傳自己的版本 or 下載整合別人的版本

  • pydev.org/download/Main的網址(複製)  -> 進入eclipse的help->install :貼上網址
  • 在github 搜尋 tai5找到學長的資料夾
    • fork到自己的資料夾
    • 進入eclipse:file/Import/github
  • 在github 搜尋tshu2_li2,作法同上

  • windows/perferences











































    • 圖示說明




    • 建立自己的版本以及上傳

    Linux 的第一堂課-1

    殺程式

    • ctrl + c 
    • ctrl + d


    安裝程式
    • apt-get install (程式的名子)
    搜尋程式
    • apt-cache search (程式的名子)
    ex: 
    • apt-cache search pip
    • apt-cache search pip | grep
    • apt-cache search pip | grep f (包含f字母的資訊)
    編輯
    • vi a.txt
    讀檔
    • cat a.txt
    顯示
    • nl a.txt
    • nl a.txt | grep 1 (把有1的行圈出來)
    • (nl a.txt 是一個input,餵給|右邊的 grep 1 )
    歷史紀錄(打過的指令)
    • history | tail
    安裝django
    • sudo pip3 install django