Chinaunix首页 | 论坛 | 博客
  • 博客访问: 728327
  • 博文数量: 130
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 2198
  • 用 户 组: 普通用户
  • 注册时间: 2011-11-29 12:48
个人简介

每一个“丑得人神共愤”的泡妞高 手都有一颗坚忍的心,这证明了人类 在绝境中毫不妥协的求生精神,反正丑都丑了,索性放开手脚大干一场,这就叫“无产阶级失去的是锁链,得到的是全世界”

文章分类

全部博文(130)

文章存档

2013年(130)

我的朋友

分类: LINUX

2013-10-08 17:35:04

问题:
执行编译生成的./a.out。报错:./a.out no such file or directory
./a.out是存在的,而且也有执行权限
原因:
./a.out所需的elf 解释器不存在。
readelf -l a.out可看到
  INTERP         0x000154 0x08048154 0x08048154 0x00013 0x00013 R   0x1
      [Requesting program interpreter: /lib/ld-linux.so.2]
然而在我chroot后,该文件是不存在的。所有报错no such file or directory。
在execve(2)看到错误ENOEN:
ENOENT The file filename or a script or ELF interpreter does not exist, or a shared library needed for file or interpreter cannot be found.
阅读(1844) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

asdf71612013-10-09 13:55:06

看下是不是32位或者64位的问题。。