- 安裝
- 可以不用下載 直接到終端機打指令安裝
- 指令:sudo apt-get install postgresql
- 執行 postgres console
- 指令:sudo -u postgres psql postgres
- 設定root password
- 進入 postgres console,輸入指令
- 指令:\password postgres
- top:顯示執行中的 process
- sudo:管理者身份執行後續的指令
- sudo mv ~/home/file ~/dev/otherfile
- mv:搬移檔案,需要兩個參數
- Ex. mv source_file_path distination_file_path
- 可以藉由搬移時 順道改檔案名稱
- cp:複製檔案
- Ex. cp src_file dist_file