To create key only authentication the users public key needs to be put on the server in their home directory under .ssh/authorizated_keys. Create the users private key on their workstation: # ssh-keygen -t rsa Send the private key to the server: # cat .ssh/id_rsa.pub | ssh newmachine “cat >> .ssh/authorized_keys” Make sure the authorized_keys file […]
Category Archives: Linux
Cyrus Imapd 2.2.12 and Autocreate Patch
Building cyrus-imapd 2.2.12 with the autocreate patch causes an error when compiling. To fix edit the imap/Makefile and add the following to the end of the CPPFLAGS parameter -I../et Then resume the make.