Orangepi

1.将内核烧录到开发板。
Orangepi_第1张图片

2.在这里插入图片描述
3.自己编写一个网络脚本
#!/bin/sh
insmod /root/mt7601u/mt7601Usta.ko

wpa_supplicant -B -i wlan0 -D wext -c /etc/wpa_supplicant.conf

dhclient wlan0

service sshd restart

4.配置web服务器
1. 简介: https://blog.csdn.net/Trustauth/article/details/81082034
我们选择Lighttpd
2. 安装lighttpd (light http deamon) lig http d

           sudo apt-get install lighttpd 
           卸载这个服务器: 
            sudo apt-get --purge remove lighttpd // 彻底删除 

        3. 查看ubuntu的ip , ifconfig

           4.  配置web服务器

           配置文件在  /etc/lighttpd
             /etc/lighttpd/conf-available/README


             lighttpd.conf:  main configuration file , 这个文件时服务器的配置文件 


            5. 对lighttpd  添加python的支持
             sudo vi /etc/lighttpd/lighttpd.conf 
           在文件末尾添加如下内容: 
          ##  python 的脚本支持
           server.modules	+= ( "mod_cgi" )
            cgi.assign	= ( 
           ".py" => "/usr/bin/python3"
            )

          6. 重启服务 
             sudo service lighttpd restart 

          7. 网页的首页是在 /var/www 
           在这个目录下 创建一个py 目录 
           创建一个index文件 

              8. 修改python3 的权限,让这个程序可以root权限运行程序 
            chmod 4755 /usr/bin/python3

5.配置VIM环境

你可能感兴趣的:(Orangepi)