여기에 보면 몇몇 client 를 설치하는 방법이 소개되어 있다.
http://www.techrepublic.com/blog/five-apps/five-easy-to-use-secure-shell-clients/
하지만.. 터미널 자체에서 접속하는 것이 방법도 쉽고 나쁘지 않다.
접속하는 ubuntu 에는 다음을 설치한다.
apt-get install openssh-client
접속되는 ubuntu 에는 다음이 설치되어 있어야 한다.
apt-get install openssh-server
접속 명령어는 터미널에서 다음과 같이 입력하면 된다.
ssh 172.16.244.128 -l root
원격지에서 서버의 ssh 접속 password 변경하기
ssh -t [user]@[server-name-here] passwd
ssh -t [userName]@[server.ip.address.here] passwd
ssh -t [userName]@[192.168.1.20] passwd
ssh -t [userName]@[192.168.1.20/bin/] passwd
위와같이 입력하면 password 변경창이 뜨게 된다.
'Programming > Linux Tip' 카테고리의 다른 글
[gdb] handle gdb error "single stepping until exit ... from function which has no line number information" (0) | 2014.06.27 |
---|---|
TrueType core fonts for the Web EULA 화면에서 멈춤 현상 (0) | 2014.06.26 |
ubuntu - windows에서 사용했던 새로운 hdd 추가하기 (0) | 2014.06.19 |
vi 에서 cscope 편하게 호출하도록 setting 하기 (0) | 2014.06.17 |
GDB 명령어 (0) | 2014.05.26 |