Skip to content

32bit jail on 64bit FreeBSD

by Finn Espen Gundersen on September 8th, 2012

Sometimes it can be necessary or preferable to run software in 32bit versions, even if the OS is 64bit (i.e. running the i386-version on amd64 OS).

As an example, software with deep memory structures mainly consisting of pointers, such as dictionaries of dictionaries of light-weight objects, will occupy almost twice the RAM on a 64bit OS. If multiple instances of, say, 3GB memory structures are needed, the 64bit penalty quickly adds up.

While the FreeBSD ports and packages collections are very convenient, they automatically select the “correct” version on install. Resorting instead to compiling from source, compiling 32bit binaries from source on a 64bit system can be fiddly and time-consuming (Python, I am looking at you).

Luckily, it is quick and easy to set up a 32bit jail on a 64bit FreeBSD. Here is an example, installing a FreeBSD 9.0 i386 jail on FreeBSD 9.0 amd64. This recipe goes for any jail, by the way. Only the fetch downloading the content is different.

Many jails are established by linking directories between the jail and host to save disk space. While it is possible to go this route for 32bit-on-64bit jails as well (see http://en.jnlin.org/2008/06/07/12/ for an example of this route) it will disable w, ps, top and other system utilities because of the bitness-mismatch. Since you likely won’t require many 32bit jails, I prefer to go for the full enchilada. After all, it isn’t any harder and the disk space requirement is not excessive.

# Create jail directory with kernel
mkdir /usr/jails/32bitjail
cd /usr/jails/32bitjail
fetch ftp://ftp2.de.freebsd.org/pub/FreeBSD/releases/i386/i386/9.0-RELEASE/base.txz (or a more recent version)
tar xpf base.txz;rm -rf boot;rm base.txz

# Find yourself an IP-address to use, for a server this will usually be static:
ifconfig vr0 10.0.0.96 netmask 255.255.255.255 alias

Note the network driver, here it is vr0, but it could be different in your box. Next, add the matching config to the host’s /etc/rc.conf to persist this config on reboot:

ifconfig_vr0_alias0=”inet 10.0.0.96 netmask 255.255.255.255″

And while you’re in the host’s rc.conf, add the jail config as well:

jail_enable=”YES”
jail_list=”32bitjail”
jail_socket_unixiproute_only=”YES”
jail_sysvipc_allowed=”YES”

jail_32bitjail_rootdir=”/usr/jails/32bitjail”
jail_32bitjail_hostname=”32bitjail”
jail_32bitjail_ip=”10.0.0.96″
jail_32bitjail_devfs_enable=”YES”
jail_32bitjail_devfs_ruleset=”devfsrules_jail”

# Save rc.conf and exit. Now for some generic jail config
mount -t devfs devfs /usr/jails/32bitjail/dev
cp /etc/resolv.conf /usr/jails/32bitjail/etc/

# In the jail’s rc.conf all we need is the keymap, just one line.

echo ‘keymap=”norwegian.iso.kbd”‘ > /usr/jails/32bitjail/etc/rc.conf

# Then start the 32bit jail

/etc/rc.d/jail start 32bitjail

# And log in to it

jls
jexec 1 sh # replace 1 with the jid given by jls
passwd # to set root pw

 

From → FreeBSD

4 Comments
  1. Thank you.

    Trying to install cd /usr/ports/emulators/virtualbox-ose within a 64bit jail was not going well.

    I was shocked how easy your 32bit jail concept was. The bsdinstall binary is quite frankly rubbish!

  2. noob jailer permalink

    A question:
    I have set up a 32-bit system & port build (&install) jail for my soekris on my amd64 install.
    How do I update it? Make installworld dies with “install: rename: /lib/INS@Oz23 to /lib/libc.so.7: Operation not permitted“.
    If I turn off the schg flag for /lib/libc.so.7, the file simply gets deleted and not copied over and the install dies on the next line for that file.
    I would prefer to keep the jail’s build processes separate because accidentally mixing the architectures would be bad.

  3. Dave permalink

    This article should be added to the FreeBSD handbook as it is still not made clear in there how to do this really common.

    The instance specific settings e.g.jail_32bitjail_rootdir=”/usr/jails/32bitjail”
    are now handled in /etc/jail.conf

    The /etc/rc.d/jail script leads you through well enough to figure it out.

    The handbook (as at 4th Feb 2015) is yet to be updated with the new config file info.

Leave a Reply

Note: XHTML is allowed. Your email address will never be published.

Subscribe to this comment feed via RSS