Slackware port to musl libc
by franzen from LinuxQuestions.org on (#5CCBB)
Out of interest, i started porting slackware64-current to utilize musl-libc instead of glibc.
http://computer-nr3.de/muskat64-current/
Be aware that it's a work in progress, lots of packages aren't ported yet.
You may check it out with this template to create an lxc-container:
Code:curl http://computer-nr3.de/muskat64-current/lxc-muskat > /usr/share/lxc/templates/lxc-muskat
chmod 755 /usr/share/lxc/templates/lxc-muskat
curl http://computer-nr3.de/muskat64-current/GPG-KEY | gpg --importHere is a basic example for those who aren't familiar with lxc:
Code:echo 'USE_LXC_BRIDGE="true"' > /etc/default/lxc-net
mkdir /var/lib/misc
/usr/libexec/lxc/lxc-net start
cat << EOF > /var/lib/lxc/default.conf
lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = lxcbr0
EOF
lxc-create -n muskat -t muskat -f /var/lib/lxc/default.conf
lxc-start -n muskat
lxc-attach -n muskatI hope this port is of interest for some of you, feedback ist appreciated :-)


http://computer-nr3.de/muskat64-current/
Be aware that it's a work in progress, lots of packages aren't ported yet.
You may check it out with this template to create an lxc-container:
Code:curl http://computer-nr3.de/muskat64-current/lxc-muskat > /usr/share/lxc/templates/lxc-muskat
chmod 755 /usr/share/lxc/templates/lxc-muskat
curl http://computer-nr3.de/muskat64-current/GPG-KEY | gpg --importHere is a basic example for those who aren't familiar with lxc:
Code:echo 'USE_LXC_BRIDGE="true"' > /etc/default/lxc-net
mkdir /var/lib/misc
/usr/libexec/lxc/lxc-net start
cat << EOF > /var/lib/lxc/default.conf
lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = lxcbr0
EOF
lxc-create -n muskat -t muskat -f /var/lib/lxc/default.conf
lxc-start -n muskat
lxc-attach -n muskatI hope this port is of interest for some of you, feedback ist appreciated :-)