- generate key using puttygen
- save public and private keys to someplace safe(tm)
- ssh to server
- edit
cd ~/.ssh/authorized_keys2
chmod ga-w authorized_keys2 - enter data from public key.
- load putty
- load desired session
- Under ssh, select SSH2, and save session.
- right click on pagent and add the private key
- login, and enter username.
- Edit link in startup forlder for pagent startup
“C:\Program Files\PuTTY\pageant.exe” d:\data\z_ssh\ssh_private_key.ppk
The number keypad in Putty normally works fine. Until you launch Vi(m). Then it is basically useless. Hitting ’0′ on the keypad prints out a ‘p
When trying to mount a share from a Linux server (RHEL5) Solaris (10) issues this very useful message:
bash-3.00# mount server:/nfsshare /sharepoint
nfs mount: mount: /sharepoint: Not owner
bash-3.00#
This appears to be an issue with NFS v4 on Linux and Solaris 10. To fix this edit:
/etc/default/nfs
and change
#NFS_CLIENT_VERSMAX=4
to
NFS_CLIENT_VERSMAX=3
Or of one time mounts simply add the following to the command line
mount -o vers=3 server:/nfsshare /sharepoint