首页 > 代码库 > Beaglebone Back学习三(开发环境搭建)

Beaglebone Back学习三(开发环境搭建)

开发环境搭建

1 Ubuntu环境搭建

2 Window环境搭建

3 开发板环境搭建

1 Ubuntu环境搭建

(1)安装必要的网络工具

samba nfs tftp vmware-tools

samba

nfs

  • apt-get install nfs-kernel-server 
  • vim  /etc/exports  (/path/to/nfs  *(rw,sync,no_root_squash) )
  • /etc/init.d/nfs-kernel-server restart

(2)配置通信网络

指定网络

2 Window环境搭建

指定网络

3 开发板环境搭建

nfs

  • opkg install portmap-dev
  • opkg install ufs-utils-client
  • mount -t nfs ip:/path/to/nfs(对应ubuntu的IP地址和nfs目录)/mnt/nfs(对应开发板的) -o nolock,proto=tcp,nfsvers=3,回车后,虽然出现如下错误,但不要管

    Can‘t set permissions on mtab: Operation not permitted

  • ls /mnt/nfs

安装

 

 

 

 

 

参考链接

BeagleBone 的NFS启动配置和流程

 Beaglebone Black从零开始系列教程大汇总

3