Instructions for installing SAW 0.4 Full documentation available at http://saw.tuxfamily.org 01. Install all the packages from 0.4 repo. 02. Add the realtime kernel to your lilo.conf and run lilo. a) add the following code to the end of /etc/lilo.conf : image = /boot/vmlinuz-2.6.24.7-rt20 root = /dev/XXX label = SAW read-only where XXX is your "/" partition. It should be the same as the "root = " line for the default entry near the bottom of lilo.conf. If you want SAW to be the default boot option, add "default = SAW" near the top of lilo.conf. b) run `/sbin/lilo` 03. Set the rtirq script to run at boot. a) add the following code to /etc/rc.d/rc.local : if [ -x /etc/rc.d/rc.rtirq ]; then sh /etc/rc.d/rc.rtirq start fi 04. Set the das_watchdog script to run at boot. a) add the following code to /etc/rc.d/rc.local : if [ -x /usr/sbin/das_watchdog ]; then echo "Executing das_watchdog..." /usr/sbin/das_watchdog > /dev/null & fi 05. We want to increase inotify availability. a) add the following line to /etc/sysctl.conf : fs.inotify.max_user_watches = 524288 06. Reboot, and select "SAW" at the lilo prompt. Enjoy! ChangeLog: +--------------------------+ Thu Oct 22 20:09:00 CDT 2008 Modified for SAW 0.4 +--------------------------+ Sun Oct 19 14:45:00 CDT 2008 Modified for SAW 0.3 +--------------------------+ Tue Oct 14 16:30:00 CDT 2008 Added fs.inotify.max_user_watches step +--------------------------+ Sat Oct 11 13:17:00 CDT 2008 SAW 0.1 prepared, initial writing.