You are not logged in.
A PCI "adddress" has format "bus : device . function" so I would guess on
-b 0x04 -d 0x00 -f 0x00The USB codes are vendor and product and those would not be the ones to use here, a neither the bus and device indices for the USB sub system.
There's also the possibillity that the filenames are "urlencoded" by the file manager. It would mean that spaces have been replaced with "%20" (and a bit more).
You might try adding the following function:
urldecode() {
bash -c "printf '%b' '$(echo "$1" | sed 's|%%| |g;s|%|\\x|g;s| |%|g')'"
}to your /bin/sh script, and then use
convert "$(urldecode $1)" ...TL;DR; In detail, that urldecode function for dash processes its given argument with sed to replace all %NN with \xNN except for occurrences of %% which instead are replaced with single %. The resulting string is printed with bash printf using the %b format which makes all \xNN into characters of hexadecimal ASCII code NN.
Note that the sed processing uses space temporarily to make the %%-to-% translation bypass the %NN-to-\xNN translation. It therefore misbehaves for an input that already has space characters.
Perhaps double quotes around %f makes a difference? and around %d as well, probably.
That's good information. Only the s* were interesting and in particular the sda* and sdb* entries which are adapters for SATA devices and their partitions. Apparently there is one "drive", sda, with 4 partitions and another, sdb, with 1 partition.
This kind of presents the same hardware picture as your post #34 execpt that it has sda4 instead of sda6.
That difference is probably the cause of your problem... and now we need @fsmithred to draw conclusions ![]()
Well, there should be less than 20 s* entries in /dev so a little bit of eye-to-hand copying would work for me ![]()
No worries. If you have a camera nearby you could take a picture and then refer to that...
Only those starting with "s" to begin with.
Ok, let's start with those starting with "s" other than "snapshot", "stderr", "stdin" and "stdout" (irrelevant if they are there or not).
Would you mind reporting what ls /dev/ shows at the (initramfs) prompt.
Hmm I think your last postsand my edit crossed in time; please confirm again while I go and get coffee ...
Thanks. Maybe the support team has improved the feature beyond useful again... I'll have a word with them...
EDIT: there is the possibility the feature has just appeared. Perhaps you, @Altoid, could give it a try.
If you look carefully you'll see a "Mark SOLVED" link near the top and one near the bottom of the page. Try "pushing" one of those.
The steps for a bug report are almost as simple as your fixing of that file:
find out which package is concerned (unattended-upgrades)
find out which version of that package you'r using (1.11.2)
send an email to submit@devuan.org with a useful subject, and the body starting "formally" with 2 lines:
Package: unattended-upgrades
Version: 1.11.2then followed by a polite and useful treatise outlining the issue and preferrably including a patch that resolves it.
In this particular case, the "bug" is lack of maintaner effort to upgrade the fork of unattended-upgrades. Therefore beowulf got committed with the debian package version.
Your patch will go part of the way towards upgrading the forked package, which also needs any other changes since the last fork version, 0.93.1+vua2.0, including any adaption to the current package building pipline.
As it happens, the maintainer role for that forked package is currently vacant.
interesting.
I would have thought they would be made by udev but then it would be originating from /sys (or somwhere else?) unless something has blessed the system with some special udev rules; then likely in /etc/udev/rules.d rather than /lib/udev/rules.d.
Or possibly there's some residue from some past "journey" in /etc/fstan?
Maybe there are some dangling links in some /dev/disk/by-* directory?
How do you test that your system is using TLS to connect to the DNS providers?
DNS over TLS has the standard port 853 rather than port 53 for "traditional DNS", so you might verify with tcpdump or similar.
Note that those are two quite different machine emulations. You should both add the -serial mon:stdio argument pair so that you can operate the qemu monitor and inspect the emulation. The monitor is then connected to stdin/out of the temrinal where you typed the qemu-system-x86_64 ... command, and you will "wake it up" by the C-A c sequence, which gives you the qemu monitor prompt.
At there, @dice would see, by the info block command, that the emulated hardware includes a disk (hd0), a cdrom (cd0) without media, a floppy reader (fd0) without media and an sd card drive (sd0) without media, whereas @fsmithred would instead not see any hard disk, but cd0 with media and fd0 and sd0 without media.
Going back to to OP case, I am guessing that the hardware seen by that boot is as per @dice, which would mean that the boot USB gets set up as the primary disk rather than as a cdrom (which the live-boot expects).
Ok. You'll need some disk reflection tool... mabe blkid or lsblk are included in the initrd, or I suppose an ls /dev would tell something ... all being tried at the (initramfs) prompt.
The deal is that at that time, the kernel has been loaded with the initrd as root file system, and then the init scripting cannot find the device where the "real live filesystem" is (that we know to be on the USB). This means in particular that the system has booted so far as to load the kernel and then, eventually, come to run the /bin/sh (typciallly a dash shell) of the initrd.
Since you can come that far, you should be able to recreate the USB with more utilities in the initrd; a task I'm hoping @fsmithred can guide you to...
EDIT: .. just saw the above post... you might follow @fsmithred's lead first; mine is more of fumbling in the dark.
Yes, that's right.
Basically I suspect that that kernel sees a slightly different device enumeation than the live-boot preparation code expected, and wrote in into the initrd boot procedure.
Hmm .. maybe I misunderstood, but isin't that what you refer to at post #25; it's where you come when you try to boot from your iso?
Well, you should do those commands at the (initramfs) prompt rather.
If you can come to the (initramfs) you're doing well: that prompt comes from having loaded the boot kernel and set up the initrd. That means that the machine has booted from the USB but it now runs into problems for "pivoting", i.e., on the attempt to transition the root file system point.
So at that prompt, you might be able to do soome "machine inspection" to figure out what is wrong. You might even create a fatter boot initrd to have more tools, eventually if necessary.
The first thing to do is to get an idea of the boot kernel's picture of the disks. Use df and fdisk -l for that.
Btw, you should be able to inspect that initrd init script on the system before (or when) writing the USB. It should be originating from the file /usr/share/initramfs-tools/init (or similar, if different with live-tools installed; @fsmithred might know)
Normally you'd need root permissions to put scripts there, and it will, if executable, run by cron as root.
However, the PATH is a common cause of issues, see e.g. man 5 crontab.
Have you tried replacing the monitor cable?
1. I'm assuming there's probably no way to change that...or at least nothing I'd want to attempt(?).
It's not too hard. You start by copying /usr/bin into a new drectory /A, then make that become /bin by a careful juggle
rm /bin && /usr/bin/mv /A /binThereafter it's a matter of removing from /bin and /usr/bin those that are mentioned differently in the content lists of installed packages. (You must of course also make sure your PATH includes both /usr/bin and /bin)
For example, if living on the edge you would use the following command pipeline
cat /var/lib/dpkg/info/*.list | \
grep -E '^(/usr)?/bin/' | \
sed 's/^/\/usr/;s/^\/usr\/usr//' | \
xargs -r rmi.e. from the content lists reduce to the /bin/* and /usr/bin/* pathnames and change each pathname by adding prefix /usr to it but then remove /usr/usr if it becomes that, and then give these pathnames to rm
Then do the similar for /sbin and /usr/sbin (but using /bin/mv).
I haven't looked into unmerging /usr/lib. This might involve something more since there is a cache of pathnames for finding dynamic libraries and you wouldn't want to invalidate that willy nilly.
You will want to use http://deb.devuan.org/merged instead.
I.e., the protocol should be http rather than https because the FQDN deb.devuan.org resolves to the collection of repository mirrors, and the local path should be /merged so as to properly trigger the web service rewrite rules that dispatch (bmo 302 redirecs) between pure debian packages and the forked devuan packages.