- Install the User Scripts (Andrew Zawadzki) plugin from CA
cat /etc/slackware-version
and check which Slackware version the current Unraid OS is based on- 6.11.0 ⇒ Slackware 15
- Head to packages.slackware.com, filter Release to Slackware64 + that version, and search for the following packages:
- gc
- guile
- make
Tip: You can find additional packages on the community repositories pkgs.org and SlackOnly.
If you plan on compiling other software, you will probably need binutils, gcc, gcc-g++, glibc, libffi, and kernel-headers. Make sure you're filtering to the correct Slackware64 version each time, not "Slackware current"! mkdir -p /boot/extra && cd /boot/extra && wget <paste each package mirror link here>
- Packages placed in /boot/extra are auto-installed on boot, but you can
installpkg *.txz
while still in /boot/extra to install them now - Run in a user script:
wget http://ftp.gnu.org/gnu/stow/stow-latest.tar.gz -O - | tar -xzC /tmp ( cd /tmp/stow* && ./configure && make install ) rm -rf /tmp/stow*
- Install DevPack GUI (dmacias72) and User Scripts (Andrew Zawadzki) from CA
- In Settings > Dev Pack, install:
- gc
- guile
- make
- Run in a user script:
wget http://ftp.gnu.org/gnu/stow/stow-latest.tar.gz -O - | tar -xzC /tmp ( cd /tmp/stow* && ./configure && make install ) rm -rf /tmp/stow*
https://github.com/aspiers/stow/blob/master/INSTALL.md
https://www.gnu.org/software/stow/
https://www.gnu.org/software/stow/manual/html_node/index.html
https://github.com/maxkagamine/dotfiles — Example cross-machine dotfiles using Stow for "mod management"