首页 > 系统相关 >Linux目录下明明有可执行文件却提示找不到,“No such file or directory”

Linux目录下明明有可执行文件却提示找不到,“No such file or directory”

时间:2023-05-21 17:34:21浏览次数:33  
标签:install No sudo i686 file Linux such

明明一切正常,find ls均可找到,权限也是777

 

检查文件的头部:

readelf -h repeat

发现machine条目:

Machine:        Intel 80386

问题出在了文件是32位的,但是虚拟机是64位的

 

如果想要运行文件,需要安装32位程序的运行架构:

$ sudo yum install xulrunner.i686
$ sudo yum install libXtst.i686

root下运行

标签:install,No,sudo,i686,file,Linux,such
From: https://www.cnblogs.com/FrankJin/p/17418862.html

相关文章

  • 在tofino数据平面上实现表的模拟
    在tofino数据平面上实现表的模拟实验目的当需要在数据平面实现较为复杂的信息存储和更新时,经常产生在数据平面存放一张表的需求,例如对于多台感兴趣的交换机,希望记录并更新交换机的各项网络状态信息。从数据抽象上来说,以表的形式来记录是直观的,从使用速率来说,将信息存储在数据平......
  • NOIP2018普及组试题题解
    1.标题统计原题:https://www.luogu.com.cn/problem/P5015#include<bits/stdc++.h>#definelllonglongusingnamespacestd;strings;intans=0;intmain(){ getline(cin,s);intlen=s.length(); for(inti=0;i<len;i++){ if(s[i]>='0'&&......
  • 宝塔面板中安装php8以上环境,提示: configure: error: iconv does not support errno
    问题:宝塔面板中安装php8编译时提示configure:error:iconvdoesnotsupporterrno#下面这些是配置yum源和epel源,阿里云ecs在centos8测试成功wgethttp://mirrors.cloud.aliyuncs.com/repo/Centos-vault-8.5.2111.repo-O/etc/yum.repos.d/Centos-vault-8.5.2111.repo&&......
  • Node & NPM upgrade
     Node和Npm升级节奏都非常快,因此版本升级是Noder经常回碰到的事情.NPMnpm升级非常方便,直接使用npm就可以1$npmupdate-gnpmnpm卸载方法如下1$sudonpmuninstallnpm-g如果该方法失败,可以先获取npm源代码,然后$sudomakeuninstallNode关于Node的安装之前......
  • Do not forget to use Gzip for Express.js
     http://inspiredjw.com/do-not-forget-to-use-gzip-for-express/ Whenagzipcompatiblebrowserrequeststoawebserver,webservercancompresstheresponsetothebrowserbackandthebrowsercandecompresstheresponseandfinallythebrowsergettheori......
  • 把一个nodejs程序做成传统linux服务
     1:http://howtonode.org/deploying-node-upstart-monit  (  DeployingNode.jsWithUpstartandMonit)  2: https://www.exratione.com/2013/02/nodejs-and-forever-as-a-service-simple-upstart-and-init-scripts-for-ubuntu/    ( Node.jsandFor......
  • Nodejs(七)-跨域访问
     今天在使用ajax(http://localhost:8080%EF%BC%89%E8%B0%83%E7%94%A8nodejs%E5%86%99%E7%9A%84restfulAPI(http://localhost:3000%EF%BC%89%E6%97%B6%EF%BC%8C%E6%8A%A5%E4%BA%86%E5%A6%82%E4%B8%8B%E4%B8%80%E4%B8%AA%E9%94%99%E8%AF%AF%EF%BC%9AXMLHttpRequestcannotloadhttp:......
  • Fibers and Threads in node.js – what for?
    https://bjouhier.wordpress.com/2012/03/11/fibers-and-threads-in-node-js-what-for/ Ilike node.js,andI’mnottheonlyone,obviously!Ilikeitprimarilyfortwothings:itissimple anditis veryfast.Ialreadysaiditmanytimesbutonemorewon’thu......
  • linux4位权限分别代表什么意思(转载)
    接触linux一段时间了,有个权限问题让我一直郁闷。网上也没找到(估计是关键字不对),就是这个0777,最前面的0是什么意思。最近看到一本书(Linux与unixshell编程指南),终于找到答案了。 先说一下777什么意思吧,linux下文件权限分为所属用户权限、所属组权限和其他权限。每一个又分为r(读)w(写)x(可......
  • nodejs多线程,真正的非阻塞
    干货:收藏:http://cnodejs.org/topic/518b679763e9f8a5424406e9node从他推出至今,充满赞美和饱受诟病的都是其单线程模型,所有的任务都在一个线程中完成(I/O等例外),优势的地方自然是免去了频繁切换线程的开销,以及减少资源互抢的问题等等,但是当nodejs面对cpu密集型模型的时候就力不从心了......