Virtual Box on linux
$sudo yum install compat-libstdc++-33
SELinux
Allow all unconfined executables to use libraries requiring text relocation that are not labelled textrel_shlib_t
/dev/net/tun permissions
I thought the following rule in /etc/udev/rules.d/10-local.rules would work:
KERNEL=="tun", OWNER="root", GROUP="vboxusers", MODE="0660"
but the permissions don't seem to be set correctly so try setting it in the init script.
Set /dev/net/tun g+rw in /etc/init.d/vboxnet:
# Set /dev/net/tun to belong to the group vboxusers if it exists and does # yet belong to a group. if ls -g "$TAPDEV" 2>/dev/null | grep root then chgrp vboxusers "$TAPDEV" chmod g+rw "$TAPDEV" fi
