You are not logged in.
Yes, that's right.
Does the haveged package help? The kernel did suffer with an entropy problem a while back, perhaps it has recurred.
Could you please walk me through a quick chroot session, beginning with the ISO rescue mode to entering CLI commands?
You don't need to enter any commands at all, just select rescue mode from the "Advanced Options" sub-menu and follow the prompts to open a shell in the installed system.
See also https://www.debian.org/releases/stable/ … 06.en.html
Once you're chrooted into the installed system you can install the pastebinint package and use that to upload the command output to Debian's pastebin service so you can just share the URL here rather than transcribe it. See the manpage for details.
bc is bloat!
Sorry, I'll stop now...
So hd2 is the Mac drive then?
What does set say about the root & prefix?
If you have a live ISO image handy can you post the output of
efibootmgr -v
parted --listi dont think anyone that fell for the bloat meme has is music in *.wav format
CODECs are bloat!
Doing basic math in the bash shell.
Or use a better shell that can actually handle floating point arithmetic:
% echo $SHELL
/bin/zsh
% echo $((1.0/2.0))
0.5
%There are several kernel modules that provide the firewall functionality but the init script (or systemd unit file) is needed to load the user space process that actually runs the firewall.
The headers are all you need to compile new drivers. EDIT: and the build-essential package.
To add the DVD to your sources first copy the image to the root filesystem, create a mountpoint for it and mount the image:
# mkdir /usr/local/dvd
# mkdir /dvd
# cp devuan.iso /usr/local/dvd/
# mount /usr/local/dvd/devuan.iso /dvdThen create an fstab entry so it is mounted at every boot:
# grep /dvd /proc/self/mounts >> /etc/fstabAnd add it to /etc/apt/sources.list:
deb [trusted=yes] file:/dvd beowulf mainYou should now be able to install packages from the DVD:
# apt update
# apt install linux-headers-amd64 build-essentialPossibly but ?
Bloat!
$ ls -l /bin/ed
-rwxr-xr-x 1 root root 55368 Jan 19 07:39 /bin/ed
$ ls -l /bin/tee
-rwxr-xr-x 1 root root 39080 Mar 6 2020 /bin/tee
$![]()
I've had a copy of Legacies of the Sword: The Kashima-Shinryu and Samurai Martial Culture by Karl Friday on order since just before the current lockdown but I can't pick it up...
Bloody COVID.
You need to set the partition as the root rather than the entire device.
Use
ls (hd2,gpt1)
ls (hd2,gpt2)
ls (hd2,gpt3)Are the kernel & initramfs image (symlinks) listed in the output of any of those commands?
Your sources look fine, can we see an example of the actual errors?
apt -s install firefox-esrUse the ls command to view all of the attached disks and their partitions and use (for example)
ls (hd0,1)^ That will show the content of the first partition on the first hard drive.
Once you find vmlinuz & initrd.img set that partition as the root, for example
set root=(hd0,1)Then declare the location of the kernel, root partition (presumed to be /dev/sda1 for this example, edit that bit if it's elsewhere) & initramfs image and boot the system:
linux /vmlinuz root=/dev/sda1
initrd /initrd.img
bootOnce the system is booted then run this command for a non-UEFI system (be sure to choose the block device rather than a partition when asked):
# dpkg-reconfigure grub-pcOr this command for a UEFI system:
# dpkg-reconfigure grub-efi-amd64The grub> prompt indicates that /boot/grub/grub.cfg cannot be found, reconfiguring the relevant GRUB package should fix that.
If you're curious then you can use the set command (with no options) to find out where GRUB is looking for the configuration file.
What are your sources?
apt policyI can't load pcc_cpufreq unless acpi_cpufreq is also loaded so I don't think they can be used independently but this is just a guess. I can't really understand the official documentation.
How did you determine that Slackware system uses pcc instead of acpi?
And btw:
groucho@devuan:~$ cat /proc/modules | grep _cpufreq
grep _cpufreq /proc/modulesI think ffplay is also bloat, at least for music files:
for f in */*.wav; do aplay "$f"; doneStevie Ray Vaughan & Double Trouble - Voodoo Chile (Live From Austin, TX)
Amazing performance from SRV — better than Hendrix?
For me: Carter USM, Post Historic Monsters.
Do you get updates if you switch to a specific mirror instead of the deb.devuan.org FQDN?
Is it possible to make the system use pcc_cpufreq instead of acpi_cpufreq?
You could try blocking the acpi_cpufreq module from the GRUB menu by pressing "e" with the Devuan entry highlighted then add this to the end of the line that starts with "linux":
module_blacklist=acpi_cpufreqThen press <ctrl>+x (at the same time) to boot the modified entry and use this to check if pcc_cpufreq is being used:
cpupower frequency-info # supplied by the linux-cpupower packageIf that works then either add the kernel parameter to GRUB_CMDLINE_LINUX in /etc/default/grub and run update-grub or use https://wiki.archlinux.org/index.php/Ke … probe.d/_2 to block it permanently.
Have you checked the logs?
http://deb.devuan.org/devuan/zzz-dists/ shows the last repository update as this morning so you should probably both share your sources — which mirrors are you using?
Instead of bloaty gui text editors use ed.
Much as I love ed it is also bloat if you just want to create new files:
tee /path/to/file <<!
blah
blah
blah
!Or
cat > /path/to/file <<!
blah
blah
blah
!I prefer tee because it can be prepended with sudo (or doas) if you want to create system files as your normal user. See also https://xkcd.com/378/
And one from me: instead of bloated wallpaper programs to cycle the desktop background every ten minutes just add this one-liner to ~/.xsessionrc:
while true; do feh --bg-fill --randomize /path/to/wallpaper/directory; sleep 600; done &EDIT: and use mksh instead of bloated bash!
Have you installed the amd64-microcode package?
I'd like to give this a thorough stress-test so if the new APU is faulty I can reclaim the expense from the seller. Is there a way to do that?
People use virtualbox because it's easy to figure out how to do things with it.
Have you tried gnome-boxes? It's easier to use than VirtualBox, and virt-manager isn't particularly difficult to use either.
how does one attach a usb drive in qemu?
See https://www.spice-space.org/usbredir.html ← that shows how to configure pass-through for the USB ports themselves. It works for any attached USB devices, including hard drives; gnome-boxes configures it automagically.
EDIT: my fdn guide shows a complete configuration from the command line, including shared folders and USB pass-through.