Raspberry Pi學習筆記(三):指令與功能

Yanwei Liu
4 min readMay 13, 2019

--

開關機

sudo reboot #重開機
sudo halt #關機(比sudo poweroff安全)

套件管理

sudo apt-get update             #更新軟體列表
sudo apt-get upgrade #更新軟體包
sudo apt-get install <軟體名稱> #安裝套件
sudo apt-get remove <軟體名稱> #移除套件

查看SD卡空間狀況

df -h

設定樹莓派系統參數

sudo raspi-config

查看溫度

vcgencmd measure_temp

查看CPU和GPU記憶體

vcgencmd get_mem arm #CPU
vcgencmd get_mem gpu #GPU

查看韌體版本

vcgencmd version

執行Python程式

sudo python abc.py

安裝軟體

例如: 
sudo apt-get install GIMP
sudo apt-get install VLC
sudo apt-get install thunderbird

移除軟體

dpkg --list                         #顯示已安裝的軟體
sudo apt-get --purge remove XXX #刪除上面指令清單中的XXX軟體

使用pip安裝Python套件

sudo pip install <套件名稱>

安裝Python常用套件

sudo apt-get install zip unzip    (壓縮解壓縮)
pip3 install ipython (Python Shell)
pip3 install requests (網頁擷取)
pip3 install beautifulsoup4 (網頁解析)
pip3 install selenium (自動化工具)
pip3 install django (網頁開發框架)
sudo apt-get install sqlite3 (SQLite 資料庫)
sudo apt-get install r-base (R 語言)
sudo apt-get install nginx (Web 伺服器)
sudo pip3 install uWSGI (WSGI 伺服器)
pip3 install numpy (科學計算)
pip3 install scipy (科學計算)
pip3 install matplotlib (2D 繪圖)
pip3 install pandas (數據處理)
pip3 install scikit-learn (機器學習)

安裝截圖軟體scrot

sudo apt-get install scrot
預設抓取的目錄在 /home/pi/
使用
終端機輸入
scrot #抓取整個桌面
scrot -s #滑鼠選取範圍
scrot -u #抓目前視窗

安裝Vim編輯器

sudo apt-get install vim

安裝PIP套件管理

sudo apt-get install python-pip

安裝Node.js

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt install nodejs
node -v

玩DOS遊戲

樹莓派 Raspberry Pi 使用 DOSBox 模擬器玩 DOS 經典遊戲Raspberry Pi模擬DOS玩遊戲

個人雲端系統

Raspberry Pi 筆記(31):建立個人雲端儲存系統 (二) Owncloud

常見的作業系統

KODI
影音播放系統
Raspbian
官方推薦的首選系統
Ubuntu Mate
Raspberry Pi上的Ubnutu
RetroPie
在樹莓派上玩街機遊戲
樹莓派作業系統大全
http://wiki.nxez.com/rpi:list-of-oses

--

--

No responses yet