香橙派——基本配置教程

官方网址:http://www.orangepi.cn/html/hardWare/computerAndMicrocontrollers/service-and-support/Orange-Pi-Zero-3.html

镜像用户手册等各种资源都在上面~

基础配置

  • 命令行连接🔗WiFi:Orange pi zero 3命令行配网方法

    • 一句话总结:
    bash 复制代码
    sudo nmcli device wifi connect "<WIFI名>" password "<密码>"
    例如:sudo nmcli device wifi connect "Takway-AI" password "takway123"
  • 配置开机自启动脚本:

    • 创建
    bash 复制代码
    sudo vim /etc/systemd/system/test.service
    • 内容:
    bash 复制代码
    [Unit]
    Description=My Service
    After=network.target
     
    ​
    [Service]
    Type=simple
    WorkingDirectory=/home/orangepi/takway_base
    ExecStart=python3 /home/orangepi/takway_base/ws_client.py
    User=root
     
    [Install]
    WantedBy=multi-user.target
    • 加载
    bash 复制代码
    sudo systemctl daemon-reload
    sudo systemctl enable test.service
    bash 复制代码
    sudo systemctl start test.service
    bash 复制代码
    sudo systemctl status test.service
相关推荐
面向星辰11 分钟前
机器学习过拟合和正则化
python
浔川python社18 分钟前
《Python 小程序编写系列》(第三部):简易文件批量重命名工具
python·小程序·apache
QD.Joker39 分钟前
高德MCP服务接入
python
孤客网络科技工作室43 分钟前
孤客截图工具 Pro - 从开发到打包的完整指南
python
Q_Q196328847543 分钟前
python+django/flask的医院财务管理系统
spring boot·python·django·flask·node.js
herogus丶1 小时前
【LLM】LLaMA-Factory 训练模型入门指南
python·ai编程·llama
谏书稀1 小时前
LLaMA Factory微调大模型
python·transformer·llama
雨中散步撒哈拉2 小时前
16、做中学 | 初三上期 Golang面向对象_进阶
爬虫·python·golang
追风少年ii2 小时前
单细胞空间联合分析新贵--iStar
python·数据分析·空间·单细胞
antonytyler3 小时前
机器学习实践项目(二)- 房价预测增强篇 - 特征工程四
人工智能·python·机器学习