如何在沒有 libpam 的情況下建立 openvpn?

如何在沒有 libpam 的情況下建立 openvpn?

由於我沒有安裝 libpam 的 root 權限,因此無法運行./configure.那麼有沒有什麼方法可以在沒有 libpam 的情況下建構 openvpn 呢?

checking for OPENSSL_CRYPTO... yes
checking for OPENSSL_SSL... yes
checking for EVP_CIPHER_CTX_set_key_length... yes
checking for ENGINE_load_builtin_engines... yes
checking for ENGINE_register_all_complete... yes
checking for ENGINE_cleanup... yes
checking for ssl_init in -lpolarssl... no
checking for aes_crypt_cbc in -lpolarssl... no
checking for lzo1x_1_15_compress in -llzo2... no
checking for lzo1x_1_15_compress in -llzo... no
checking for PKCS11_HELPER... no
checking git checkout... yes
configure: error: libpam required but missing

另外,為什麼我不能停用 libpam 選項?

[mirror@innov openvpn]$ ./configure --help | grep libpam
  --enable-pam-dlopen     dlopen libpam [default=no]
              C compiler flags for libpam
  LIBPAM_LIBS linker flags for libpam

答案1

嘗試在設定步驟中停用 PAM:

./configure --disable-plugin-auth-pam

相關內容