Sometimes customers want to see my name on the invoice, sometimes they only want to see betweenGo.
To change it, go to Company > Company Information… and change the Company Name field (either “Frank S. Kim” or “betweenGo”).
Tue 28 Feb 2006
Sometimes customers want to see my name on the invoice, sometimes they only want to see betweenGo.
To change it, go to Company > Company Information… and change the Company Name field (either “Frank S. Kim” or “betweenGo”).
Wed 22 Feb 2006
When I get someone’s Eclipse project I always ended up recreating the project. Now I won’t need to do that anymore since I learned about the Import feature.
Wed 22 Feb 2006
To implement RSA authentication under ssh so that the user is not continually asked prompted for a remote-host password when using ssh, scp, or any programs using ssh underneath such as cvs and svn do the following.
$ ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/home/fkim/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/fkim/.ssh/id_rsa.
Your public key has been saved in /home/fkim/.ssh/id_rsa.pub.
The key fingerprint is:
2a:59:54:3f:82:8f:79:92:1d:39:7b:62:02:68:97:e6 fkim@paltp1235
$ scp -p ~/.ssh/id_rsa.pub fkim@betweengo.com:~/
Password:
id_rsa.pub 100% 396 0.4KB/s 00:00
$ ssh fkim@betweengo.com
Password:
[pizarro ~]$ mkdir .ssh
[pizarro ~]$ chmod 755 .ssh
[pizarro ~]$ cat id_rsa.pub >> .ssh/authorized_keys2
[pizarro ~]$ chmod 644 .ssh/authorized_keys2
$ ssh fkim@betweengo.com
[pizarro ~]$
Note if this does not work it is sometimes because the ssh client cannot find the id_rsa file. It looks for it normally where it keeps the known hosts file. On most systems this is the default location for where it writes the id_rsa file. On one system I found that it was looking for the id_rsa file in C:\.ssh.
In some cases RSA authentication will not work and you will need to use DSA authentication. This article, SSH Logins Without Providing A Password, gives a good description of how to do this. The instructions are quite similar.