Support us on Patreon to keep GamingOnLinux alive. This ensures all of our main content remains free for everyone. Just good, fresh content! Alternatively, you can donate through PayPal. You can also buy games using our partner links for GOG and Humble Store.
error: unexpectedly disconnected from boot status demon
Page: «2/2
  Go to:
BlackBloodRum 9 years 3 days ago
Quoting: Cyba.CowboySorry, maybe I wasn't clear.

This is after my manufacturer logo and before I would normally input my disk encryption passphrase, prior to the operating system loading.
At this point, your kernel is already booting. Try an older kernel, new kernels can do strange things sometimes, so it is still a valid check assuming it's not hardware. Otherwise, the other posters options may help
Caldathras about 21 hours ago
Quoting: Cyba.Cowboyerror: unexpectedly disconnected from boot status demon
Not sure that I can contribute anything useful to resolving the original problem. I have generally avoided drive encryption exactly because of the potential for problems like this.

Quoting: whizseIt would be interesting to run some SMART checks on the drive and see if you can unlock and mount it from a live USB. Not really sure what tools would be best for that on Pop_OS?
When I had boot issues with my Pop!_OS installation, I was able to use my MintStick (Linux Mint live USB) to troubleshoot and fix the problem. The Mint Team always includes a number of very useful tools for troubleshooting problems on their live USB. In this case, perhaps Disks or GParted might help where SMART data is concerned?
Cyba.Cowboy about 16 hours ago
Sorry for taking so long to get back to you all - I've been pretty sick and I'm in the midst of changing jobs.


Quoting: CaldathrasI have generally avoided drive encryption exactly because of the potential for problems like this.

I'm considering doing this in the future, because it just causes too many headaches when something goes pear-shaped... My understanding is that for most "mainstream" distros, the default encryption used isn't all that strong, anyway.


Well, I've had a partial win - using this solution, I was able to decrypt my storage drive from a "live" session... But I can't seem to mount the storage drive using this command (as per the 'Ask Ubuntu' answer ):
udisksctl mount -b /dev/mapper/ubuntu--vg-root

If I had to take a guess, I'd say it's because I'm running Pop!_OS and not Ubuntu; but even when I tried "pop" and "popos", I was given the following errors:
Error looking up object for device /dev/mapper/pop--vg-root
Error looking up object for device /dev/mapper/popos--vg-root

Any ideas what I should use instead of "ubuntu"?

I think that if I can mount the drive from within the "live" session, manually backup the data and then do a "clean" install, I can work around this problem... It's not the perfect solution by any stretch of the imagination, but one which keeps my data safe.
Pengling about 15 hours ago
Quoting: Cyba.CowboyIf I had to take a guess, I'd say it's because I'm running Pop!_OS and not Ubuntu; but even when I tried "pop" and "popos", I was given the following errors:
Quoting: Cyba.CowboyAny ideas what I should use instead of "ubuntu"?
I don't use it myself, but just a quick thought: Since Pop!_OS has an underscore in its name, have you tried using "pop_os"?

Last edited by Pengling on 27 October 2024 at 11:31 pm UTC
BlackBloodRum 9 years about 7 hours ago
Um, why mess around with udisksctl in this case?

Optionally switch to root:
$ sudo su -

If you skip above, just append sudo to the following.

Start by listing your partitions:

Note: This will work fine on bash, but zsh may throw a no matches found if one of those are missing, in that case just remove the missing one. For example: $ fdisk -l /dev/sd*

$ fdisk -l /dev/{hd*,sd*,nvm*}

This will show partitions from all regular drives, now read through it until you find your drive (See disk model). Under that you'll see a list of partitions, for example it might read "/dev/sda3"

There will probably be multiple partitions on your boot drive, some listed as "EFI System" and such. Try the largest partition first that says "Linux filesystem" or "unknown" (Unknown can occur in some LUKS setups, and does not indicate a problem in that case).

The largest one may be /dev/sda3 for example. Let's try to unlock it:

$ cryptsetup luksOpen /dev/sda3 data3

Let's mount it:
$ mkdir /mnt/data3
$ mount -t auto /dev/mapper/data3 /mnt/data3


If successful you should now see your data in /mnt/data:

$ ls /mnt/data3

On most configurations the largest partition is probably your home directory. Repeat the process for other smaller partitions if they exist, replacing "3" with the partition number, for example to mount an encrypted /dev/sda2:

$ cryptsetup luksOpen /dev/sda2 data2
$ mkdir /mnt/data2
$ mount -t auto /dev/mapper/data2 /mnt/data2


This will likely be your filesystem root ( / ) directory. You can swap and change then numbers or devices as needed, the process is the same.

When done, for each one just do:
$ umount /mnt/data2
$ cryptsetup luksClose data2


While swapping numbers as needed. :-)
While you're here, please consider supporting GamingOnLinux on:

Reward Tiers: Patreon. Plain Donations: PayPal.

This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!

You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register


Or login with...
Sign in with Steam Sign in with Google
Social logins require cookies to stay logged in.