SSH cmdで「apt-get install」を使用する方法[閉じる]

SSH cmdで「apt-get install」を使用する方法[閉じる]

「apt-get」を使用して、sshを介してcmdを介して「expect」というソフトウェアをインストールしようとしています。

ssh -t [email protected] 'apt-get install -v -y expect'

しかし、これが私が得るものです:

apt 1.0.1ubuntu2 for amd64 compiled on Aug  1 2015 19:20:48
Supported modules:
*Ver: Standard .deb
*Pkg:  Debian dpkg interface (Priority 30)
 Pkg:  Debian APT solver interface (Priority -1000)
 S.L: 'deb' Standard Debian binary tree
 S.L: 'deb-src' Standard Debian source tree
 Idx: Debian Source Index
 Idx: Debian Package Index
 Idx: Debian Translation Index
 Idx: Debian dpkg status file
 Idx: EDSP scenario file

そしてソフトウェアがインストールされていません。

私の質問は:上記のようにsshを介してapt-getを使用できますか?

**ところで、はい、通常はSSH経由でログインし、SSH経由でソフトウェアをインストールできます。 **

ベストアンサー1

~によるとマニュアルページapt-getロゴが-v印刷されたバージョンの場合apt-get。したがって、ソフトウェアはインストールされません。

代わりにこれを実行してください

ssh -t [email protected] 'apt-get install -y expect'

おすすめ記事