【平头哥Sipeed LicheeRV 86开发板试用】连接网络体验
配置有线网络
网络连接如下图所示: LicheeRV-86 Panel 支持百兆网络,默认关闭的,使用套餐附送的网线尾线接上网线后,执行以下命令来连接有线网络 - ifconfig eth0 up
- udhcpc -ieth0
复制代码
要开机就连接有线网络可以配置文件rc.local, 用vim(不会vim的参阅 linux VIM基本命令)打开然后,然后编辑:
在exit 0前添加:
- ifconfig eth0 up
- udhcpc -ieth0
复制代码
保存退出
配置无线网络LicheeRV86 底板默认使用XR829 wifi模块,可以使用以下指令进行联网操作: 先配置热点信息:
打开wifi配置文件
- vim /etc/wifi/wpa_supplicant.conf
复制代码
在后面添加内容: - network={
- ssid="Wifi ssid name"
- psk="password ****"
- }
复制代码
保存退出
配置完成后重启,ifconfig wlan0 up; udhcpc -iwlan0 即可连上对应的wifi。 重启看到有线和无线都连接成功,其实有一个即可 - root@MaixLinux:/tmp# ifconfig
- eth0 Link encap:Ethernet HWaddr 9E:75:60:17:DA:4F
- inet addr:192.168.0.73 Bcast:192.168.0.255 Mask:255.255.255.0
- inet6 addr: fe80::9c75:60ff:fe17:da4f/64 Scope:Link
- UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
- RX packets:264 errors:0 dropped:0 overruns:0 frame:0
- TX packets:55 errors:0 dropped:0 overruns:0 carrier:0
- collisions:0 txqueuelen:1000
- RX bytes:24023 (23.4 KiB) TX bytes:4592 (4.4 KiB)
- Interrupt:62
- wlan0 Link encap:Ethernet HWaddr 08:BE:E0:98:24:70
- inet addr:192.168.0.70 Bcast:192.168.0.255 Mask:255.255.255.0
- inet6 addr: fe80::abe:e0ff:fe98:2470/64 Scope:Link
- UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
- RX packets:17857 errors:0 dropped:0 overruns:0 frame:0
- TX packets:11370 errors:0 dropped:0 overruns:0 carrier:0
- collisions:0 txqueuelen:1000
- RX bytes:22775139 (21.7 MiB) TX bytes:13022254 (12.4 MiB)
复制代码
连上网络后,就可以使用ssh远程登录板卡,或者使用scp来进行文件传输啦~ 推荐此工具MobaXterm全带有串口终端 ssh scp sftp..........
使用ssh登录,要用户名密码为 root,tina
|