Category: debian

  • dlr-languages_20090805+git.e6b28d27+dfsg-1_amd64.changes ACCEPTED

    I’m happy to announce that after the filing of an Intent to Package and nearly 2 years of work, IronRuby 0.9, IronPython 2.6b2, and the DLR are now in Debian. To my knowledge, this is the first package in Debian with direct and active upstream support from Microsoft. Kudos for this release go to Jo…

  • Locale configuration post-Intrepid

    I was reminded this morning after a bit of chatter on #debian-cli that my previous write-up on setting one’s locale on Ubuntu is out-of-date. Instead of running dpkg-reconfigure locales and selecting your locale, the new incantation is as follows: Magic $ sudo locale-gen en_US.UTF-8 Environment Variables You’ll also want to set some environment variables. Put…

  • Connecting to MySQL with ODBC on Mono

    We had a visitor on #mono today who needed help with his homework. It seems that Reggie is happy to have forgotten everything about using ODBC to connect to MySQL. I was curious and feeling helpful, so I figured it out. Install the MySQL ODBC driver $ sudo apt-get install libmyodbc You can also grab…

  • PPA installation on karmic

    I don’t know how long add-apt-repository has been around, but I’ve found it very useful for installing some of the bleeding edge stuff I want to test: $ for ppa in do-core team-xbmc nvidia-vdpau chromium-daily directhex/monoxide do sudo add-apt-repository ppa:$ppa done $ apt-get update $ apt-get install chromium-browser nvidia-glx-195 gnome-do xbmc monodevelop Is there anything…

  • Font for composing Lushootseed

    At the recommendation of David Beck, I have installed a TTF font from http://www.languagegeek.com/. It took a few minutes for me to figure out how to get it going, but it was pretty straightforward after that. Here are some quick instructions for those of you running Debian variants such as Ubuntu. Fetch the zip files…

  • AoE root for KVM guests

    Intro So. I’m trying to get familiar with libvirt and friends. To this end, I’ve set up a Lucid virtual machine booting from PXE into an initrd environment which does a pivot_root to an AoE block device. The #virt channel on irc.oftc.net told me that in order to have libvirt provide PXE capability, I would…

  • SAN configuration (AoE)

    With the help of a couple of friends, we’ve put a 4.5T RAID-5 machine on our network and I’m trying to figure out how to share the storage with the rest of the hosts. In the past, I have used NFS and CIFS/Samba to provide access to remote hosts. This has generally worked okay so…

  • IRC logs for #ubuntu-us-wa

    Hello, google. I would like to introduce you to our chat logs. Chat logs, google. Google, chat logs. We will discuss things here such as Mono, GNOME and Debian. We may even use it to talk about work on the DLR project stuff.

  • building unmodified_drivers

    This is the gist of it: $ cd /usr/src/ # $ sudo chmod a+rwx . $ wget ftp://ftp.suse.com/pub/projects/kernel/kotd/SLE11_BRANCH/src/kernel-source-2.6.27.39-0.0.0.25.15a4c6f.src.rpm $ alien -tg kernel-source-2.6.27.39-0.0.0.25.15a4c6f.src.rpm $ cd kernel-source-2.6.27.39 $ tar xfj linux-2.6.27.tar.bz2 $ for f in patches.*.tar.bz2; do tar xfj $f || break; done $ for p in $(./guards x86_64 < series.conf); do patch -d linux-2.6.27 -p1 <…

  • Xen PV network driver

    I haven’t used Xen HVM until recently. When I was at Amazon and hanging with the Xen provisioning folks, I recall complaints about the performance of network drivers on HVM instances. I’ve recently discovered that this was due to the use of the ioemu virtual interface (vif) system. In paravirtualized environments, Xen vif devices are…