QSI: no partition data found

Report Bugs, Issues and non- package Requests
Message
Author
User avatar
dolphin_oracle
Developer
Posts: 22277
Joined: Sun Dec 16, 2007 12:17 pm

Re: QSI: no partition data found

#11 Post by dolphin_oracle »

fehlix wrote: Mon Jul 15, 2024 6:57 pm
dolphin_oracle wrote: Mon Jul 15, 2024 6:23 pm
fehlix wrote: Mon Jul 15, 2024 4:48 pm
And we should probably keep "-P"/"--partitions" (within "-Z") as default, to avoid
seeing all users or other mounts.
Maybe an option when running QSI "show all partitions" with "--partitions-full" in case users like to see those also included.
I think you are missing what is being thrown :happy:

the -P and -p (and the -Z partitions info) do not work on the live system.
Probably mixed -F and -Z:

Here the part QSI on KDE Live with "-F" ( which includes "-P" )
with a manually mounted ESP to /boot/efi:

Code: Select all

Partition:
  ID-1: /boot/efi raw-size: 256 MiB size: 252 MiB (98.46%) used: 274 KiB (0.1%) fs: vfat
    dev: /dev/vdd2 maj-min: 253:50
and here with added -p , where now all other partitions are shown,
mount-clicked in dolphin, including luks:

Code: Select all

Partition:
  ID-1: /boot/efi raw-size: 256 MiB size: 252 MiB (98.46%) used: 274 KiB (0.1%) fs: vfat
    dev: /dev/vdd2 maj-min: 253:50
  ID-2: /media/demo/BOOT_VDD3 raw-size: 1024 MiB size: 973.4 MiB (95.06%) used: 232.2 MiB (23.8%)
    fs: ext4 dev: /dev/vdd3 maj-min: 253:51
  ID-3: /media/demo/LUKS_MX233 raw-size: 15.98 GiB size: 15.63 GiB (97.77%)
    used: 13.02 GiB (83.3%) fs: ext4 dev: /dev/dm-0 maj-min: 254:0
    mapped: luks-<filter>
  ID-4: /media/demo/fedora_boot raw-size: 1020 MiB size: 969.4 MiB (95.04%)
    used: 309.8 MiB (32.0%) fs: ext4 dev: /dev/vdb2 maj-min: 253:18
  ID-5: /media/demo/fedora_localhost-live raw-size: 28.41 GiB size: 28.41 GiB (100.00%)
    used: 12.63 GiB (44.5%) fs: btrfs dev: /dev/vdb3 maj-min: 253:19
  ID-6: /media/demo/mx233ahs_vda2 raw-size: 31.75 GiB size: 31.08 GiB (97.89%)
    used: 14.87 GiB (47.9%) fs: ext4 dev: /dev/vda2 maj-min: 253:2
  ID-7: /media/demo/mx233kde_vdc2 raw-size: 31.75 GiB size: 31.08 GiB (97.89%)
    used: 13.43 GiB (43.2%) fs: ext4 dev: /dev/vdc2 maj-min: 253:34

ok fair, but not / and /home
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.

User avatar
fehlix
Developer
Posts: 12706
Joined: Wed Apr 11, 2018 5:09 pm

Re: QSI: no partition data found

#12 Post by fehlix »

In case you want to add the --partion-full inxi option -p like this into QSI:
inxi -Fxxxra -p $filters -c$inxi_color
we might also add to the sed-filtter,
something like this sed-filter:

Code: Select all

           s:/media/$(logname)/:/media/<filter>/:g;
           s:/home/[^/]+/:/home/<filter>/:g;
so the sed looks like this:

Code: Select all

sed -r -e "/Kernel:/s/$UNAMER/$UNAMER${UNAMEV:+ \[$UNAMEV\]}/;
           /mapped:/s/luks-${uuid_filter}/luks-<filter>/;
           s:/media/$(logname)/:/media/<filter>/:g;
           s:/home/[^/]+/:/home/<filter>/:g;
           "
which would than filter out the usernames from /media
and potentially other mounts to current user or other users home

Code: Select all

Partition:
  ID-1: /boot/efi raw-size: 256 MiB size: 252 MiB (98.46%) used: 274 KiB (0.1%) fs: vfat
    dev: /dev/vdd2 maj-min: 253:50
  ID-2: /media/<filter>/BOOT_VDD3 raw-size: 1024 MiB size: 973.4 MiB (95.06%) used: 232.2 MiB (23.8%)
    fs: ext4 dev: /dev/vdd3 maj-min: 253:51
  ID-3: /media/<filter>/LUKS_MX233 raw-size: 15.98 GiB size: 15.63 GiB (97.77%)
    used: 13.02 GiB (83.3%) fs: ext4 dev: /dev/dm-0 maj-min: 254:0
    mapped: luks-<filter>
  ID-4: /media/<filter>/fedora_boot raw-size: 1020 MiB size: 969.4 MiB (95.04%)
    used: 309.8 MiB (32.0%) fs: ext4 dev: /dev/vdb2 maj-min: 253:18
  ID-5: /media/<filter>/fedora_localhost-live raw-size: 28.41 GiB size: 28.41 GiB (100.00%)
    used: 12.63 GiB (44.5%) fs: btrfs dev: /dev/vdb3 maj-min: 253:19
  ID-6: /media/<filter>/mx233ahs_vda2 raw-size: 31.75 GiB size: 31.08 GiB (97.89%)
    used: 14.87 GiB (47.9%) fs: ext4 dev: /dev/vda2 maj-min: 253:2
  ID-7: /media/<filter>/mx233kde_vdc2 raw-size: 31.75 GiB size: 31.08 GiB (97.89%)
    used: 13.43 GiB (43.2%) fs: ext4 dev: /dev/vdc2 maj-min: 253:34

User avatar
dolphin_oracle
Developer
Posts: 22277
Joined: Sun Dec 16, 2007 12:17 pm

Re: QSI: no partition data found

#13 Post by dolphin_oracle »

I don’t really.
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.

User avatar
thomasl
Posts: 477
Joined: Sun Feb 04, 2018 9:26 am

Re: QSI: no partition data found

#14 Post by thomasl »

Folks, please don't get your knickers in a twist. I have zero problems with the way QSI works ATM and if I have a sudden urge to study partition data, I know where I can find them.

I started this whole hullabaloo simply because @m_pav wrote in another thread:
m_pav wrote: Sat Jul 13, 2024 4:54 pmA fully encrypted drive needs to have an unencrypted boot partition to read the bootloader out from. Your QSI shows, no partitions data found which might point to the source of the problem.
... which I took to mean that no partition data found is not to be expected. As @dolphin_oracle has made clear, for a live system this seems to be normal.
Frugal installs on Lenovo ThinkPad L14 Ryzen 5 4650U/24GB * HP Pavilion Ryzen 3 3300U/16GB * Toshiba R950 i5-3340M/12GB
I have a reservation... What do you mean it's not in the COMPUTER!

User avatar
dolphin_oracle
Developer
Posts: 22277
Joined: Sun Dec 16, 2007 12:17 pm

Re: QSI: no partition data found

#15 Post by dolphin_oracle »

thomasl wrote: Tue Jul 16, 2024 7:57 am Folks, please don't get your knickers in a twist.
my knickers remain untwisted :p
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.

Post Reply

Return to “Bugs and Non-Package Requests Forum”