「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'