可视化连接树莓派
一种是使用windows自带的远程桌面,mstsc.exe连接树莓派;
另一种是下载VNC软件,连接到树莓派。(新手学习的话,建议先用远程桌面方式,以防先用vnc再用远程桌面出现连接冲突,不知如何解决影响体验)
那么如何使用windows远程桌面连接树莓派呢?
首先,在raspbian系统中安装一个服务-xrdp。
sudo apt-get install xrdp
然后,启动xrdp服务。
sudo /etc/init.d/xrdp restart (此时会启用相应端口,配置方面默认即可)
最后,查看 3350 3389 5910 这三个端口处于LISTEN,一般就没问题了。
netstat -tnl
无线设置
1.扫描周围的网络。
sudo iwlist wlan0 scan
2.用nano工具配置wifi信息。
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="NETGEAR48-5G"
psk="passwd"
key_mgmt=WPA-PSK
priority=1
}
3.重启树莓派,拔下网线,稍等一会再登路由器管理界面,查看新树莓派的IP,重新ssh即可
监控树莓派CPU温度、CPU使用情况、内存使用情况、硬盘使用情况,使用python编写代码monitor.py。
python py3/monitor.py
import os
# Return CPU temperature as a character string
def getCPUtemperature():
res = os.popen('vcgencmd measure_temp').readline()
return(res.replace("temp=","").replace("'C\n",""))
# Return RAM information (unit=kb) in a list
# Index 0: total RAM
# Index 1: used RAM
# Index 2: free RAM
def getRAMinfo():
p = os.popen('free')
i = 0
while 1:
i = i + 1
line = p.readline()
if i==2:
return(line.split()[1:4])
# Return % of CPU used by user as a character string
def getCPUuse():
return(str(os.popen("top -n1 | awk '/Cpu\(s\):/ {print $2}'").readline().strip()))
# Return information about disk space as a list (unit included)
# Index 0: total disk space
# Index 1: used disk space
# Index 2: remaining disk space
# Index 3: percentage of disk used
def getDiskSpace():
p = os.popen("df -h /")
i = 0
while 1:
i = i +1
line = p.readline()
if i==2:
return(line.split()[1:5])
# CPU informatiom
CPU_temp = getCPUtemperature()
CPU_usage = getCPUuse()
# RAM information
# Output is in kb, here I convert it in Mb for readability
RAM_stats = getRAMinfo()
RAM_total = round(int(RAM_stats[0]) / 1000,1)
RAM_used = round(int(RAM_stats[1]) / 1000,1)
RAM_free = round(int(RAM_stats[2]) / 1000,1)
# Disk information
DISK_stats = getDiskSpace()
DISK_total = DISK_stats[0]
DISK_used = DISK_stats[1]
DISK_perc = DISK_stats[3]
if __name__ == '__main__':
print('')
print('CPU Temperature = '+CPU_temp)
print('CPU Use = '+CPU_usage)
print('')
print('RAM Total = '+str(RAM_total)+' MB')
print('RAM Used = '+str(RAM_used)+' MB')
print('RAM Free = '+str(RAM_free)+' MB')
print('')
print('DISK Total Space = '+str(DISK_total)+'B')
print('DISK Used Space = '+str(DISK_used)+'B')
print('DISK Used Percentage = '+str(DISK_perc))
常见命令
dpkg -L + 软件包的名字,可以知道这个软件包包含了哪些文件
sudo raspi-config SSH进行系统配置
df -h 树莓派扩展分区
ifconfig 联网信息
lscpu cpu信息
lsusb usb信息
free 内存
fdisk 磁盘信息
sudo apt-get install 安装软件
sudo apt-get remove 卸载软件
sudo apt-get remove –purge #卸载并清除配置
sudo apt-get upgrade #进行系统升级
sudo rpi-update #树莓派更新
sudo apt-cache search #搜索软件包
which 查找可执行文件的路径
type 查看类型,如果是可执行文件,输出路径
pwd 打印当前路径
lsb_release -a 查看版本详情
uname -a 查看当前系统版本