/etc/make.conf:

# MDM Adding the following for all this video editing (from DVD's, camcorder).... [a52 v4l2 nuv x264]

/etc/portage/package.use:

# MDM Definitely want to rip DVD's as needed ; use alsa (not [oss])
media-video/cinelerra-cvs css -oss

After emerging avidemux, I needed to do a revdep-rebuild to fix libfaad.so for transcode, ffmpeg, etc. I did a full [emerge_all], aifol.

I’m humming along with amd64 gentoo. Small annoyance: seems like whenever firefox or a related package gets bumped, I have to rerun this to get my flash working again. No big deal, just here for my reference:

nspluginwrapper --install /usr/lib32/nsbrowser/plugins/libflashplayer.so
restart firefox

My WordPress sites need some love… looking at the following plugins…

— installed —
http://wordpress.org/extend/plugins/sociable/
— todo —
http://wordpress.org/extend/plugins/wp-super-cache/

HeadSpace 2


— fix cats! —
http://wordpress.org/extend/plugins/breukies-categories-widget/ (req widgets, comp. “up to 2.2”)

WordPress Widgets


http://enhanced-categories.vincentprat.info/ (req jQuery)
http://wordpress.org/extend/plugins/category-icons/
http://wordpress.org/extend/plugins/collapsing-categories/
http://wordpress.org/extend/plugins/allow-categories/
http://wordpress.org/extend/plugins/show-post-by-selective-category/
— maybe —
http://wordpress.org/extend/plugins/all-in-one-seo-pack/
http://yoast.com/wordpress-seo/
http://wordpress.org/extend/plugins/stats/
http://wordpress.org/extend/plugins/wpg2/
http://wordpress.org/extend/plugins/vipers-video-quicktags/
http://wordpress.org/extend/plugins/subscribe-to-comments/
http://wordpress.org/extend/plugins/ajaxd-wordpress/
http://wordpress.org/extend/plugins/flash-video-player/
http://wordpress.org/extend/plugins/twitter-tools/
http://wordpress.org/extend/plugins/askapache-password-protect/

(nah/not ready/old)
http://wordpress.org/extend/plugins/bookmarkify/
http://wordpress.org/extend/plugins/share-this/

To get around this, just turn off “automatically select mirror” and you’ll get the nice full list of mirrors to select from. In my case, it was repeatedly selecting software-mirror.com, even though it was not up-to-date and kept failing. Switched to a Georgia Tech mirror and I was golden.

Window->Preferences->Install/Update->Automatically select mirrors-> uncheck
Help->Software Updates->Find and install...->Search for updates->Finish
(the mirror selection screen appears)

iptraf is great to quickly monitor network usage. Just don’t forget Heisenberg’s uncertainty principle (or, to be more technically correct, the observer effect) – using iptraf over a proxied ssh connection adds about 6.6 kbps of usage just for the tool used to measure usage. Fun fun! :>

Here’s a script that you can run to measure bandwidth in the background, removing some of the overhead of trying to visually display in realtime the very thing you’re measuring:

#!/bin/bash

if [ -e /var/log/iptraf/bandwidth.txt ]
then
    rm /var/log/iptraf/bandwidth.txt
fi

export SAMPLETIME=1
export SLEEPTIME=62
iptraf -B -t $SAMPLETIME -i all -d eth0 -L bandwidth.txt
sleep $SLEEPTIME
cat /var/log/iptraf/bandwidth.txt|grep kbits