使用樹莓派的一些簡單方便操做,不按期更新linux
我使用的是樹莓派4B,系統是Raspbian Desktop,Buster版本:bash
下面的方式,親測有效。編碼
1. 查看溫度spa
cat /sys/class/thermal/thermal_zone0/temp #除以1000就是攝氏度
另外一種方式是使用樹莓派提供的vcgencmd:blog
vcgencmd measure_temp
關於vcgencmd的更多用法,能夠使用以下命令:cmd
vcgencmd commands
能夠查看諸如溫度、電壓、編碼、頻率等多種信息。class
2. 系統運行時間command
uptime
輸出結果說明:im
19:50:51 up 3:04, 2 users, load average: 0.10, 0.03, 0.01
當前時間:19:50:51d3
開機時間:3:04,即三小時零四種
用戶:2 users
平均負載:load average:0.10, 0.03, 0.01(分別是過去1分鐘、5分鐘和15分鐘的平均負載)
3. 查看IP
這個和通常的linux環境下是同樣的,使用:
ifconfig
若是顯示沒有這個命令,則先安裝net-tools:
sudo apt install net-tools
4.