http://www.civil.gov.sk/archiv/p07/p07.shtm
http://portal.gov.sk/Portal/sk/Default.aspx?CatID=39&aid=521
http://hnonline.sk/ekonomika/c1-38083830-zmeny-hlaste-uradom-inak-hrozi-pokuta
http://www.porada.sk/t90422-zmena-trvaleho-bydliska.html
http://www.obroda.sk/clanok/7656/Hlasenie-trvaleho-pobytu-sa-od-oktobra-zjednodusi/
http://www.lutila.sk/?id_menu=46232
No Comments »
Generate your SSH key:
$ ssh-keygen -t rsa
Copy over to destination host:
$ scp ~/.ssh/id_dsa.pub user@host:~/.ssh/
Login to remote host (still using password):
$ ssh user@host
user@host's password:
$ cd ~/.ssh
$ cat ./id_dsa.pub >> ./authorized_keys
$ rm -f ./id_dsa.pub
$ chown 600 ./authorized_keys
Logout and try login again:
$ ssh user@host
Enter passphrase for key '/home/localusr/.ssh/id_dsa':
That’s it. Enter the passphrase and you can login using your key.
Resources
No Comments »