学习linux嵌入式开发

买了块ARM2140,添加块80G硬盘,安装FC7。好久不弄linux连mount U盘都花了我20分钟。(略)

用minicom连上2410,

起动ARM2410 ,先在ViVi 状态下 看下参数, 以免搞错。 param show. 在boot 进入Qt Ctrl_c 中断#  ifconfig eth0 192.168.0.15 up 配置网卡。

配置nfs

在fc7系统配置 # vi /etc/exports  /ok  192.168.0.15 (rw,sync)

再启动nfs 服务# /etc/init.d/nfs restart

回到ARM 机 # mount 192.168.0.58:/ok  /mnt  两台机器要同一网段。

# ls /mnt 搞定nfs 这样就把arm 机安装f7的pc连起了,简单吧。

安装 boa 在安装FC7的pc机

# tar xzf boa-0.94.13.tar.gz

# cd boa--0.94.13/src

#./configure

# make   是交叉编译环境arm-linux-gcc 得到 boa二进制执行文件

回到 arm机

# cp ok/boa /etc/boa/boa

# cp okl/boa.conf /etc/boa/boa.conf

# vi boa.conf 

修改Group nogroup  0 

       ScriptAlias /cgi-bin /usr/lib/cgi-bin  ScriptAlias /cgi-bin /var/www/cgi-bin/

      Servername       # mkdir /var/log/boa 

      #mkdir /var/www

     #./boa

   起动成功后在 /var/log/boa有个文件说明的。

 在ie中输入arm机网卡地址 http://192.168.0.15访问成功。

 

 

 

 

你可能感兴趣的:(linux,嵌入式,qt,ie,up,c)