Sep
11
2009
0

Fix Mac Fusion for Snow Leopard

macfuseI use the really great macFUSE to mount several server directories via SSH on my work computer. One programm that makes this process really easy is Macfusion which offers a menu item and a standalone application to configure your mountpoints and mount/unmount them.

macfusionAfter upgrading to Snow Leopard recently Macfusion & macFUSE stopped working, so I was searching for a solution and luckily found one at Racker Hacker – Fix MacFusion on Snow Leopard.

Now I’m happily developing my PHP projects again in Netbeans with my remote dirs mounted via SSH :)

Written by Florian Beer in: development,mac,server
rel-tag , , , , , , , ,

Mar
11
2005
4

SSH public key authentication

nach langem probieren und suchen, hab ich endlich ein einfaches und leicht verständliches HOWTO gefunden um SSH dazu zu bewegen, dass ich nicht immer ein passwort eingeben muss wenn ich mich einlogge.

# On your local machine
$ ssh-keygen -t dsa
$ cd ~/.ssh
# for safe keeping
$ mv id_dsa.pub id_dsa.your_machine.pub
# Log in to the remote machine and create your .ssh key there
$ ssh remote_machine
$ ssh-keygen -t dsa
$ exit

# Back on your local machine
$ scp id_dsa.your_machine.pub remote_machine:.ssh/.

# Back to the remote machine
$ ssh remote_machine
$ cd .ssh
$ cat id_dsa.your_machine.pub >> authorized_keys2
$ chmod 600 authorized_keys2
$ exit

… so leicht kanns sein, wenn man mal weiß wies geht :)
das funktioniert natürlich nicht nur auf Linux systemen, sondern auch problemlos auf meinem iBook unter OS X.

Written by Florian Beer in: linux,mac,server
rel-tag , , , , ,