Debian
A more full-featured Debian installation
Tags:  debian, linux,  first published on Jan 1, 2016 - last modified on Nov 27, 2017

At the end of the minimal installation instructions we ended up with a basic X installation running the i3 window manager, after this if you have followed the suggested installation path you should have your pfSense based virtual networking up and running.

Your Dom-0 installation should remain fairly minimal, ideally you would not run anything but VirtualBox and aptitude in it, however it really depends from your typical use-case, as in some situations running specific applications on your bare metal system available can be useful.

This said I would suggest that you create a new VirtualBox VM to serve as the ‘base’ VM for most of your typical Linux environments, for example the VM you will likely use to compile software for your base system and other VMs.

The amount of RAM and CPU you are going to give your VMs really depends on what kind of hardware your host system is running, however the other configuration settings should be pretty much similar.

After creating a new network and setting up the needed rules as described at the end of the pfSense configuration instructions let’s now set up the new VM with everything set to default but these settings

  • clipboard: Host-to-guest
  • chipset: ICH9
  • display: 128MB
  • storage: new 23GB vdi, debian iso in the CD drive
  • network: an internal network name, virtio interface
  • audio: pulseaudio

If you have issues with choppy audio in your VMs, you might have to change the above to alsa, from pulseaudio, it might work better but in that case it might also disallow you from using audio in your Dom0 by taking the audio device access, depending if you plan to use audio there (say, for notifications) this might or might not be a big deal for you.

For the network it should be attached to whichever pfSense interface you have configured with the access you need; for a base vm it’s probably a good idea to have it by default attached to a fairly locked pfSense interface, but it’s really up to you.

After creating the VM, boot it and follow the two previous parts of the installation guide again (note the different video settings) until you have your base debian system installed.

Note that the initial step of updating aptitude and installing netselect-apt would not be meaningful for this installation, as the pfSense rules discussed will open http access only to your local debian mirror; you should instead edit /etc/apt/sources.list manually to make it the same as your Dom0 before using apt/aptitude.

The passwords and keyfiles you pick for your LUKS installation are up to you, VirtualBox 5.x now supports encrypting VMs, however I prefer to not depend on this functionality and just install LUKS in the VM as well.

I am suggesting 23GB above for an easy way to back-up these VMs on inexpensive single-layer blu-ray disks without having to worry about vdi files being too large (you can add more vdis/controllers if needed easily enough). Having LUKS in your installed VM means the VMs can be backed up without worrying about encrypting them further, however for cases in which your VM is not running full disk encryption this extensive tutorial 1 explains how it could be done. As much as you probably wouldn’t want to depend only on writable discs for backups, I find they are a good and fairly inexpensive addition to a typical NAS + offsite/cloud disaster recovery strategy.

After the base VM is installed, it can be used via cloning as a starting point for your other VM installations.

When cloning VMs, besides reinitializing the MAC address of the network interface, you also want to on your first log in change the hostname in /etc/hostname and remove the /etc/dhcpcd.duid file that was created by your initial ‘base’ boot, otherwise your pfSense installation DHCP leases will not work correctly (before removing this file remember to systemctl stop dhcpcd.service to release the lease).

If this file exists dhcpcd will reuse the duid in it so from the pfSense perspective it’d be as if the same host kept requesting leases, a symptom of that would be that the DNS resolution of pfSense host leases would not work (but note that DNS resolution might not work for other reasons)

From now on it will be up to you if you are going to install any package in your Dom0 system, in your base vmimage, or only in your devel or other specific VMs. Note though that when compiling something in your base or devel VM to deploy on your Dom0, you might end up in situations where your base system does not have the required shared libraries to run what you have built, use of apt-file and ldconfig should be helpful in figuring out what lib packages you’ll need to install in Dom0 for things to run if you don’t want to build things statically.

The rest of this page will list some possibly useful packages / applications you might be interested in.

Multiple screens in VirtualBox

As of this writing, current (stretch) VirtualBox packages available in Debian do not have this issue, however if you are still on Debian Jessie you might find yourself in the situation where your VirtualBox VMs are not able to display multiple separate screens (xrandr will report the outputs as disabled, or won’t report them at all, depending on the version of the guest additions you have installed). This has been discussed in a bug report and it is possible to backport this fix by downloading a fixed guest additions distribution, and simply taking the needed module from it.

