fdutils の Fedora 25 インストールに linux/ext2_fs.h がありません。

fdutils の Fedora 25 インストールに linux/ext2_fs.h がありません。

Fedora 25にfdutilsをインストールしようとしましたが、./configureを実行すると次のように出力されます。

checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking whether gcc needs -traditional... no
checking for a BSD-compatible install... /bin/install -c
checking whether ln -s works... yes
checking for install-info... /sbin/install-info
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking linux/ext_fs.h usability... no
checking linux/ext_fs.h presence... no
checking for linux/ext_fs.h... no
checking linux/xia_fs.h usability... no
checking linux/xia_fs.h presence... no
checking for linux/xia_fs.h... no
checking sys/sysmacros.h usability... yes
checking sys/sysmacros.h presence... yes
checking for sys/sysmacros.h... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating doc/Makefile
config.status: creating config.h
config.status: config.h is unchanged

具体的には、linux/ext_fs.hとlinux/xia_fs.hの検索に失敗した結論を参照してください。これらのヘッダーファイルがないため、make の実行に失敗するため、fdutils パッケージをインストールできません。を試しましたが、apt-get install e2fslibsパッケージが見つかりませんでした。

ベストアンサー1

あなたのタイトルは、あなたがFedoraを使用していることを示します。ただし、使用しているパッケージマネージャaptではこれは不可能です。dnf

あなたできるこれを行う:yum install e2fsprogs-devel

しかし、ext_fs.hはありません。あなたが達成したいものが何であるかは明らかではありません。ソフトウェアが長い間更新されていないと仮定します。このパッケージをインストールしても望ましい結果が出るという保証はありません。

おすすめ記事