谷动谷力

标题: 【平头哥Sipeed LicheeRV 86开发板试用】连接网络体验 [打印本页]

作者: 鸣涧    时间: 2022-3-10 23:50
标题: 【平头哥Sipeed LicheeRV 86开发板试用】连接网络体验
【平头哥Sipeed LicheeRV 86开发板试用】连接网络体验


配置有线网络
网络连接如下图所示:
LicheeRV-86 Panel 支持百兆网络,默认关闭的,使用套餐附送的网线尾线接上网线后,执行以下命令来连接有线网络
  1. ifconfig eth0 up
  2. udhcpc -ieth0
复制代码


要开机就连接有线网络可以配置文件rc.local, 用vim(不会vim的参阅 linux VIM基本命令)打开然后,然后编辑:
  1. vim /etc/rc.local
复制代码

在exit 0前添加:
  1. ifconfig eth0 up
  2. udhcpc -ieth0
复制代码


保存退出


配置无线网络
LicheeRV86 底板默认使用XR829 wifi模块,可以使用以下指令进行联网操作:
先配置热点信息:

打开wifi配置文件

  1. vim /etc/wifi/wpa_supplicant.conf
复制代码


在后面添加内容:
  1. network={  
  2.                 ssid="Wifi ssid name"  
  3.                 psk="password ****"  
  4.         }
复制代码
      
保存退出

  1. :wq
复制代码


配置完成后重启,ifconfig wlan0 up; udhcpc -iwlan0 即可连上对应的wifi。
重启看到有线和无线都连接成功,其实有一个即可
  1. root@MaixLinux:/tmp# ifconfig
  2. eth0      Link encap:Ethernet  HWaddr 9E:75:60:17:DA:4F
  3.           inet addr:192.168.0.73  Bcast:192.168.0.255  Mask:255.255.255.0
  4.           inet6 addr: fe80::9c75:60ff:fe17:da4f/64 Scope:Link
  5.           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  6.           RX packets:264 errors:0 dropped:0 overruns:0 frame:0
  7.           TX packets:55 errors:0 dropped:0 overruns:0 carrier:0
  8.           collisions:0 txqueuelen:1000
  9.           RX bytes:24023 (23.4 KiB)  TX bytes:4592 (4.4 KiB)
  10.           Interrupt:62

  11. wlan0     Link encap:Ethernet  HWaddr 08:BE:E0:98:24:70
  12.           inet addr:192.168.0.70  Bcast:192.168.0.255  Mask:255.255.255.0
  13.           inet6 addr: fe80::abe:e0ff:fe98:2470/64 Scope:Link
  14.           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  15.           RX packets:17857 errors:0 dropped:0 overruns:0 frame:0
  16.           TX packets:11370 errors:0 dropped:0 overruns:0 carrier:0
  17.           collisions:0 txqueuelen:1000
  18.           RX bytes:22775139 (21.7 MiB)  TX bytes:13022254 (12.4 MiB)
复制代码


连上网络后,就可以使用ssh远程登录板卡,或者使用scp来进行文件传输啦~
推荐此工具MobaXterm全带有串口终端 ssh scp sftp..........
  

使用ssh登录,要用户名密码为 root,tina



作者: 鸣涧    时间: 2022-3-18 17:14
如果用了界面配置的wifi, 第二次,启动时,  不会自动连接,  因为会多mac 这点一直想不通, 因为点我折腾了 好几天
作者: 鸣涧    时间: 2022-3-18 17:16
如果用了界面配置的wifi, 第二次,启动时,  自动连接会不成功,  因为会多mac,  
/etc/wifi/wpa_supplicant.conf 删除mac 行就好了




欢迎光临 谷动谷力 (http://bbs.sunsili.com/) Powered by Discuz! X3.2