1、参考触觉智能官方的文档: Ubuntu 系统使用手册.pdf *附件:Ubuntu 系统使用手册.pdf
2、使用串口方式接入(串口调试端口位于J5,通信参数为1500000 8 N 1)
3、设置wifi上网
touch /etc/netplan/01-wifi-sta.yaml
需修改里面的文件内容
配置生效用下面的两行命令:几秒之后生效
root@ido:~
root@ido:~
ifconfgi wlan0 查看网络情况
4、看看网络是不是通了
5、查看Ubuntu的源:(默认已经是阿里云源)
cat /etc/apt/sources.list
6、如果需要代理,则设置一下:
env |grep -i proxy
伪示例:
export http_proxy=http:
export https_proxy=http:
7、安装 MagicMirror²
# git clone https:
# cd MagicMirror/
# npm run install-mm
# cp config/config.js.sample config/config.js
var config =
{
address: '0.0.0.0',
port: 8081,
ipWhitelist: [
'127.0.0.1',
'192.168.31.110',
'192.168.31.120'
],
language: 'zh-cn',
locale: 'zh'
modules: [
...
}
# npm run start
精彩继续。。。。。。
|