You are not logged in.
Some system files in the RC live iso are owned by user (devuan) instead of root. If you install from the live iso, it gets carried over to the installation.
Simple fix:
chown -R root:root /etc/xdg/xfce4
-
# Do not recurse:
chown root:root /etc/xdg
chown root:root /etc
-
chown -R root:root /usr/share/slim/themes/devuan-curve-purpy
-
# Do not recurse:
chown root:root /usr/share/slim/themes
chown root:root /usr/share
chown root:root /usr
chown root:root /home
The current Jessie rc installer is not LVM2 aware.
That is not exaclty right. You must have downloaded a live iso. The live installer does not do lvm. The installer in the regular installer isos is the debian-installer. It'll do lvm, raid, and all the other stuff you would expect. (It might be possible to get it to install to your prepared lvm with a little bit of hacking. I can't give that a lot of thought at the moment, but I'm not dismissing the idea.)
For the regular installer, try one of these:
https://files.devuan.org/devuan_jessie_ … aller-iso/
Regarding encrypted boot: I've heard of it. Don't know much about it.
Edit: for the remastering tools, you need refractasnapshot and refractainstaller. (-base packages for cli-only, both -base and -gui for gui) either from devuan experimental repo or download debs from here - https://sourceforge.net/projects/refracta/files/tools/
Some of them are from udev, and yeah, they will be there on a fresh install.
core_packages and base_packages get installed, and purge_packages get removed, and then the bootstrap tarball is created. So put the additional base_packages in your config, and also put your purge_packages there (either add to it or replace it as described somewhere above.) You should be able to reuse the tarball for both cli and desktop builds, but you should get rid of the bootstrap directory. Unfortunately, that needs to be fixed. Right now, you're better off wiping out tmp/* between runs, but I expect that will get ironed out. If you think this is not a clear answer, you are correct.
Yeah, the overlays are kinda like /etc/skel. They copy files into the bootstrap directory to be packed in the iso. The rsync command to copy the rootfs-overlay is in blend_postinst in the blend file. If you added a delete option to that, then everything that isn't in rootfs-overlay would get deleted. That would be your entire system minus what's in rootfs-overlay. Better to remove stuff in a chroot script in blend_finalize (or earlier if needed.)
extlinux is a simple bootloader that's part of the syslinux project. (syslinux is for FAT partitions, extlinux is for ext2/3/4 partitions, isolinux is for CD/DVD)
You can easily switch from using grub as a bootloader to using extlinux (and back again if you want).
Run the following commands as root. Replace /dev/sda and /dev/sda1 with the correct drive and partition for your system.
BE SURE YOU NAME THE CORRECT DEVICES!
apt-get install extlinux syslinux-common
mkdir /boot/extlinux
extlinux --install /boot/extlinux
dd if=/usr/lib/EXTLINUX/mbr.bin of=/dev/sda bs=440 count=1
cp /usr/lib/syslinux/modules/bios/*.c32 /boot/extlinux
Create a boot menu with your favorite text editor, add the following lines and save it as /boot/extlinux/extlinux.conf
ui vesamenu.c32
label devuan
menu label devuan
kernel /vmlinuz
append initrd=/initrd.img ro root=/dev/sda1
Reboot
If you want to add a splash image and 5-second timeout, copy a 640x480 png (or jpg) image named splash.png (or splash.jpg) to /boot/extlinux and add the following lines to extlinux.conf:
ui vesamenu.c32
menu background splash.png
timeout 50
label devuan
menu label devuan
kernel /vmlinuz
append initrd=/initrd.img ro root=/dev/sda1
There are more things you can do with the menu. See syslinux documentation for more information:
http://www.syslinux.org/wiki/index.php?title=Menu
To revert to booting with grub, run
grub-install /dev/sda
Reboot
To switch back to extlinux again:
dd if=/usr/lib/EXTLINUX/mbr.bin of=/dev/sda bs=440 count=1
Reboot
No, don't mess with them there. You can add to core_packages and base_packages in your config file, and you can remove the stuff you don't want by adding it to the purge_packages list, or replace the purge_packages list as I did below. The following lists will give you approximately what you'd get with a minimal install with standard system checked. The purge list removes things that would not be in the standard install. (Note that grubversion is a variable here.)
This adds to the existing list. (+=)
base_packages+=(
lsof
bash-completion
texinfo
acpi-support-base
aptitude
apt-listchanges
discover
dnsutils
doc-debian
docutils-common
docutils-doc
ftp
gettext
gnupg2
gparted
$grubversion
laptop-detect
mlocate
mutt
ncurses-term
nfs-common
procmail
reportbug
telnet
usbutils
w3m
whois
)
This replaces the existing purge list, which contains dbus. If you want dbus removed, change the `=' to `+='.
purge_packages=(
btrfs-tools
debian-keyring
elinks
elinks-data
git
git-core
git-man
liberror-perl
libfsplib0
libtre5
openntpd
openssh-server
openssh-sftp-server
tmux
zsh
zsh-common
)
- See the comment regarding where to add --no-install-recommends. if that's what you want. (in the jessie-oblx config. Line numbers might be off a bit.)
- See the line in blend_finalize that says 'rm -f /etc/fstab'. That should give you some ideas, and around there would be the place to do it.
- Look at the lists in the links below. You DO NOT want to list all those packages in your build. Listing some of the ones you want will get you others. Have fun figuring out which ones you really need. (Take careful notes on a VM install in prep for building a blend.)
- Run some commands to tell you what the package manager considers Required, Standard or Important.
aptitude search ~prequired
aptitude search ~pstandard
aptitude search ~pimportant
- Read the man page for tasksel. (not so important for lean installs, but it'll give you an idea of what not to install.)
- Re-read the third bullet above.
Here's the list of packages in a debootstrap install.
Here's the list of packages you get with a minimal install
And here's the list for standard system utilities
-
install syslinux-common
cp: cannot stat '/usr/share/live/build/bootloaders/isolinux/isolinux.bin': No such file or directory
Problem is that this file appears to be missing. It should be there if you installed live-build, along with some *.c32 files. Are they there? Is live-build really installed?
Oh, and you're not getting senile. I added live-build to the list of requirements kinda late.
I will have more to say about core and base packages. Look in live-sdk/lib/libdevuanskd/config, but don't mess with them. What you see there is what gets added to the initial debootstrap install.
sudo is written into the scripts in a few places, so it won't really work to use su.
The easy way to get sudo is to add your user to the sudo group.
adduser <username> sudo
I got the idea I can build any arch, what I need to know is if I can use live SDK on any arch. Maybe the process works better if you're building in a 64 bit environment or does it not matter?
Good question. I don't know. I've been running it on amd64. I have a feeling it's not possible or it's difficult to do.
Oh, here you go - it's called "cross-debootstrapping"
https://wiki.debian.org/Debootstrap
APPENDIX
This appendix is not complete. It focuses on the elements used in the example blends.
See live-sdk/lib/libdevuansdk/doc/ for more.
VARIABLES
`vars` and `arrs` are global arrays holding other global variables and arrays.
this is required for `zuper` and helps a lot with debugging. if you declare new
variables or arrays, add them to `vars` and `arrs`, respectively.
Built-in variables:
Most of the built-in variables are not required to be in your config file. Add them if you want to override the default settings.
blend_name
Give your blend a name. You need it for the name of the blend file and for the directory that holds all of the files used in the blend.
os
default is "devuan" Changing this will affect the default image name. If you change it to os="$blend_name"
you can have separate tarballs and bootstrap directories for each blend.
release
default is "jessie" This will affect the build. NOTE: see special instructions for ascii.
version
default is currently "1.0.0-RC"
arch
whatever arch you use in the command 'load devuan <arch> <blend>'
For a live-CD, choices are i386 or amd64.
image_name
default is "${os}_${release}_${version}_${arch}"
username
userpass
These get used with the add-user function.
rootcredentials
default is root:toor
i386flavor="586"
default i386 flavor is 686-pae. Use this variable if you want a 586 kernel.
section
sections of the repo. for adding in /etc/apt/sources.list. separate them
with whitespaces. default is "main".
Additional variables used in example blends:
blend_vers -
this only exists in the blend config file and is used for the image name.
default_shell
this only gets used in the blend file (chsh)
efi_work
This is a directory where efi boot files get made. I'm not sure where it will end up, but it will appear in another example.
ARRAYS
core_packages
base_packages
These are part of the sdk that you should not need to change.
extra_packages
List of additional packages that you want in the build.
custom_deb_packages
Packages you want installed from the .deb packages you put in your blend directory. Only the packages that are listed will be installed.
If there are i386 and amd64 versions of a package, both files can be present, and the list needs to be edited to use the right package
for the arch you're building.
purge_packages
Anything that gets installed that you want removed.
FUNCTIONS
Functions used in the example blends
ordered according to build_iso_dist. (in live-sdk/lib/libdevuansdk/zlibs/helpers)
blend_preinst
add user must happen before custom boot menu is created
iso_setup_isolinux
sudo cp -rav "$BLENDPATH"/isolinux-overlay/* binary/isolinux/
iso_write_isolinux_cfg
custom boot menu
blend_postinst
iso_make_efi
install-custdebs
copy rootfs-overlay
blend_finalize
iso_squash_strap
mksquashfs: -noappend -comp xz -Xbcj x86 || zerr
iso_xorriso_build
-eltorito-alt-boot -e boot/grub/efiboot.img -isohybrid-gpt-basdat -no-emul-boot \
MANIPULATING THE ISO
See the jessie-oblx example blend. There are some additonal functions in the blend file to customize the boot menu, boot files and other aspects of the iso.
blend_preinst()
Same as in previous example, except that the lines for copying the custom deb files are uncommented.
blend_postinst()
Added lines to call the iso_make_efi function, which makes the boot files for uefi.
iso_setup_isolinux()
Not necessary. This was in the blend before some changes got added to live-sdk. Aside from my comments, this function is identical to the one in lib/libdevuansdk/zlibs/iso, so its presence here is superfluous.
iso_write_isolinux_cfg()
Customize your isolinux boot menu here. (If you're an expert in this subject, I would like a consult with you.)
iso_squash_strap()
This is identical to the stock iso_squash_strap function with the exception of the additional x86-specific compression option, "-Xbcj x86" which can reduce a CD-size iso file by about 20MB.
iso_xorriso_build()
One line was added from the stock function for uefi-compatibility. If you disable uefi in the config file, you also need to remove or comment:
-eltorito-alt-boot -e boot/grub/efiboot.img -isohybrid-gpt-basdat -no-emul-boot \
iso_make_efi()
Lifted from refractasnapshot and plugged into the sdk. This might get merged into live-sdk.
Customize the grub boot menu for uefi boot.
The config file for jessie-oblx is mostly self-explanatory. The base_packages list gets added to the existing base_packages. This makes a bigger bootstrap tarball. The goal of this is to make subsequent builds of the same blend go faster. Sometimes this works, and sometimes it doesn't. Your safest bet for a re-run is to remove everything in live-sdk/tmp/*. You can try deleting only the bootstrap directory for your blend before a re-run. That might work. I'm writing this paragraph off the top of my head, and like this paragraph, some parts of live-sdk are still under construction.
Good Life has refractainstaller and refractasnapshot. The video on the sf site is too small to read anything. Here it is on youtube, showing the install process (with refractainstaller). My thanks to whoever is repsonsible for that video. People have been asking me to make one, and I never did. Is the text guide available anywhere?
https://www.youtube.com/watch?v=T7TC1PlUfck
WARNING: This is a work in progress. There should be enough to get you started. There is more to come. (including formatting this page)
INTRODUCTION
Devuan's live-sdk uses shell scripts to create a live-CD/DVD iso. With no configuration, live-sdk will make a small, cli-only live iso. To create a live iso with your choice of packages and configurations, you can make your own blend. A blend consists of a config file and a blend file, and it may also contain customized files for the live system and deb packages or even source code for items that aren't in the devuan repository.
The config file contains lists of packages to install or remove along with any variables you want to set. The blend file contains functions to control the build process. Some of these functions may be copied from the sdk and customized. The customized version will override the stock version during the build. It's also possible to add functions that don't exist in the sdk.
For a more complex example and some explanation of the parts of the sdk, see:
Heads Developer Guide (PDF) and also
Heads git repository
REQUIREMENTS
You need these packages installed:
git zsh debootstrap sudo xz-utils xorriso squashfs-tools live-boot syslinux-common
You will also need live-build. (I think this can easily be changed to require either syslinux and isolinux or live-build.)
You probably want these, too:
live-config live-config-sysvinit
sudo must be enabled for your user.
(If physical access is not a security issue, do yourself a favor and set sudo with no password, or set the timeout longer than the build time, so you only have to enter the password once.)
These are listed as required by libdevuansdk, but I don't have them, and I'm building isos with live-sdk.
kpartx cgpt
GET LIVE-SDK
git clone https://github.com/parazyd/live-sdk.git
cd live-sdk
git submodule update --init
You can build a minimal live iso without creating a blend. You'll get a very small system with no desktop, the root password will be "toor", there will be no unprivileged user, and most of the standard system utilities will be missing. To do that, use the same commands you would use to build the blend, but leave out the blend_name. You can run this bare build to make sure you have all the requirements; if it doesn't work, you know the problem is not in your blend.
zsh -f
source sdk
load devuan <arch> <blend_name>
build_iso_dist
STEPS TO CREATE A BLEND
Each blend gets its own directory in live-sdk/blends. The example we'll use is simple-ice, and we'll make a small live system with icewm and very few apps. We'll be creating two files in live-sdk/blends/simple-ice/. One is config and the other is <blend_name>.blend, or in this example, simple-ice.blend.
Example blends: Download and unpack the tarball in the live-sdk/blends directory. (subject to change and inconsistency with the howto.)
simple-ice: (IceWM with a few extra apps)
jessie-oblx: (Openbox, custom debs, custom boot menu, uefi bootable)
1. Add a line to the blend map in live-sdk/sdk with the blend name and the location where the blend files can be found. $R is the working directory, live-sdk/. It's also possible to use a URL for the location.
blend_map=(
"devuan-live" "$R/blends/devuan-live/devuan-live.blend"
"heads" "$R/../heads.blend"
"simple-ice" "$R/blends/simple-ice/simple-ice.blend"
"jessie-oblx" "$R/blends/jessie-oblx.blend"
)
2. Edit config file (live-sdk/blends/simple-ice/config)
Some variables you can use:
image_name
You'll want to give your iso a unique name. The default setting will give you:
devuan_jessie_1.0.0-RC_amd64-live.iso (or -i386-live.iso)
All of these variables except blend_vers are built into the sdk. I added blend_vers for my convenience. It only gets used in the image name here. Whatever you use for an image name will be appended with "-live.iso". You do not need to define the arch here; that will be done when you load the blend at build time.
blend_name="simple-ice"
blend_vers="1.0"
image_name="${blend_name}-${blend_vers}-${arch}"
Use this if you want separate bootstrap tarballs for each blend. (Warning: watch your disk space.)
os="$blend_name"
Add an unprivileged user to the system, change the default shell from dash to bash, and change the root password with the following lines:
username="user"
userpass="user"
default_shell="/bin/bash"
rootcredentials="root:mypassword"
Add some packages.
The package lists exist as arrays in live-sdk. You can add packages to the extra_packages array in the config file as shown in the code box below. Use tabs, not spaces. Note that the syntax here will cause these packages to be added to the extra_packages array if it already exists (i.e. if it's defined elsewhere in the sdk.)
Troubleshooting note: One common reason for a failed build is if one of the listed packages does not exist (or is spelled wrong). It may not be obvious when this happens. Check the logs, but also check your package list.
extra_packages+=(
grub-pc
lsof
bash-completion
texinfo
acpi-support-base
aptitude
apt-listchanges
discover
dnsutils
doc-debian
docutils-common
docutils-doc
ftp
gettext
gnupg2
laptop-detect
mlocate
mutt
ncurses-term
nfs-common
procmail
reportbug
telnet
usbutils
w3m
whois
xorg
xserver-xorg-video-all
xterm
pmount
spacefm
lightdm
icewm
leafpad
)
Keep dbus?
EDIT: This probably isn't necessary unless you go deeper into the sdk and change the core_packages and base_packages.
The default purge_packages array contains only dbus. Purging dbus will also remove packages needed for many desktops. Disable or replace that purge with:
purge_packages=()
or
purge_packages=(insert your own purge list here)
or to add to the default purge list
purge_packages+=(insert your own purge list here)
Add custom deb packages:
If you want to install deb packages that aren't in the repository, put them in the blend directory and list them in your config file. In this example, we'll add refractasnapshot-base, refractainstaller-base and palemoon web browser. Palemoon and Yad are listed twice because the packages are arch-specific. Comment out the one you don't want in the build. (NOTE: This is not in the simple-ice example tarball, but you could add your own custom debs list and supply the packages. Uncomment the appropriate lines in blend_preinst() in the blend file. See Step 4. Edit the blend file.)
Package lists will be installed in the order they appear. Packages within a list will be installed alphabetically. In this example, refractainstaller-gui and refractasnapshot-gui depend on yad, so yad must be installed first.
# i386
#custom_deb_packages+=(yad_0.27.0-1_i386.deb palemoon_27.2.0~repack-1_i386.deb)
# amd64
custom_deb_packages+=(yad_0.27.0-1_amd64.deb palemoon_27.2.0~repack-1_amd64.deb)
custom_deb_packages+=(
refractainstaller-base_9.2.1_all.deb
refractainstaller-gui_9.2.1_all.deb
refractasnapshot-base_10.0.2_all.deb
refractasnapshot-gui_10.0.2_all.deb
)
3. Add custom files:
System files (including user files)
Custom config files, icons, images or any other files you want to be present in the live system can be added via the rootfs-overlay. Create a directory inside blends/simple-ice called rootfs-overlay. Files that you add should be placed in their relative positions in the directory tree. So, if you wanted to use a custom sources.list, you'd put your custom file in rootfs-overlay/etc/apt/, and it will be added to the system.
The simple-ice example contains an apt config file to install packages without Recommends, modified xdg files to prevent automatic creation of a bunch of directories in your home. (You know the ones I mean - Documents, Music, Video, etc., all of which I consider spam.) There's also a Devuan replacement for the Debian logo in the IceWM applications button and a couple of config files for IceWM.
blends/simple-ice/rootfs-overlay/
├── etc
│ ├── apt
│ │ └── apt.conf.d
│ │ └── 00norecommends
│ ├── X11
│ │ └── icewm
│ │ ├── focus_mode
│ │ └── theme
│ └── xdg
│ ├── user-dirs.conf
│ └── user-dirs.defaults
└── usr
└── share
└── icewm
└── taskbar
└── icewm.xpm
For your own blend, you will need to figure out what files you need and where they go.
Isolinux files
If you want custom isolinux boot files, such as a splash image or boot help files, put them in blends/<blend_name>/isolinux-overlay.
The simple-ice example just has a boot splash image.
4. Edit the blend file (live-sdk/blends/simple-ice/simple-ice.blend)
Start your blend file with the following lines, so that the sdk can find your blend.
BLENDPATH="${BLENDPATH:-$(dirname $0)}"
source $BLENDPATH/config
Add the blend_preinst function. Uncomment the last two lines if you have custom debs to install.
blend_preinst() {
fn blend_preinst
req=(strapdir blend)
ckreq || return 1
notice "executing $blend_name preinst"
add-user "$username" "$userpass"
# notice "copying blend-specific debs"
# cp -fv "$BLENDPATH"/*.deb "$R/extra/custom-packages"
}
Add the blend_postinst function. This will copy the rootfs-overlay. If your rootfs-overlay is a git repository, see the heads sdk. This also calls the blend_finalize function, which contains instructions to be run in the chrooted system.
blend_postinst() {
fn blend_postinst
req=(strapdir)
ckreq || return 1
notice "executing $blend_name postinst"
pushd "$strapdir"
sudo rsync -avx "$BLENDPATH"/rootfs-overlay/* . || zerr
popd
blend_finalize || zerr
}
Add the blend_finalize function to do the following:
Add user to some groups
Set the default shell.
Give user ownership of their files.
Remove fstab.
Final cleanup and run updatedb. (I commented out the last autoremove. You might need it.)
blend_finalize() {
fn blend_finalize
req=(strapdir)
ckreq || return 1
cat <<EOF | sudo tee ${strapdir}/finalize >/dev/null
#!/bin/sh
# finalize
set -x
exec 2>finalize.log
## perms
for i in cdrom floppy audio dip video plugdev netdev ; do # lpadmin scanner # put this in config file?
gpasswd -a "$username" \${i}
done
chsh -s "$default_shell" "$username"
chown -R 1000:1000 /home/"$username"
# remove fstab for iso. This should probably be in iso_prepare_strap
rm -f /etc/fstab
## cleanup
#apt-get --yes --force-yes autoremove
apt-get clean
updatedb
EOF
chroot-script finalize || zerr
}
5. Make it so!
To build a 64-bit version of the example, from the live-sdk directory, run:
zsh -f
source sdk
load devuan amd64 simple-ice
build_iso_dist
If all goes well, your iso will be in live-sdk/dist/
Exit the zsh shell.
To make the 32-bit version of the same blend, repeat the commands above, but replace amd64 with i386. (Change custom_deb_packages if you have arch-specific packages to install.)
Happy Hacking!
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
EXAMPLE BLEND LAYOUT
simple-ice/
├── config
├── isolinux-overlay
│ └── splash.png
├── rootfs-overlay
│ ├── etc
│ │ ├── apt
│ │ │ └── apt.conf.d
│ │ │ └── 00norecommends
│ │ ├── X11
│ │ │ └── icewm
│ │ │ ├── focus_mode
│ │ │ └── theme
│ │ └── xdg
│ │ ├── user-dirs.conf
│ │ └── user-dirs.defaults
│ └── usr
│ └── share
│ └── icewm
│ └── taskbar
│ └── icewm.xpm
└── simple-ice.blend
Special instructions for ascii (testing)
Add to the blend config file:
release="ascii"
Right now (March 2017) rsyslog is getting removed at the end of the build and alsa-base does not exist. Workaround is to insert the following line into the debootstrap command at lines 42-44 of zlibs/bootstrap.
--include=busybox,busybox-syslogd --exclude=rsyslog,alsa-base \
...and let me know if this changes, so I can keep this doc current. Thanks.
Nice to see you around, miyo!
I tried building miyolinux with devuan's live-sdk, but I failed to get all the configs right. Haven't had time, but I'd like to get back to that and arrange all the blend files so that they can be dropped into one directory in live-sdk, and then anyone will be able to make their own "make it your own", always with the latest updates. (packages are pulled from the repo for the build.)
live-sdk can be automated, and you don't need to keep two installations to build for i386 and amd64. In fact, you don't even need one installation of the blend you're building unless you're creating a new blend and need to figure out what goes where.
Not installed. I have libdvdnav and libdvdread, but I can't remember the last time I tried watching a dvd.
This might answer your questions about packaging for devuan:
https://git.devuan.org/dev1fanboy/Upgra … alkthrough
The package you're looking for appears to be in the backports repo.
Be careful with backports: https://dev1galaxy.org/viewtopic.php?id=32
$ aptitude show libdvdcss2
No current or candidate version found for libdvdcss2
Package: libdvdcss2
State: not a real package
Provided by: libdvd-pkg
$ apt-cache policy libdvd-pkg
libdvd-pkg:
Installed: (none)
Candidate: 1.4.0-1-1~bpo8+1
Version table:
1.4.0-1-2 0
90 http://us.mirror.devuan.org/merged/ ascii/contrib amd64 Packages
1.4.0-1-1~bpo8+1 0
100 http://packages.devuan.org/merged/ jessie-backports/contrib amd64 Packages
I'm pretty sure the git repo was moved because git.devuan.org has been so slow lately. I assume that it's a technical problem and that eventually, there will be a technical solution.
As for having to go to corporate websites, you only need to go there once. Clone the git repo, and you can build the iso yourself. It's all scripts.
Thank you for that gem! I've been missing apt-file for a long time.
Slight modification: I didn't copy the cache file. I copied the debian sources.list to my user's home and ran 'apt-file -s sources.list update' and it put an apt-file directory in ~/.cache.
I think you have to do it after the install. I was not able to do it during the install. See https://dev1galaxy.org/viewtopic.php?id=16
You should be able to install wpasupplicant and wireless tools with any of the package managers after the install with any of the isos. Only the DVD has wicd on it.
Other options include using the beta1 if you have a copy or waiting until rc1, in which this issue is fixed.
Installing AMD proprietary drivers on devuan should be the same as on debian. I know it is the same for nvidia drivers, but I have no experience with the amd. Please report back whether it works or not. I'm sure you're not the only one with this question.
Better to download from the devuan merged non-free repos so that updates (if any) will be picked up.
Got a link? I can't find any packages at packages.devuan.org, and I can't even get to us.mirror.devuan.org in a web browser.
Once the package is installed, updates will not be a problem - the package manager will know the package is there and the system will be able to connect to the internet because the package is installed. Please note that I am NOT saying to add debian to sources.list. I'm just saying to get the package from a place that's accessible with any web browser and any operating system.
It's a known problem - the beta2 installer doesn't find the wireless drivers. You might find them on the CD/DVD in /cdrom/firmware during installation, and you can probably find them if you pop the CD into a running system. Or you could download it. Either way, just install with dpkg as you suggested.
I'm pretty sure you need firmware-ralink which is in the non-free repo, and it's a package that devuan does not alter. That means you can get it from debian:
https://packages.debian.org/jessie/firmware-ralink
I was chrooting into an old wheezy installation to run apt-file until someone showed me these:
To find what package a file comes from:
dpkg -S <file>
To find what files come with a package:
dpkg -L <package>
more...
https://lists.dyne.org/lurker/message/2 … 61.en.html
Author: Adam Borowski
Date: 2017-01-28 05:08 -500
To: dng
Subject: Re: [DNG] Backports priority(snip)...
Temporarily bump the priority of stable above 1000, it will downgrade
everything to that release.