|
2010-01-07
, 11:37
|
Posts: 3,841 |
Thanked: 1,079 times |
Joined on Nov 2006
|
#12
|
[Log in as myself, on my local machine] ssh-keygen -r rsa -N '' [press return for default options] cat .ssh/id_rsa.pub | ssh -l remote_account remote_computer "cat >> .ssh/authorized_keys" [answer password question] ssh -l remote_account remote_computer date
The Following User Says Thank You to TA-t3 For This Useful Post: | ||
|
2010-01-08
, 14:13
|
Posts: 92 |
Thanked: 9 times |
Joined on Nov 2009
@ Germany, Bavaria
|
#13
|
|
2010-01-20
, 13:04
|
Posts: 35 |
Thanked: 2 times |
Joined on Dec 2009
@ sweden
|
#14
|
Hi RouterRebooter,
The info to make a desktop icon to run an ssh command can be found in this post:
http://talk.maemo.org/showthread.php?t=35858
I used it to run WOL (an installed app on my Linux device) via SSH. the icon method allows you to run one command. but you can make a script to run many commands. the cool thing is you can also make your own icons too. i am a newbie to Linux and the terminal but with minimal experienced i achieved success. a program i found essential was WinSCP it gives you a windows GUI like file manager to you n900 after you have installed SSH Server.
I had to install a new program on my n900 and restart before my icons showed up. I now have several custom desktop icons that run SSH scripts.
good luck
tim
ps. if you read the whole post i ask all the newbie questions.
|
2010-01-21
, 16:12
|
Posts: 352 |
Thanked: 231 times |
Joined on Jul 2008
@ Vancouver
|
#15
|
[Desktop Entry] Encoding=UTF-8 Version=0.1 Name=SSH Terminal=true Type=Application Exec=/usr/bin/osso-xterm 'ssh -l root -L 3389:192.168.5.555:3389 me.tzo.com -p 22' Icon=ssh X-Osso-Type=application/x-executable
The Following User Says Thank You to timwatt For This Useful Post: | ||
|
2010-01-22
, 11:09
|
Posts: 70 |
Thanked: 6 times |
Joined on Oct 2009
|
#16
|
[Desktop Entry] Version=1.0 Encoding=UTF-8 Name=WirelessOff Exec=/bin/busybox sh -c 'ssh root@xxx.xxx.xxx.xxx wl radio off' Icon=ssh Type=Application
ssh root@xxx.xxx.xxx.xxx wl radio off
|
2010-01-22
, 18:31
|
Posts: 352 |
Thanked: 231 times |
Joined on Jul 2008
@ Vancouver
|
#17
|
Exec=/usr/bin/osso-xterm 'ssh -l root myip.com -p 22 /usr/sbin/wol -i 192.100.1.255 00:X3:18:F1:86:A1'
Exec=/usr/bin/osso-xterm 'ssh root@xxx.xxx.xxx.xxx wl radio off'
Exec=/usr/bin/osso-xterm 'ssh router.ip.com -p 22 root@xxx.xxx.xxx.xxx wl radio off'
Exec=/usr/bin/osso-xterm 'ssh -l root router.ip.com -p 22 root@xxx.xxx.xxx.xxx wl radio off'
|
2010-01-22
, 18:55
|
|
Posts: 38 |
Thanked: 67 times |
Joined on Oct 2009
@ Allemagne
|
#18
|
ssh-keygen ssh-copy-id user@host
|
2010-01-22
, 19:11
|
Posts: 70 |
Thanked: 6 times |
Joined on Oct 2009
|
#19
|
The Following User Says Thank You to no mercy For This Useful Post: | ||
Thank you very much for your help - I'll try it tomorrow!