從原始碼安裝 afpfs-ng

從原始碼安裝 afpfs-ng

我想安裝 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

相關內容