You are not logged in.
You'll probably do need to understand insserv, which is the one using the LSB headers, and manipulating the files /etc/init.d/.depend.{boot,start,stop}, which are the "make files" for the init process. I'm not totally sure where/when/how init uses those files, but as I remember it, those files tell which scripts to run when. The insserv man page points at startpar as the actual driver process, so I guess, all together it's init, insserv and startpar to peruse.
From the log snippets, it looks to me to be an X issue, that after launch, X says it's ready (signals) before it's actually waiting for connections. So sometimes it fails when the connection attempt is made. This causes lightdm to try another launch, but the second launch fails before giving any signal. So now lightdm is awaiting the signal from X, while the first X is sitting there waiting for connections.
If you would have a side entrance (eg ssh) ot the system you could check up if it might be this situation.
But I don't really know what to do about it. If any part of this is scripted, eg lightdm, it might be possible to insert a delay between receiving the ready signal and attempting a connection. Or something.
Well, since process ids may have anything between one and five digits, you could as well let the interpreter do the tokenization, making it be like the following:
wmctrl -l -p | while read a b c d ; do echo $c ; done
It looks like it takes every space character as a delimiter, whereas awk sees space sequences as delimiting units.
You may want to peep at "[SOLVED] slim does not set a default session".
A bit old, but possibly relevant still.
By my theory, the desired resources are tagged with urxvt (rather than URxvt), and they are therefore not applicable to a window lacking that tag. The supporting patch would thus be to replace all urxvt with URxvt in the resource definition file(s), and then it all will magically work.
Presumably it's because the WM_CLASS property is different between the two cases, and that the resources for urxvt refers to the differing class tag.
Use xprop | grep WM_CLASS to check.
You'll have Murpy's ghost chuckling at your side, I'm sure
1. You should probably not change file system type at the same time as repartitioning. I know that sound engineering tells you to change at least two things every time, but sometimes it's safer to take it in steps.
2. rsync transfer of a root partition is not something I've had success with. Perhaps resizing and dd transfer is an option. (Somewhere someone said ext3 be converted to ext4 without reformatting).
3. Be ready to manually update the UUIDs in grub.cfg and fstab. I'm not sure whether UUIDs will change or not, but I would expect them to.
There might be some thinklight brightness control somewhere under /sys/bus/platform/drivers/thinkpad_acpi/ ?
The "s" bbcode makes a strike-through
See https://dev1galaxy.org/help.php#bbcode
Maybe the phone has two partitions? E.g. internal and external sd cards?
What's the output from:
$ tor-resolve devuanfwojg73k6r.onion
I believe that should tell you what the onion address resolves to. Then compare with output from:
$ host pkgmaster.devuan.org
Great. I think. The command prompt may well be post-pivot, which would mean that you actually have booted Devuan, but that there is an issue with the graphics. A few things to inspect:
# blkid
# dmesg | tail
# tail /var/log/syslog
# ls -l /dev/sd*
Though, I'd say fsmithred has more experience about getting it back into shape from this state, so maybe you should now ignore me
Did you try changing the grub line? Into
linux /boot/vmlinuz-3.16.0-4-amd64 root=UUID=f73498af-846e-447a-87d7-4f0b0b01818d
so as to completely avoid referring to /dev/sdd1
Ok. I don't know why the initrd building worries about the device node, since it should just take what is given at boot time, and not at building time. There might be a number of gremlins under that stone, but maybe you get away with just rolling back and mounting devtmpfs onto /dev before another update-initramfs.
# mount -t devtmpfs none /dev
By idle guesswork, I think the initrd building really would want to find a file /var/lib/initramfs-tools/3.16.0-4-amd64 with content:
fd47cef5-ce5e-4090-8bfa-aef277a49e3e /boot/initrd.img-3.16.0-4-amd64
as its "database entry" of where that initrd is supposed to reside. But it burns my synapses trying to fathom an underlying logic for it.
Anyhow, maybe it'll be happy enough with having devtmpfs mounted.
Hmm, there you see the disadvantage of me not actually testing the commands. It needs the -u as well as -k all.
(again edited the original; only a few commands to go )
Sorry again; I'm too sloppy. It should have been
# mount -t devpts none /dev/pts
('ve editied the original as well)
Ah, my fault. It should be
# mount -t proc none /proc
sorry about that.
(I've corrected the post above)
Yes, I also expected it to go into a shell prompt; a busybox shell prompt. And it should have a number of useful commands available, plus some more in /bin and /sbin.
But maybe you should park that line of study for the moment, and first address those module complaints. They all concern USB, and perhaps it's important to get them into your initrd.
1. Thus, first restore the grub line to be
linux root=/dev/sdd1
2. Then, boot up your Mint, and mount the partition like before, chroot into it, and set up the kernel's virtual file systems:
# mount /dev/sdd1 /mnt/devuan
# chroot /mnt/devuan
# mount -t proc none /proc
# mount -t sysfs none /sys
# mount -t devpts none /dev/pts
In passing, note that the chroot command starts a /bin/bash from within the Devuan file system, and all commands are from within the Devuan file system. The running kernel however is the Mint kernel.
3. Now, edit the file /etc/initramfs-tools/modules, to add the modules you saw mentioned:
ehci-pci
ehci-orion
uhci-hcd
(note I assume it said ehci-orion with a final n, and not ehci-orio. In any case, the actual module has that final n)
4. Then rebuild the initrd with the following
# update-initramfs -u -k all
That command will look for all kernels in /boot of the chroot-ed file system (Devuan), and prepare an initrd for each, into /boot. It does not change the links /vmlinuz and /initrd.img, which thus remain pointing out the kernel to use and its associated, and now updated, initrd.
5. Then, have a peek at /etc/fstab in the chroot-ed file system, and make sure it's fully agreeable.
6. Exit the chroot, and reboot into Devuan ... without problems ... (as if:))
If it doesn't work, you might want to try the UUID variation for the grub line, i.e.
linux root=UUID=fd47cef5-ce5e-4090-8bfa-aef277a49e3e
Doing so would avoid any possible problems with USB device enumeration during boot. As fsmithred noted, it's possible that the Devuan boot-up sees a different device enumeration than the Mint boot-up (for reasons too complicated to worry about), and, say, that the Devuan partition gets enumrated as the first disk (/dev/sda1) or something. By referring to the UUID, it ignores the enumeration, and it picks the matching partition with that UUID.
It's again important that /etc/fstab of the Devuan partition agrees.
target file system doesn't have requested /sbin/init
mounting on /root/dev failed. no such file or directory
no init found. try passing init=bootarg.
/bin/sh: cant' access tty: job control turned off.
switched to clocksource tsc
That output would be issued by the initrd init script(s), being unhappy with /dev/sdd1 as the root file system. It thus would seem the right kernel, (hd3,msdos1)/vmlinuz, is loaded with its initrd, (hd3,msdos1)/initrd.img, but there is then a problem with the mounting of /dev/sdd1 as root file system.
Perhaps there is an /etc/fstab that disagrees? (In the Devuan partition)
This kind of pivot issues are challenging to debug, but the initrd init scripts (of Devuan) might include the ability to break the initialization procedure, and enter an interactive at a certain point. For example, you could add
break=mount
to the "linux" line in the grub stanza, to gain a command shell at the "mount" point, which is just before the target root file system is mounted.
It will let you investigate things while in the pre-pivot stage. At that stage, the initrd is root file system, so don't confuse yourself about that . The goal would be to find out why, at that point, /dev/sdd1 is not the right file system to pivot to.
You seem to have put yourself in a muddle as you first mount /dev/sdd1 onto /mnt/devuan, and then cd into /sbin rather than /mnt/devuan/sbin.
So the rest shows that your root file system (presumably your Mint) has systemd.
Perhaps you should try # chroot /mnt/devuan instead, in order to investigate the /dev/sdd1 partition as if it was the root file system.
Yes, apparently it's missing a dependency on a libboost* package; not sure which. ASCII offers libboost1.62-dev with the missing include file.
I suppose the feature involved has a home page at http://www.boost.org/
Maybe it has something to do with the -novtswitch argument to X:
...
[+1158.27s] DEBUG: Launching process 3692: /usr/bin/X ... -novtswitch
...
ɐʞsuǝʌs ɹɐʇɐɹd lǝp uǝ ʇsɐɟ
It seems far-fetched that an end user application would require debugfs, but you'll just need to mount it (see e.g. wikipedia)
Or, maybe an lsusb -t would give the same information.