input 1.0 released

The input utility collection gets it first formal release. Yay. You can stop using the cvs snapshots now.

Posted in Releases | Tagged | Comments Off

fbida 2.08 released

New fbida release is out. It fixes the crashes when linked against libjpeg 8c, which seems to become more wisespread used now. Also new is webp support (by Igor Murzov). Download the bits here.

Posted in Releases | Tagged | 1 Comment

amtterm 1.3 released

Finally found the time to merge a bunch of patches I got by mail over the last few months, and here it is, a new amtterm release. Go fetch the bits here.

Posted in Releases | Tagged | Comments Off

Setup bridging for libvirt in RHEL & Fedora

While attending the Virtualization Track at LinuxTag I’ve noticed setting up bridged networking troubles alot of people, so here is how I’m doing it.  The problem with bridge setup is that it works best without any surprising side effects when it is done using the network startup scripts of your linux distribution.  And unfortunaly each distribution goes its own ways here.  So this applies to RHEL and Fedora only.

First make sure you are using the classic network setup scripts instead of the network manager:

# chkconfig NetworkManager off
# chkconfig network on

Then go to /etc/sysconfig/network-scripts, there are ifcfg-* files, one for each interface. Create a ifcfg-br0 file there:

DEVICE=br0
ONBOOT=yes
USERCTL=no
TYPE=Bridge
DELAY=0
STP=yes

BOOTPROTO=dhcp
IPV6INIT=yes
IPV6_AUTOCONF=yes

This will make the network scripts create a bridge named br0. The bridge settings are marked bold. The other settings are the usual stuff you can put in there, the example uses autoconfig for IPv6 and DHCP for IPv4.

Then edit the file for your physical network interface (probably ifcfg-eth0) to make the network scripts hook eth0 up in br0, so your bridge is connected to the real network:

DEVICE=eth0
HWADDR=your-mac-address-here
ONBOOT=yes
USERCTL=no
TYPE=Ethernet
BRIDGE=br0


Finally restart the network using

service network restart

and you should be set. Libvirt should detect the new br0 bridge just fine and offer to use it to hook up your virtual machines to the network.

Posted in Tech Tips | Tagged , | Comments Off

LinuxTag

Gave a talk about spice at LinuxTag today. Slides are available here.

Posted in Conference | Tagged | Comments Off

cvs is gone

cvs.bytesex.org is offline now.  Most stuff got moved over to git:

  • xawtv 3.x and 4.x are hosted at linuxtv.org now.
  • Most other projects found a new home at kraxel.org.
  • If you miss something you can drop me a mail. Some stuff I’ve considered obsolete wasn’t migrated over to git.  If there is popular demand I might reconsider ;)

Once you are used to use git you’ll never look back to cvs …

Posted in Server | 2 Comments

up & running

Finally.  The new box is online now.  New domain: moving from bytesex.org to kraxel.org.  Also switching vcs from cvs to git.  Managing content with wordpress.  And you can connect using IPv6 now.  IPv4 of course works too.  Enjoy!

Posted in Server | Comments Off