First download the 5.0.12 guest additions from the old builds and then:

andromeda
luser@andromeda:~$ sudo aptitude -t jessie backports install fuseiso9660
luser@andromeda:~$ fuseiso9660 VBoxGuestAdditions_5.0.12.iso /tmp/vb_iso/
luser@andromeda:~$ ./vb_iso/VBoxLinuxAdditions.run --tar xf ./VBoxGuestAdditions-amd64.tar.bz2
luser@andromeda:~$ mkdir x
luser@andromeda:~/x$ cd x
luser@andromeda:~/x$ tar xf ../VBoxGuestAdditions-amd64.tar.bz2
luser@andromeda:~/x$ cd /usr/lib/xorg/modules/
luser@andromeda:/usr/lib/xorg/modules$ sudo cp /tmp/x/lib/VBoxGuestAdditions/vboxvideo_drv_116.so vboxvideo_drv.so

this will overwrite the existing vboxvideo_drv.so module, with the patched one from the newer guest additions distribution (of course it would be a good idea for you to make a backup of the original .so file just in case).

After this is done you can reboot the virtual machine to get the new module picked up, and if you have configured multiple monitors in the VM GUI they will now correctly show in xrandr although still disabled.

To enable them, you also need to execute the following commands in your Dom0, for example for a VM with 3 monitors connected named devel you would

andromeda
luser@andromeda:~$ vboxmanage controlvm devel setvideomodehint 1920 1080 24 2
luser@andromeda:~$ vboxmanage controlvm devel setvideomodehint 1920 1080 24 1

this will connect the displays, which should now finally work correctly, by default they will likely be set up with mirroring, so you would turn to xrandr in the virtual machine to fix this

andromeda
luser@andromeda:~$ xrandr --output VGA-1 --right-of VGA-0
luser@andromeda:~$ xrandr --output VGA-2 --left-of VGA-0

Miscellaneous Debian packages

When setting up a development / staging VM, more packages are usually needed to have a full featured development environment, let’s first start with packages available in the Debian repository.

andromeda
killall etc.
luser@andromeda:~$ sudo aptitude -t jessie backports install psmisc
C/Python development, as well as some relevant libraries
luser@andromeda:~$ sudo aptitude -t jessie-backports install cmake cmake-gui g++ libx11-dev libxext-dev gengetopt libxrandr-dev libxfixes3 libxfixes-dev libimlib2 libimlib2-dev python python3 python-pip python3-pip virtualenv virtualenvwrapper python-virtualenv python3-virtualenv python-dev python3-dev ack-grep silversearcher-ag autoconf libglew-dev libglm-dev
Miscellaneous development software
luser@andromeda:~$ sudo aptitude -t jessie-backports install feh stow mtr ssh

I am a fairly recent Debian user, so sometimes I know what executable I want but not necessarily the name of the package it’s contained in, in these cases I find apt-file to be extremely helpful

andromeda
luser@andromeda:~$ aptitude -t jessie-backports install apt-file
luser@andromeda:~$ sudo apt-file update

after this is installed a simple apt-file search /bin/execname usually is all that I need to find what to install to get what I need.

Miscellaneous non-Debian packages

The following are either not available in Jessie or outdated, they will be installed in /usr/local/stow/packagename and use GNU stow in order to keep things as easily upgradable as possible.

Note that currently gnu stow in Jessie will give you a ‘Possible precedence issue’ warning when it’s used, this can be fixed by applying the following patch 2 to /usr/share/perl5/Stow.pm.

For self-built packages I usually untar or git clone in /usr/local/src and build there, after installing in /usr/local/stow/packagename I just cd /usr/local/stow and run stow packagename to create the needed symlinks.

Note that if the package you are building has an info dir entry, you will likely get a conflict when stowing it, I suggest you simply rename info/dir to something else before calling stow packagename or use –defer=info to skip it (an alternative would be to use xstow instead and set up merge-info in your xstow.ini)

