Project and Notes Dump |
This page is under continual development. Content is developed by Robert Mooney, unless otherwise noted.
Projects |
Notes |
Download the source tree if you haven't already. Update it via CVS.
cd /usr/src/include && make clean includes
cd /usr/src/lib/libkvm && make clean all install
Remake and install the utilities based on libkvm with the following script:
#!/bin/sh PATH="/bin:/usr/bin" CMD=`basename $0` TMPFILE0=`mktemp /tmp/$CMD.XXXXXXXXXX` || exit 1 TMPFILE1=`mktemp /tmp/$CMD.XXXXXXXXXX` || exit 1 find /usr/src/ -name Makefile | xargs grep "\-DUVM" | sed -e "s/\.\//\/usr\/src\//" | sed -e "s/\/Makefile.*//" > $TMPFILE0 find /usr/src/ -name Makefile | xargs grep "\-lkvm" | sed -e "s/\.\//\/usr\/src\//" | sed -e "s/\/Makefile.*//" >> $TMPFILE0 sort $TMPFILE0 | uniq > $TMPFILE1 for dir in `cat $TMPFILE1 | grep -v libkvm`; do cd $dir make clean all install done rm -f $TMPFILE0 $TMPFILE1There may be a few additional utilities that need a rebuild, but the above should cover most of them.
Uncompress and untar PINE. Patch PINE from the directory where you untar'ed it: patch -p0 < pine-maildir-4.33. Change to the pine-4.33 directory, and type ./build obs. Install the resulting binaries and man pages.
If you don't already have /etc/pine.conf, create a new one: pine -conf. Modify /etc/pine.conf so that inbox-path points to the user's Maildir. E.g. inbox-path=~/Maildir.
For some reason, applying this patch to the OpenBSD ports collection does NOT work. Save your time and energy by doing a native build. :-)
# cd /cdrom/cdrom0/s0/Solaris_2.6/Product
# pkgadd -d . SUNWlibm
In other words, pkgadd using the current directory as your device, and the SUNWlibm directory as the package directory.
@domain.com::mx.another.com:86400
This is useful if the MX IP changes often.
Replace "xl0" with your interface.
Return to the Main index |