See also:
Software list by AdmartinatorFreeware OSXEssential AppsMenubar ItemsQuicklook Plugins here
File handling
* Disk Order, ForkLift, Path Finder, Forum, Wiki
* Safe Place, ccrypt
* Quicksilver, Butler
* Super Duper, ChronoSync, arRsync, iBackup
Setup config file ''synergy.conf''
section: screens
mac:
pc:
end
section: links
mac:
right = pc
pc:
left = mac
end
section: aliases
mac:
set_mac_hostname_here
pc:
set_pc_hostname_here
end
Start server
$ synergys -f --name mac -c synergy.conf
Execute htpasswd to create a crypted password for a user:
$ htpasswd -c /home/path/to/.htpasswd user123
Generated .htpasswd file:
user123:lIBi121Or12Pw
Create/edit .htaccess inside the directory to protected:
RewriteEngine On
AuthUserFile /home/path/to/.htpasswd
AuthName "application name"
AuthType Basic
require user user123