我想安装 afpfs-ng 以从我的 Mac 访问 AFP 共享。我正在运行 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
配置:错误:在 $PATH 中找不到可接受的 C 编译器
您需要安装 C 编译器。尝试apt-get install gcc
。