MacからAFP共有にアクセスするためにafpfs-ngをインストールしたいです。私はDebianを使っていて、以下の指示に従っています。https://unix.stackexchange.com/a/175/17242、そして私は
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... no
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
インストール中に何らかの問題が発生したということでしょうか? Linux で AFP アクセスを有効にするより良い方法はありますか?
答え1
Debian には、コンパイルに必要なほとんどのプログラムが含まれるメタパッケージがあります。
apt-get build-essential
また、次のビルドに必要な依存関係も取得する必要がありますafpfs-ng
。
apt-get install libgcrypt-dev libfuse-dev libgmp-dev libreadline-dev libncurses-dev
(このリストはhttp://ftp.de.debian.org/debian/pool/main/a/afpfs-ng/afpfs-ng_0.8.1-5.dsc)
答え2
configure: エラー: $PATH に適切な C コンパイラが見つかりません
C コンパイラをインストールする必要があります。 を試してくださいapt-get install gcc
。