bash: ./make_ext4fs: No such file or directory 错误解决方法

一般出现该错误是因为应用程序是32位导致的,能够使用file命令来查看:

[email protected]:~/Desktop$ file make_ext4fs
make_ext4fs: ELF 32-bit LSB  executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.8, not stripped
[email protected]:~/Desktop$ 

能够从上面看到make_ext4fs为32位程序,所以我们须要让64位机支持执行32位应用。

运行以下两条命令就可以解决这个问题:

sudo apt-get install lib32c-dev
sudo apt-get install lib32stdc++6

再执行make_ext4fs就不会报错了:

[email protected]:~/Desktop$ ./make_ext4fs
Expected filename after options
make_ext4fs [ -l <len> ] [ -j <journal size> ] [ -b <block_size> ]
    [ -g <blocks per group> ] [ -i <inodes> ] [ -I <inode size> ]
    [ -L <label> ] [ -f ] [ -a <android mountpoint> ]
    [ -S file_contexts ]
    [ -z | -s ] [ -w ] [ -c ] [ -J ] [ -v ]
    <filename> [<directory>]
[email protected]:~/Desktop$ 
时间: 2024-10-10 06:08:39

bash: ./make_ext4fs: No such file or directory 错误解决方法的相关文章

win10安装git fatal: open /dev/null or dup failed: No such file or directory错误解决方法

原因看大家意思应该是 非即插即用驱动文件null.sys问题. 网上有很多方案.最后试了一个可行的. 替换  windows/system32/drivers/null.sys为网盘中的文件,之后重启电脑即可. 链接:https://pan.baidu.com/s/1x6udo42W9GiAiw3HE6Xc4A 提取码:x8lr 原文地址:https://www.cnblogs.com/cxfs/p/10235833.html

QT关于“fatal error: QApplication: No such file or directory“错误解决

建立QT工程时,由于QT4兼容性的问题,出现关于“fatal error: QApplication: No such file or directory“错误 解决办法也很简单:在工程的 .pro file: 添加:QT += core gui widgets 如果还没有用,则 将#include <QApplication>换成#include <QtWidgets/QApplication> 例如: #include <QtWidgets/QApplication>

Referenced file contains errors 错误解决方法

Referenced file contains errors (http://www.springframework.org/schema/beans/spring-beans-3.0.xsd). 关于这个错误,导致的原因可能是 一种可能是 之前用的Spring版本,和现在用的不同 对于Eclipse编译器来说,会有个缓存,这样验证的时候他会告诉你版本不统一 Preferences -> General -> Network Connections -> Cache 删除里面的缓存 还

-bash: ls: No such file or directory 错误的原因及解决办法

ubuntu出现如下错误: { Welcome to Ubuntu 16.04.5 LTS (GNU/Linux 4.15.0-42-generic x86_64) * Documentation:  https://help.ubuntu.com * Management:     https://landscape.canonical.com * Support:        https://ubuntu.com/advantage 77 packages can be updated.0

转bash: ./adb: No such file or directory 的解决办法

运行adb出现这种错误:bash: ./adb: No such file or directory  但adb确实存在. 可能1:你用的是64位的Linux,没装32位运行时库,安装$ sudo apt-get install ia32-libs  即可. 可能2:这个adb是用在guest系统里的.可以通过 $ readelf -a ./adb | grep interpreter 看interpreter是/lib/ld-linux.so.2还是/system/bin/linker,如果是

Linux执行可执行文件提示No such file or directory的解决方法

最近在使用Linux操作系统执行一个可执行文件,结果出现了No such file or directory的提示,表示很疑惑. ./tshrf bash: ./tshref: No such file or directory 查看文件信息,可以看到文件是存在的,并且是可以执行的. -rwxr-xr-x 1 yuan yuan 20581 4月 29 2004 tshref 查阅资料后,原因是系统位数与该可执行文件需要的lib库位数不匹配. 用uname命令打印系统信息,发现系统是64位系统

Qt编译错误“GL/gl.h:No such file or directory”的解决方法

备注:1)操作系统:Ubuntu-14.04或12.042)Linux用户:root3)Qt版本:qt-linux-opensource-5.2.0-x86 为了迎接Qt的新纪元(从诺基亚移居到芬兰公司Digia家中),我决定将Qt开发环境升级到当前的最新版5.2,在安装好开发环境后,编译第一个工程的时候出现了如下错误:"GL/gl.h:No such file or directory",这是由于系统中没有安装OpenGL库导致的,于是在控制台中输入以下命令安装OpenGL库及其工具

Incorrect key file for table错误解决方法

问题现象: alter table portal_app_xxxx_xxx add devno varchar(64) NOT NULL DEFAULT '' COMMENT '设备机编',add serialno varchar(64) NOTNULL DEFAULT '' COMMENT '绑定流程流水号',Error_code: 1034 MySQL error code 1034 (ER_NOT_KEYFILE): Incorrect key file for table 'XXXXXX

关于Qt 报QDomDocument: No such file or directory错误解决办法

肯定是没有找到相关的路径,这时候只需要在.pro文件中加入便好了,比如我要用到读写xml的一些头文件,则需要在.pro中加入如下代码: 就可以正常引用了.