GnuPG

Debian repositories do come with GnuPG packages, however currently the packages available for Jessie are only GnuPG 2.0.x, while I prefer running the latest 2.1.x series. It is fairly straightforward to install directly from source and using it via stow.

In your staging/development VM you would want to install the following build requirements

andromeda
luser@andromeda:~$ sudo aptitude -t jessie-backports install libreadline-dev gnutls-dev libldap-dev libusb-dev

afterwards you can download and install the following libraries from the GPG website: libassuan, libgcrypt, libgpg-error, libksba and npth.

All of them can be built with a similar command line, ./configure –prefix=/usr/local/stow/gpg-2.1.9 –enable-maintainer-mode and then make / make install as usual.

After all the libraries are built you can then configure GnuPG itself with a very similar ./configure –prefix=/usr/local/stow/gpg-2.1.9 –enable-symcryptrun –enable-gpgtar –enable-maintainer-mode and make / make install it to your stow directory.

After building GPG in your development VM and copying it to your Dom0 and activating it via stow, you should install one of the pinentry packages for it to work correctly.

If you have a card reader or, say, a YubiKey, there are a few more steps for it to be functional, first you should install some additional packages

andromeda
luser@andromeda:~$ sudo aptitude -t jessie-backports install pinentry-qt4 pcsc-tools pcscd libccid

then run pcsc_scan -n, this should print out however many readers it can find, for example for my YubiKey it prints out Yubico Yubikey NEO OTP+CCID 00 00. With this information you can create your \$HOME/.gnupg/scdaemon.conf file, where you would insert a line like reader-port “Yubico Yubikey NEO OTP+CCID 00 00”. After doing this gpg2 –card-status should be working correctly (note you want to reboot after changing scdaemon.conf).

Emacs and Vim

For both Emacs and Vim I prefer running the latest available versions, and again manage them with stow, for emacs to be built with most/all features enabled you would install the following packages in your build environment:

andromeda
luser@andromeda:~$ sudo aptitude -t jessie-backports install libgtk2.0-dev libxft-dev libxpm-dev libgpm-dev libotf-dev libxml2-dev libmagickwand-dev libm17n-dev libgif-dev libgnutls-openssl-dev libncurses-dev

and configure it with ./configure –prefix=/usr/local/stow/emacs-24.5 –with-xft –with-x-toolkit=gtk2

For vim I use the following configuration line instead ./configure –prefix=/usr/local/stow/vim-7.4.927 –with-features=huge –enable-gpm –disable-gui –enable-multibyte –enable-cscope –disable-netbeans –enable-pythoninterp –enable-perlinterp –enable-pythoninterp –disable-rubyinterp –enable-luainterp –with-x but it is really up to you what you would prefer to use. I do think it is good to have a system vim installed anyways, after you do so you would update your alternatives with, for example, sudo update-alternatives –set editor /usr/bin/vim.basic

Screenshot support

For screenshots, I had to take quite a few for these posts, I like the following no-frills packages

andromeda
luser@andromeda:/usr/local/src$ git clone https://github.com/naelstrof/slop
luser@andromeda:/usr/local/src$ cd slop
luser@andromeda:/usr/local/src/slop$ cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr/local/stow/maim -DCMAKE_OPENGL_SUPPORT=true ./ ; make ; make install
luser@andromeda:/usr/local/src/slop$ cd /usr/local/stow && stow slop
luser@andromeda:/usr/local/stow$ cd /usr/local/src
luser@andromeda:/usr/local/src$ git clone https://github.com/naelstrof/maim
luser@andromeda:/usr/local/src$ cd maim
luser@andromeda:/usr/local/src/maim$ cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr/local/stow/maim -DCMAKE_INSTALL_MANDIR:PATH=/usr/local/stow/maim/share/man/ ./ ; make ; make install
luser@andromeda:/usr/local/src/main$ cd /usr/local/stow && stow maim

after they are installed you can simply run maim -s screenshot.name.png and select the area you want to capture, which will then be saved in the file you specify.

Changelog:
  • Initial release - 2016-01-01
  • VirtualBox multiple screens - 2017-11-27