2012年10月24日 星期三

ubuntu + postgreSQL 筆記


  • 安裝
    • 可以不用下載  直接到終端機打指令安裝
    • 指令:sudo apt-get install postgresql
  • 執行 postgres console
    • 指令:sudo -u postgres psql postgres
  • 設定root password
    • 進入 postgres console,輸入指令
    • 指令:\password postgres

ubunto GUI 快捷指令


  • 呼叫終端機:ctrl + alt + t





ubuntu 終端機基本指令


  • top:顯示執行中的 process
    • Ex. top
  • sudo:管理者身份執行後續的指令
    • sudo mv ~/home/file ~/dev/otherfile
  • mv:搬移檔案,需要兩個參數
    • Ex. mv source_file_path distination_file_path
    • 可以藉由搬移時 順道改檔案名稱
  • cp:複製檔案
    • Ex. cp src_file dist_file