<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>开发板 on 背字根</title><link>https://www.beizigen.com/tag/demoboard/</link><description>Recent content in 开发板 on 背字根</description><generator>Hugo</generator><language>zh-CN</language><copyright>2016</copyright><lastBuildDate>Wed, 17 Dec 2025 16:29:11 +0800</lastBuildDate><atom:link href="https://www.beizigen.com/tag/demoboard/index.xml" rel="self" type="application/rss+xml"/><item><title>备份单板机系统Armbian并缩小镜像大小</title><link>https://www.beizigen.com/post/backup-armbian-and-shrink-image-size/</link><pubDate>Wed, 17 Dec 2025 16:29:11 +0800</pubDate><guid>https://www.beizigen.com/post/backup-armbian-and-shrink-image-size/</guid><description>&lt;p>在单板机安装配置系统后，可以备份整个系统以备不时之需。如果单板机USB挂载了其他存储，可以在线备份，否则就需要取出TF卡操作。&lt;/p>
&lt;p>查看设备名称：&lt;/p>
&lt;pre tabindex="0">&lt;code>lsblk
&lt;/code>&lt;/pre>&lt;p>使用dd命令备份，如果是在线备份，确保of指向挂载的外部设备：&lt;/p></description></item><item><title>香橙派安装Armbian并配置国内软件源、SSH和静态IP</title><link>https://www.beizigen.com/post/orange-pi-install-armbian/</link><pubDate>Mon, 08 Dec 2025 14:54:24 +0800</pubDate><guid>https://www.beizigen.com/post/orange-pi-install-armbian/</guid><description>&lt;p>以Orange Pi Zero 全志H2为例，官方Debian镜像下载地址：&lt;/p>
&lt;p>&lt;a href="http://www.orangepi.cn/html/hardWare/computerAndMicrocontrollers/service-and-support/Orange-Pi-Zero.html" target="_blank" rel="noopener">http://www.orangepi.cn/html/hardWare/computerAndMicrocontrollers/service-and-support/Orange-Pi-Zero.html&lt;/a>&lt;/p>
&lt;p>该下载页面提供的Debian下载地址是百度网盘分享链接，版本为Debian 10。推荐在Armbian官网下载，Armbian官网目前提供了Debian 12 (Bookworm)和Debian 13 (Trixie)：&lt;/p></description></item><item><title>香橙派查看CPU温度方法</title><link>https://www.beizigen.com/post/orangepi-check-cpu-temperature/</link><pubDate>Sun, 22 Sep 2024 09:22:11 +0800</pubDate><guid>https://www.beizigen.com/post/orangepi-check-cpu-temperature/</guid><description>&lt;p>在Ubuntu上，可以使用sensors查看CPU温度：&lt;/p>
&lt;pre tabindex="0">&lt;code>sudo apt install lm_sensors
sensors
&lt;/code>&lt;/pre>&lt;p>香橙派上却报错：&lt;/p>
&lt;pre tabindex="0">&lt;code>No sensors found!
Make sure you loaded all the kernel drivers you need.
Try sensors-detect to find out which these are.
&lt;/code>&lt;/pre>&lt;p>香橙派查看CPU温度可以使用以下命令：&lt;/p>
&lt;pre tabindex="0">&lt;code>cat /sys/class/thermal/thermal_zone0/temp
&lt;/code>&lt;/pre>&lt;p>输出的结果是千分之一摄氏度，可以使用以下命令输出更直观的信息：&lt;/p></description></item><item><title>香橙派关闭图形界面方法</title><link>https://www.beizigen.com/post/orange-pi-disable-graphical/</link><pubDate>Sun, 22 Sep 2024 09:11:05 +0800</pubDate><guid>https://www.beizigen.com/post/orange-pi-disable-graphical/</guid><description>&lt;p>图形界面比较占用资源，以Debian为例，香橙派关闭图形界面命令如下：&lt;/p>
&lt;pre tabindex="0">&lt;code>systemctl set-default multi-user.target
&lt;/code>&lt;/pre>&lt;p>重启系统：&lt;/p>
&lt;pre tabindex="0">&lt;code>reboot
&lt;/code>&lt;/pre>&lt;p>如果需要重新启用图形界面，使用如下命令：&lt;/p>
&lt;pre tabindex="0">&lt;code>systemctl set-default graphical.target
&lt;/code>&lt;/pre>&lt;p>重启系统：&lt;/p>
&lt;pre tabindex="0">&lt;code>reboot
&lt;/code>&lt;/pre>&lt;p>我一直是使用SSH远程管理的，所以关闭图形界面后资源占用没什么区别。&lt;/p></description></item><item><title>香橙派设置内网静态IP</title><link>https://www.beizigen.com/post/orangepi-set-static-ip/</link><pubDate>Sat, 21 Sep 2024 20:21:49 +0800</pubDate><guid>https://www.beizigen.com/post/orangepi-set-static-ip/</guid><description>&lt;p>当重启网络或香橙派重新连接网络后，IP可能会发生变化，每次都在路由器中查看很不方便。所以，需要为香橙派分配一个固定的IP。&lt;/p>
&lt;p>安装网络管理工具：&lt;/p>
&lt;pre tabindex="0">&lt;code>apt install network-manager
&lt;/code>&lt;/pre>&lt;p>查看网卡信息：&lt;/p>
&lt;pre tabindex="0">&lt;code>nmcli con show
&lt;/code>&lt;/pre>&lt;p>可以看到类似如下的信息：&lt;/p>
&lt;pre tabindex="0">&lt;code>Wired connection 1 xxxxxx ethernet eth0
&lt;/code>&lt;/pre>&lt;p>查看当前IP地址，注意留意掩码位：&lt;/p></description></item><item><title>香橙派远程登录及使用SSH密钥登录方法</title><link>https://www.beizigen.com/post/orange-pi-ssh-key-login/</link><pubDate>Sat, 21 Sep 2024 19:57:17 +0800</pubDate><guid>https://www.beizigen.com/post/orange-pi-ssh-key-login/</guid><description>&lt;p>香橙派安装好Debian系统后，接入局域网，在路由器管理界面可以查看到分配的内网IP。本文假设得到的IP为：192.168.1.8&lt;/p>
&lt;p>&lt;a href="https://www.beizigen.com/post/orange-pi-install-backup-debian/">香橙派安装、备份Debian系统教程&lt;/a>&lt;/p>
&lt;p>使用ssh命令远程登录：&lt;/p>
&lt;pre tabindex="0">&lt;code>ssh orangepi@192.168.1.8
&lt;/code>&lt;/pre>&lt;p>香橙派Debian系统的默认密码为orangepi，如果需要使用密钥登录，可参考以下教程操作。&lt;/p></description></item><item><title>香橙派安装、备份Debian系统教程</title><link>https://www.beizigen.com/post/orange-pi-install-backup-debian/</link><pubDate>Sat, 21 Sep 2024 17:54:08 +0800</pubDate><guid>https://www.beizigen.com/post/orange-pi-install-backup-debian/</guid><description>&lt;p>在香橙派官网资源下载页面根据你的开发板型号下载镜像和官方工具包：&lt;/p>
&lt;p>&lt;a href="http://www.orangepi.cn/html/serviceAndSupport/index.html" target="_blank" rel="noopener">http://www.orangepi.cn/html/serviceAndSupport/index.html&lt;/a>&lt;/p>
&lt;p>我的开发板是Orange Pi Zero，支持Debian 10。&lt;/p>
&lt;h2>安装系统&lt;/h2>&lt;p>解压镜像压缩包Orangepizero_2.0.8_debian_buster_server_linux5.4.65.7z，得到镜像文件Orangepizero_2.0.8_debian_buster_server_linux5.4.65.img&lt;/p></description></item></channel></rss>