Ssh

如何在 Fedora28 上安裝類似於 Ubuntu 的 libssh2-php 的 SSH PHP 庫?

  • July 21, 2018

在 Ubuntu 上有上面提到的 lib:

sudo apt-get install libssh2-php

但是我在 Fedora 上哪裡可以找到它?

任何的想法?

Fedora 上的等效包名稱是php-pecl-ssh2. 這符合來自 PECL 的包的通常命名約定,即php-pecl-<package name>.

# dnf info php-pecl-ssh2
Last metadata expiration check: 1:59:21 ago on Sat 21 Jul 2018 10:40:54 AM CDT.
Available Packages
Name         : php-pecl-ssh2
Version      : 1.1.2
Release      : 3.fc28
Arch         : x86_64
Size         : 51 k
Source       : php-pecl-ssh2-1.1.2-3.fc28.src.rpm
Repo         : fedora
Summary      : Bindings for the libssh2 library
URL          : http://pecl.php.net/package/ssh2
License      : PHP
Description  : Bindings to the libssh2 library which provide access to resources
            : (shell, remote exec, tunneling, file transfer) on a remote
            : machine using a secure cryptographic transport.
            : 
            : Documentation: http://php.net/ssh2

引用自:https://unix.stackexchange.com/questions/457663