Installing and Maintaining Slackware 12.0
=========================================
TODO:
Uninstalled packages:
Installed from source:
Problems (Opportunities?):
Software setup:
updatedb
/etc/updatedb.conf
PRUNEFS="[existing list] ntfs vfat"
PRUNEPATHS="[existing list] /usr/local/slack10 /usr/local/src"
Apache 2.2.8 - get server to work with public_html pages, shtml, cgi
scripts, etc.
Edit /etc/apache/httpd.conf as follows:
DirectoryIndex index.html index.shtml
. . .
AddHandler cgi-script .cgi
. . .
AddType text/html .shtml
AddHandler server-parsed .shtml
. . .
Include /etc/httpd/extra/httpd-userdir.conf
Include /etc/httpd/mod_php.conf
Edit /etc/httpd/extra/httpd-userdir.conf
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec ExecCGI
----------------------------------------------------------------------
Software from Source
----------------------------------------------------------------------
icewm-1.2.35 [2008-01-29]
./configure
make
make install
SETUP:
Install personal icons to /usr/local/share/icewm/icons/
Install personal theme to /usr/local/share/icewm/themes
Create and edit the following /etc/X11/xinitrc.icewm
--------------------------- START OF SCRIPT -------------------------
#!/bin/sh
# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f $userresources ]; then
xrdb -merge $userresources
fi
if [ -f $usermodmap ]; then
xmodmap $usermodmap
fi
# Start the window manager:
exec /usr/local/bin/icewm-session
--------------------------- END OF SCRIPT -------------------------
postgresql-8.2.6 [ 2008-01-31]
./configure
make
make test
make install