I rebooted tinycore... then tce-load -i vbox7.tcz
lsmod gives
$ lsmod
Module Size Used by Not tainted
cpufreq_userspace 12288 0
cpufreq_conservative 12288 0
cpufreq_powersave 12288 0
squashfs 36864 1
video 45056 0
backlight 12288 1 video
wmi 16384 1 video
xhci_pci 12288 0
vboxguest 28672 0
xhci_hcd 102400 1 xhci_pci
e1000 81920 0
loop 20480 2
xhci_pci_renesas 12288 1 xhci_pci
ac 12288 0
battery 16384 0
pcspkr 12288 0
$
Are you loading them on the host or the guest?
I'm loading them on the guest. My host is Windows 10.
...It might be worth checking the script /usr/local/tce.installed/virtualbox-ose-additions-modules-3.0.21-tinycore to see what it does.
#!/bin/sh
# creating daemon group if it isn't already there
if ! getent group daemon >/dev/null; then
# Adding system group: daemon
addgroup -S daemon >/dev/null
fi
# creating vboxadd user if it isn't already there
if ! getent passwd vboxadd >/dev/null; then
# Adding system user: vboxadd
adduser \
-S \
-D \
-H \
-G daemon \
-s /bin/sh \
vboxadd >/dev/null
fi
if [ -e /dev/vboxuser ]; then
chmod 666 /dev/vboxuser
chown vboxadd:daemon /dev/vboxuser
fi
if [ -e /dev/vboxguest ]; then
chmod 600 /dev/vboxguest
chown vboxadd:daemon /dev/vboxguest
fi
I don't know what this means..
Perhaps I need to recreate vbox7.tcz to include
"/usr/local/tce.installed/virtualbox-ose-additions-modules-
3.0.21-tinycore"
but with other numbers? (probably 6.1.2)