收到的米尔瑞萨RZ/G2L开发板上电测试一下SSH登录方式和其它测试! SSH登录 在使用之前,需要事先连接网络,笔者这里使用的是以太网,事先需要使用串口的登录,然后输入以下命令查看IP地址: ifconfig 也可修改网络 IP地址 ,使用以下命令: ifconfig eth0 192.168.101.5当然啦,如果已经将以太网配置成DHCP模式,那么在只要插上网线就会得到一个IP地址。修改/etc/network/inteRFaces文件即可,修改内容如下:
然后就可使用ifconfig查看IP。 接下来就可使用SSH登录系统了,还是可以使用Xshell等工具,当然也可在ubuntu系统中使用SSH登录。 值得注意的是,登录用户和密码默认都是root,如果忘记密码可以通过串口登录进系统,使用passwd修改。成功登录打印信息如下: 和使用串口登录一样。 下面是烧录BSP到SD卡的具体操作:#Change to the Yocto output directory that contains the files $ cd build/tmp/deploy/images/smarc-rzg2l #Copy the Linux kernel and Device Tree to partition 1 sudo cp -v Image /media/USER/RZ_FAT
sudo cp -v r9a07g044l2-smarc.dtb /media/USER/RZ_FAT Copy and expand the Root File System to partition 2 sudo tar -xvf core-image-weston-smarc-rzg2l.tar.gz -C /media/USER/RZ_ext #Make sure all files are finished writing before removing the USB card reader from the PC $ sync 以上做了SSH登录方式和烧录BSP到SD卡的基本操作,对米尔瑞萨RZ/G2L开发板连接电脑的基本连接。
|