Difference between revisions of "Ssh"
From Linuxintro
imported>ThorstenStaerk |
imported>ThorstenStaerk |
||
Line 1: | Line 1: | ||
ssh is a command to log in over the network to another computer. | ssh is a command to log in over the network to another computer. | ||
+ | |||
+ | = Send graphical output to ssh user = | ||
+ | ssh -l ''user'' ''server'' -X | ||
+ | xclock & | ||
= port forwarding = | = port forwarding = |
Revision as of 12:53, 17 February 2010
ssh is a command to log in over the network to another computer.
Send graphical output to ssh user
ssh -l user server -X xclock &
port forwarding
ssh username@server -L localport:remoteserver:remoteport
possible problems
Wrong key on ssh-login:
- Problem
WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!
- Solution
$ ssh-keygen -R <hostname>
Related
ssh-related topics: