嵌入式linux学习
kelvindream
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
RHEL6下友善之臂交叉编译工具的安装
1.将linux下的交叉编译工具arm-linux-gcc-4.5.1-v6-vfp-20120301.tgz拷贝到/opt目录下,使用有键打开终端,输入如下指令 [root@localhost /]# cd / [root@localhost /]# tar -xzvf /opt/arm-linux-gcc-4.5.1-v6-vfp-20120301.tgz 2.解压完成后,在终端中原创 2016-12-12 12:33:43 · 1310 阅读 · 0 评论 -
mount.nfs: access denied by server while mounting 一个解决办法
这两天在搭建嵌入式开发环境,配置好NFS服务器后,遇到了一个很纠结的错误 使用 mount -t nfs 127.0.0.1:/home/lzgonline/rootfs /mnt 和 mount -t nfs 192.168.1.9:/home/lzgonline/rootfs /mnt 本机挂载nfs则没有问题,然而使用 mount -t nfs 192.168.3.12:/home/lzg转载 2016-12-24 13:19:49 · 15129 阅读 · 0 评论 -
解决出现“ gmake: g++: Command not found gmake: *** [project.o] Error 127”的问题
1、在编译qt-everywhere-opensource-src-4.8.5时,出现如下问题gmake: g++: Command not found gmake: *** [project.o] Error 127 make: *** No targets specified and no makefile found. Stop.2、查找错误原因,使用指令yum search “gcc-c+原创 2016-12-24 19:52:21 · 7036 阅读 · 0 评论 -
yum update时候出现Another app is currently holding the yum lock解决方法
/var/run/yum.pid我打开看了,只是一个数,其他的 可能是系统自动升级正在运行,所以yum被锁定了。 可以通过执行rm -rf /var/run/yum.pid 来强行解除锁定,然后你的yum就可以运行了。转载 2016-12-28 18:43:21 · 417 阅读 · 0 评论 -
在 Linux 里实现 FriendlayARM 提供的 SD-Flasher.exe工具的功能
SD-Flasher.exe用于制作 Tiny210 的SD启动盘, 厂家提供的这个工具是基于 Windows , 实际上,也可以使用 Linux 命令进行基于磁盘的烧写,实现启动盘的制作。 具体步骤如下(我使用的开发板是 Tiny 210): 1. 首先删除分区表内容 sudo dd if=/dev/zero of=/dev/sdb bs=512 count=1 2. 新建分区转载 2016-12-28 18:47:30 · 1348 阅读 · 0 评论
分享