gissmog // Rails, Mac, Tech, CSS/Design, Fun, Hackfressen.
The new version of QuickTime included with Snow Leopard (called QuickTime Player X) is almost a complete overhaul of the previous version, from the look and feel of the application windows right down to the preferences menu (or lack thereof). If you were looking to change some options but don't know where to start, our Preference Pane can help you enable or disable many of QuickTime's features. It is currently in it's initial release (version 1.0) with an update coming soon to fix the only known bug. For more information on version 1.0, please read the release notes, which is also included in the Preference Pane bundle. You can see a screen shot of the application running below, and when you are ready, download it here.
Was für eine beschissene Qualität ... naja ... vllt. kann ja der eine oder andere was erkennen. Meiner Meinung nach gibts es jedoch mit Samba und SL keine Probleme - sofern man sich an die Vorgaben von Apple hält. Gegen Ende mache ich ein "/etc/init.d/apache2 reload" .. hätte eigentlich "/etc/init.d/samba reload" sein sollen. Geht aber auch so - ich wolle es nur nochmal ausführen weil es teilweise ein paar Sekunden dauert bis Änderungen an der Konfiguration übernommen werden.
Installing libevent
libevent is a prerequisite for memcached:
$ curl -O http://www.monkey.org/~provos/libevent-1.4.12-stable.tar.gz $ tar xzvf libevent-1.4.12-stable.tar.gz $ cd libevent-1.4.12-stable $ ./configure $ make $ make verify $ sudo make installInstalling memcached
$ curl -O http://memcached.googlecode.com/files/memcached-1.4.1.tar.gz $ tar xzvf memcached-1.4.1.tar.gz $ cd memcached-1.4.1 $ ./configure $ make $ make test $ sudo make installTesting
In my case I have a script in the script dir of a Rails application that I call whenever I want to start or stop memcached, so I just used that:
$ script/memcached memcached not running: starting $ script/memcached memcached running: stopping(The script basically just does memcached -d -P pidfile -l 127.0.0.1 to start memcached.)
See also