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