Results 1 through
4
while searching for:
"ssp"
How do you change the passphrase of an existing ssh key?
It's very easy actually:
user# ssh-keygen -f ~/.ssh/id_dsa -p
http://rockfloat.com/board/post/?id=598
August 25, 2008 @17:46
(Replies: 0)
(Rank: 0.000)
How do you use ssh-agent manually, without keychain?
Try:
user# ssh-agent
user# eval `ssh-agent`
user# ssh-add
You will be prompted for your passphrase which will then be remembered
http://rockfloat.com/board/post/?id=588
January 15, 2008 @15:24
(Replies: 0)
(Rank: 0.000)
How do you add something to your classpath when compiling using javac?
Here's a super simple example:
user# more test.java
import java.io.*;
import junit.framework.Assert;
user# javac -classpath /usr/share/ant-core/lib/junit.jar test.java
If you need to add more than one separate them using ":" on unix and ";
[...]
http://rockfloat.com/board/post/?id=548
November 27, 2006 @06:26
(Replies: 0)
(Rank: 0.000)
how do you use nautilus to access a machine via ssh?
use the following type of location in nautilus:
ssh://username@host.domain.com/home/username/
here are some tips found on the web:
=====
he other thing to check is that you need passwordless keys, as ssh:
doesn't support asking for the pas
[...]
http://rockfloat.com/board/post/?id=350
January 15, 2004 @03:07
(Replies: 0)
(Rank: 0.000)