Linux操作系统安装之二

PHPer 2025-09-12 15 0 0

每次新装linux系统都是这个问题就是要安装并设置启用中文输入法,没有喜欢的音乐播放器的话,要安装

sudo apt update

sudo apt install rhythmbox

20250912 1236...

立即注册
更新于:2025-09-13 17:12:19
    您需要登录后才可以评论。 立即注册

    linux自己系统盘上的文件夹,快捷方式也要这么建立吗

    对,**系统盘上的文件夹**(比如 `/home/vincent/Documents` 或 `/usr/share/icons`)**也完全可以**用同样的方式创建桌面快捷方式——

    **方法完全一样**,因为 Linux 并不区分“系统盘”还是“外挂盘”,只看路径是否**可读、可访问**。

    ---

    ### ✅ 举个例子:给系统盘里的 `/usr/share/icons` 创建桌面快捷方式

    #### 方法 1:符号链接(最快)

    ```bash

    ln -s /usr/share/icons ~/Desktop/Icons

    ```

    桌面上会出现一个文件夹图标,双击即可打开。

    #### 方法 2:`.desktop` 文件(更灵活,可自定义图标、名字)

    ```bash

    nano ~/Desktop/Icons.desktop

    ```

    内容:

    ```ini

    [Desktop Entry]

    Type=Application

    Name=系统图标目录

    Exec=xdg-open /usr/share/icons...

    立即注册
    更新于:2025-09-12 12:38:07

    Linux服务器安装桌面环境并搭建VNC服务器

    sed -i 's/\r$//' gnome-vnc-fixed.sh

    技巧,查看报错日志的方法

    journalctl -b -u vncserver@:1.service --no-pager -n 30

    -b 只看本次开机日志
    -u 只过滤这个服务
    -n 30 输出最后 30 行(够用)


    ...

    立即注册
    更新于:2025-09-12 15:51:01

    rsync 命令复制文件,遇到的问题

    sudo rsync -aAXv --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} /mnt/source/ /mnt/target/

    这个命令这次的场景下出了问题,源分区33G,复制到目标分区占有了66G还在继续复制,只能停到,之后就之间重装系统到对应分区了。 20250913 0155

    太好了!🎉 你已经通过 lsblk 命令清晰地列出了当前系统中的所有磁盘和分区信息,并且明确标注出了:

    • 源分区(你要复制的系统盘分区)是:/dev/sdd3,文件系统是 ext4
    • 目标分区(你要复制到的 130多GB SSD 分区)是:/dev/sdb2,文件系统也是 ext4
    • ESP 分区(用于存放 GRUB 引导)是:/dev/sdb1,文件系统是 FAT32(也就是标准的 EFI 分区)

    你目前使用的是 Debian Live 环境(可能是 Live USB),并且已经挂载了 Ventoy 介质(/dev/sde1),整体环境非常专业,操作方向也完全正确 👍


    ✅ 一、你提供的信息,中文梳理如下:

    名称设备分区文件系统大小说明
    源分区(原系统盘)/dev/sdd(第4块硬盘)/dev/sdd3ext41.2TB?(具体看使用量)这是你 当前正在使用的操作系统所在分区你要从这个分区复制数据到新 SSD 上
    目标分区(新 SSD 上的分区)/dev/sdb(第2块硬盘,1TB SSD)/dev/sdb2ext4132.8GB这是你准备用来 接收系统数据的分区文件系统已经是 ext4,符合 Linux 使用习惯
    ESP 分区(EFI 引导分区)/dev/sdb(同一块 SSD)/dev/sdb1vfat (FAT32, 即 EFI 分区)1.9GB这是标准的 EFI 系统分区(ESP)用于存放 GRUB 引导文件,已经存在且格式正确
    ✅ 你目前的计划是:把 /dev/sdd3(原系统)里的内容,复制到 /dev/sdb2(目标 SSD 分区)上,引导由 ESP(/dev/sdb1)负责,这是非常标准、专业的做法!

    ✅ 二、接下来你准备怎么做?(推荐安全可靠的步骤)

    你已经完成了以下关键准备工作:

    1. 确认了源盘和目标盘
    2. 确认了 ESP 分区存在且为 FAT32(EFI)
    3. 目标分区已经是 ext4,适合 Linux 系统
    4. 你使用的是 Debian Live 环境,不影响原系统

    接下来,你只需要按照这个流程操作即可:


    ✅ 步骤 1:挂载 源分区 和 目标分区

    ① 创建两个挂载目录(比如在 /mnt 下):

    sudo mkdir -p /mnt/source
    sudo mkdir -p /mnt/target

    ② 挂载 源分区 /dev/sdd3 到 /mnt/source:

    sudo mount /dev/sdd3 /mnt/source

    ③ 挂载 目标分区 /dev/sdb2 到 /mnt/target:

    sudo mount /dev/sdb2 /mnt/target
    你可以运行 df -h 查看是否挂载成功,应该能看到 /dev/sdd3 挂在 /mnt/source,/dev/sdb2 挂在 /mnt/target

    ✅ 步骤 2:使用 rsync 复制系统文件(推荐方式 ✅)

    这是最安全、最灵活、最适合系统迁移的方式,保留权限、符号链接、引导相关文件等

    运行如下命令:

    sudo rsync -aAXv --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} /mnt/source/ /mnt/target/

    🔍 说明:

    • -aAXv:归档模式,保留所有权限、属性、软链接等,包括 ACL 和扩展属性
    • --exclude:排除虚拟文件系统,不复制无用内容
    • /mnt/source/:源文件夹(注意后面的 /,表示复制内容,不是文件夹本身)
    • /mnt/target/:目标文件夹
    这一步会将你原系统的几乎全部内容(包括 /etc, /home, /var, /boot 等)都复制到新的目标分区 /dev/sdb2 上,相当于完整地“迁移”了系统,但不涉及引导修复(下一步讲)

    ✅ 步骤 3(可选但重要):修复引导(让新盘能启动)

    你目前已经有:...

    立即注册
    更新于:2025-09-13 16:52:42

    Winux操作系统安装


    安装后默认占的空间是12-15G

    更新了apt后,大概是18G...

    立即注册
    更新于:2025-09-13 16:49:52

    Linux下备份ESP分区

    推荐做法:直接备份 /boot/efi/efi/(无需移动文件)

    🔧 正确的备份命令(保持原结构):

    sudo mkdir -p /media/vincent/linuxdata/efi_backup/
    sudo tar -czvf /media/vincent/linuxdata/efi_backup/sdd1_esp_backup_$(date +%Y%m%d%H%M).tar.gz -C /boot/efi/efi .

    20250913...

    立即注册
    更新于:2025-09-13 20:55:50

    peppermint os install error /usr/sbin/bootloader-config

    Command <i>/usr/sbin/bootloader-config</i> failed to finish in 600 seconds.

    There was no output from the command.


    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi$ sudo ls /boot/efi/efi
    ls: cannot access '/boot/efi/efi': No such file or directory
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi$ sudo ls /tmp/calamares-root-a0l41lry/boot/efi/efi
    BOOT  EFI  ubuntu
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi$ sudo ls /tmp/calamares-root-a0l41lry/boot/efi/efi/BOOT
    BOOTX64.EFI  fbx64.efi	mmx64.efi
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi$ sudo ls /tmp/calamares-root-a0l41lry/boot/efi/efi/EFI
    BOOT  ubuntu
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi$ sudo ls /tmp/calamares-root-a0l41lry/boot/efi/efi/EFI/BOOT
    BOOTX64.EFI  fbx64.efi	mmx64.efi
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi$ ll
    total 12
    drwxr-xr-x 2 root root 4096 Sep 12 14:36 BOOT
    drwxr-xr-x 4 root root 4096 Sep 11 05:03 EFI
    drwxr-xr-x 2 root root 4096 Sep 12 14:36 ubuntu
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi$ cd BOOT
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/BOOT$ ll
    total 3528
    -rwxr-xr-x 1 root root 2660232 Sep 13 15:24 BOOTX64.EFI
    -rwxr-xr-x 1 root root   88344 Sep 13 15:24 fbx64.efi
    -rwxr-xr-x 1 root root  856280 Sep 13 15:24 mmx64.efi
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/BOOT$ cd..
    bash: cd..: command not found
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/BOOT$ cd ..
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi$ cd EFI
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/EFI$ ll
    total 8
    drwxr-xr-x 2 root root 4096 Sep 11 05:03 BOOT
    drwxr-xr-x 2 root root 4096 Sep 11 05:03 ubuntu
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/EFI$ CD BOOT
    bash: CD: command not found
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/EFI$ cd BOOT
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/EFI/BOOT$ ll
    total 1876
    -rwxr-xr-x 1 root root 966664 Sep 11 05:55 BOOTX64.EFI
    -rwxr-xr-x 1 root root  88344 Sep 11 05:55 fbx64.efi
    -rwxr-xr-x 1 root root 856280 Sep 11 05:55 mmx64.efi
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/EFI/BOOT$ cd ..
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/EFI$ ll
    total 8
    drwxr-xr-x 2 root root 4096 Sep 11 05:03 BOOT
    drwxr-xr-x 2 root root 4096 Sep 11 05:03 ubuntu
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/EFI$ cd ubuntu
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/EFI/ubuntu$ ll
    total 4340
    -rwxr-xr-x 1 root root     108 Sep 11 05:55 BOOTX64.CSV
    -rwxr-xr-x 1 root root     126 Sep 11 05:55 grub.cfg
    -rwxr-xr-x 1 root root 2602888 Sep 11 05:55 grubx64.efi
    -rwxr-xr-x 1 root root  856280 Sep 11 05:55 mmx64.efi
    -rwxr-xr-x 1 root root  966664 Sep 11 05:55 shimx64.efi
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/EFI/ubuntu$ cd ..
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/EFI$ ll
    total 8
    drwxr-xr-x 2 root root 4096 Sep 11 05:03 BOOT
    drwxr-xr-x 2 root root 4096 Sep 11 05:03 ubuntu
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/EFI$ cd ..
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi$ ll
    total 12
    drwxr-xr-x 2 root root 4096 Sep 12 14:36 BOOT
    drwxr-xr-x 4 root root 4096 Sep 11 05:03 EFI
    drwxr-xr-x 2 root root 4096 Sep 12 14:36 ubuntu
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi$ cd ubuntu
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/ubuntu$ ll
    total 4396
    -rwxr-xr-x 1 root root     148 Sep 13 15:24 BOOTX64.CSV
    -rwxr-xr-x 1 root root     126 Sep 13 15:24 grub.cfg
    -rwxr-xr-x 1 root root 2660232 Sep 13 15:24 grubx64.efi
    -rwxr-xr-x 1 root root  856280 Sep 13 15:24 mmx64.efi
    -rwxr-xr-x 1 root root  966664 Sep 13 15:24 shimx64.efi
    peplive@PepOS-Live:/tmp/calamares-root-a0l41lry/boot/efi/efi/ubuntu$ 
    

    failed ...

    立即注册
    更新于:2025-09-14 01:10:01

    install linux peppermint os

    02:37:59 [6]: virtual void Calamares::JobThread::run()

    Starting job " Run command '/usr/sbin/bootloader-config'." ( 28 / 42 )

    2025-09-14 - 02:37:59 [6]: .. Running ("/bin/sh", "-c", "/usr/sbin/bootloader-config")

    2025-09-14 - 02:40:26 [6]: .. Finished. Exit code: 0 output:

    ]:     .. STARTUP: initModuleManager: module init started 
    2025-09-14 - 00:16:36 [6]: void Calamares::ModuleManager::doInit()
        Found 67 modules 
    2025-09-14 - 00:16:36 [6]: void CalamaresApplication::initView()
        STARTUP: initModuleManager: all modules init done 
    2025-09-14 - 00:16:36 [6]: void CalamaresApplication::initView()
        STARTUP: initJobQueue done 
    2025-09-14 - 00:16:36 [6]: CalamaresWindow::CalamaresWindow(QWidget*)
        Available desktop QSize(1920, 1047) minimum size QSize(1024, 520) 
    2025-09-14 - 00:16:36 [6]:     .. Proposed window size: 1024 520 
    2025-09-14 - 00:16:36 [6]: void CalamaresApplication::initView()
        STARTUP: CalamaresWindow created; loadModules started 
    2025-09-14 - 00:16:36 [6]: void Config::initLanguages()
        Trying to match locale "en_US" 
    2025-09-14 - 00:16:36 [6]: void Config::initLanguages()
        Trying to match locale QLocale(English, Latin, United States) 
    2025-09-14 - 00:16:36 [6]: void Config::setLocaleIndex(int)
        Index 14 Selected locale "en" 
    2025-09-14 - 00:16:36 [6]:     .. Loaded QRC translation "tz_" "en" 
    2025-09-14 - 00:16:36 [6]:     .. Loaded QRC translation "calamares_" "en" 
    2025-09-14 - 00:16:36 [2]: bool getCheckInternetUrls(const QVariantMap&)
        WARNING: GeneralRequirements entry 'internetCheckUrl' is undefined in welcome.conf, reverting to default ( "http://example.com" ). 
    2025-09-14 - 00:16:36 [2]: void GeneralRequirements::setConfigurationMap(const QVariantMap&)
        WARNING: GeneralRequirements configuration map: 
         check :   storage, ram, power, root 
         required :   storage, ram, root 
         requiredRam :   1 
         requiredStorage :   10 
    2025-09-14 - 00:16:37 [2]:   OpenType support missing for "Cantarell", script 12
    2025-09-14 - 00:16:37 [2]:   OpenType support missing for "Cantarell", script 11
    2025-09-14 - 00:16:37 [2]:   OpenType support missing for "Cantarell", script 19
    2025-09-14 - 00:16:37 [2]:   OpenType support missing for "Cantarell", script 20
    2025-09-14 - 00:16:37 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "welcome@welcome" loading complete. 
    2025-09-14 - 00:16:37 [6]: QStringList loadLocales(const QString&)
        Loading locales from "/usr/share/i18n/SUPPORTED" 
    2025-09-14 - 00:16:37 [6]:     ..  Read 501 lines 
    2025-09-14 - 00:16:37 [6]:     ..  After filtering 318 lines 
    2025-09-14 - 00:16:37 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "locale@locale" loading complete. 
    2025-09-14 - 00:16:37 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "keyboard" found anywhere at 
         "/root/src/modules/keyboard/keyboard.conf" 
         "/etc/calamares/modules/keyboard.conf" 
         "/usr/share/calamares/modules/keyboard.conf" 
    2025-09-14 - 00:16:37 [6]: KeyboardModelsModel::KeyboardModelsModel(QObject*)
        Loaded 188 keyboard models 
    2025-09-14 - 00:16:37 [6]: KeyboardPage::KeyboardPage(Config*, QWidget*)
        Variants now total= 0 selected= -1 
    2025-09-14 - 00:16:37 [6]:     .. Loaded QRC translation "kb_" "en" 
    2025-09-14 - 00:16:37 [6]: void Config::detectCurrentKeyboardLayout()
        ("pc", "us", "inet(evdev)\"") 
    2025-09-14 - 00:16:38 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "keyboard@keyboard" loading complete. 
    2025-09-14 - 00:16:38 [6]: CalamaresUtils::Partition::InternalManager::InternalManager()
        KPMCore backend starting .. 
    2025-09-14 - 00:16:38 [6]: Loaded backend plugin:  "pmsfdiskbackendplugin"
    2025-09-14 - 00:16:38 [6]:     .. Backend @0x55bc4c5c2250 "pmsfdiskbackendplugin" "1" 
    2025-09-14 - 00:16:38 [2]: virtual void PartitionViewStep::setConfigurationMap(const QVariantMap&)
        WARNING: Partition-module setting *defaultPartitionTableType* is unset, will use gpt for efi or msdos for bios 
    2025-09-14 - 00:16:38 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "partition@partition" loading complete. 
    2025-09-14 - 00:16:38 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "users@users" loading complete. 
    2025-09-14 - 00:16:38 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "summary@summary" loading complete. 
    2025-09-14 - 00:16:38 [6]: void Calamares::ModuleManager::loadModules()
        Module "partition@partition" already loaded. 
    2025-09-14 - 00:16:38 [6]: Calamares::SlideshowQML::SlideshowQML(QWidget*)
        QML import paths: 
         "/usr/share/calamares/qml" 
         "/usr/bin" 
         "qrc:/qt-project.org/imports" 
         "/usr/lib/x86_64-linux-gnu/qt5/qml" 
    2025-09-14 - 00:16:38 [2]: QThread::setPriority: Cannot set priority, thread is not running
    2025-09-14 - 00:16:38 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "sources-media" found anywhere at 
         "/root/src/modules/sources-media/sources-media.conf" 
         "/etc/calamares/modules/sources-media.conf" 
         "/usr/share/calamares/modules/sources-media.conf" 
    2025-09-14 - 00:16:38 [2]: virtual void MachineIdJob::setConfigurationMap(const QVariantMap&)
        WARNING: MachineId: configuration setting *symlink* is deprecated, use *dbus-symlink*. 
    2025-09-14 - 00:16:38 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "machineid@machineid" loading complete. 
    2025-09-14 - 00:16:38 [6]: void Calamares::ModuleManager::loadModules()
        Module "locale@locale" already loaded. 
    2025-09-14 - 00:16:38 [6]: void Calamares::ModuleManager::loadModules()
        Module "keyboard@keyboard" already loaded. 
    2025-09-14 - 00:16:38 [6]: void Calamares::ModuleManager::loadModules()
        Module "users@users" already loaded. 
    2025-09-14 - 00:16:38 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "bootloader-config" found anywhere at 
         "/root/src/modules/bootloader-config/bootloader-config.conf" 
         "/etc/calamares/modules/bootloader-config.conf" 
         "/usr/share/calamares/modules/bootloader-config.conf" 
    2025-09-14 - 00:16:38 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "grubcfg" found anywhere at 
         "/root/src/modules/grubcfg/grubcfg.conf" 
         "/etc/calamares/modules/grubcfg.conf" 
         "/usr/share/calamares/modules/grubcfg.conf" 
    2025-09-14 - 00:16:38 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "luksbootkeyfile@luksbootkeyfile" loading complete. 
    2025-09-14 - 00:16:38 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "luksopenswaphookcfg@luksopenswaphookcfg" loading complete. 
    2025-09-14 - 00:16:38 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "plymouthcfg" found anywhere at 
         "/root/src/modules/plymouthcfg/plymouthcfg.conf" 
         "/etc/calamares/modules/plymouthcfg.conf" 
         "/usr/share/calamares/modules/plymouthcfg.conf" 
    2025-09-14 - 00:16:38 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "initramfs" found anywhere at 
         "/root/src/modules/initramfs/initramfs.conf" 
         "/etc/calamares/modules/initramfs.conf" 
         "/usr/share/calamares/modules/initramfs.conf" 
    2025-09-14 - 00:16:38 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "initramfs@initramfs" loading complete. 
    2025-09-14 - 00:16:38 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "sources-media-unmount" found anywhere at 
         "/root/src/modules/sources-media-unmount/sources-media-unmount.conf" 
         "/etc/calamares/modules/sources-media-unmount.conf" 
         "/usr/share/calamares/modules/sources-media-unmount.conf" 
    2025-09-14 - 00:16:38 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "sources-final" found anywhere at 
         "/root/src/modules/sources-final/sources-final.conf" 
         "/etc/calamares/modules/sources-final.conf" 
         "/usr/share/calamares/modules/sources-final.conf" 
    2025-09-14 - 00:16:38 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "update-system" found anywhere at 
         "/root/src/modules/update-system/update-system.conf" 
         "/etc/calamares/modules/update-system.conf" 
         "/usr/share/calamares/modules/update-system.conf" 
    2025-09-14 - 00:16:38 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "grub-defaults" found anywhere at 
         "/root/src/modules/grub-defaults/grub-defaults.conf" 
         "/etc/calamares/modules/grub-defaults.conf" 
         "/usr/share/calamares/modules/grub-defaults.conf" 
    2025-09-14 - 00:16:38 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "shellprocess" found anywhere at 
         "/root/src/modules/shellprocess/shellprocess.conf" 
         "/etc/calamares/modules/shellprocess.conf" 
         "/usr/share/calamares/modules/shellprocess.conf" 
    2025-09-14 - 00:16:38 [2]: virtual void ShellProcessJob::setConfigurationMap(const QVariantMap&)
        WARNING: No script given for ShellProcessJob "shellprocess@shellprocess" 
    2025-09-14 - 00:16:38 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "shellprocess@shellprocess" loading complete. 
    2025-09-14 - 00:16:38 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "umount" found anywhere at 
         "/root/src/modules/umount/umount.conf" 
         "/etc/calamares/modules/umount.conf" 
         "/usr/share/calamares/modules/umount.conf" 
    2025-09-14 - 00:16:38 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "umount@umount" loading complete. 
    2025-09-14 - 00:16:38 [2]: void Config::setConfigurationMap(const QVariantMap&)
        WARNING: Configuring the finished module with deprecated restartNowEnabled settings 
    2025-09-14 - 00:16:38 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "finished@finished" loading complete. 
    2025-09-14 - 00:16:38 [6]:     .. Loaded QRC translation "kb_" "en" 
    2025-09-14 - 00:16:38 [6]: void CalamaresApplication::initViewSteps()
        STARTUP: loadModules for all modules done 
    2025-09-14 - 00:16:38 [6]: void Calamares::ModuleManager::checkRequirements()
        Checking module requirements .. 
    2025-09-14 - 00:16:38 [6]: void CalamaresApplication::initViewSteps()
        STARTUP: Window now visible and ProgressTreeView populated 
    2025-09-14 - 00:16:38 [6]:     .. 8 view steps loaded. 
    2025-09-14 - 00:16:38 [6]: Calamares::RequirementsList GeneralRequirements::checkRequirements()
        GeneralRequirements output: 
         storage :   10737418240 
         enoughStorage :   true 
         RAM :   1073741824 
         enoughRam :   true 
         hasPower :   true 
         hasInternet :   unchecked 
         isRoot :   true 
    2025-09-14 - 00:16:38 [6]: void Calamares::RequirementsChecker::addCheckedRequirements(Calamares::Module*)
        Got 4 requirement results from "welcome" 
    2025-09-14 - 00:16:38 [6]: void Config::xkbApply()
        xkbmap selection changed to:  "us" - "" 
    2025-09-14 - 00:16:39 [6]: 488377855 5086312 4096
    2025-09-14 - 00:16:39 [6]: smartctl initialization failed for  "/dev/sdb" :  No such file or directory
    2025-09-14 - 00:16:39 [6]: error during smart output parsing for  "/dev/sdb" :  Success
    2025-09-14 - 00:16:39 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:16:39 [2]: unknown file system type  ""  on  "/dev/sdc1"
    2025-09-14 - 00:16:39 [6]: 39322111 28241190 4096
    2025-09-14 - 00:16:40 [6]: 312476159 18882935 4096
    2025-09-14 - 00:16:40 [6]: 312476159 270304541 4096
    2025-09-14 - 00:16:40 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:16:40 [6]: 312421329 91324050 4096
    2025-09-14 - 00:16:41 [2]: unknown file system type  ""  on  "/dev/sdd10"
    2025-09-14 - 00:16:41 [6]: QList PartUtils::getDevices(DeviceType)
        Removing unsuitable devices: 5 candidates. 
    2025-09-14 - 00:16:41 [6]:     .. Running ("blkid", "/dev/sda") 
    2025-09-14 - 00:16:41 [6]:     .. Finished. Exit code: 0 output:
     /dev/sda: PTUUID="e4ded793" PTTYPE="dos"
    2025-09-14 - 00:16:41 [6]:     .. Running ("blkid", "/dev/sda1") 
    2025-09-14 - 00:16:41 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:16:41 [6]:     .. Finished. Exit code: 0 output:
     /dev/sda1: LABEL="1.81TB" BLOCK_SIZE="512" UUID="E214731E1472F4BF" TYPE="ntfs" PARTUUID="e4ded793-01"
    2025-09-14 - 00:16:41 [6]:     .. Running ("blkid", "/dev/sdb") 
    2025-09-14 - 00:16:41 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdb: PTUUID="0a7fb362" PTTYPE="dos"
    2025-09-14 - 00:16:41 [6]:     .. Running ("blkid", "/dev/sdb1") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdb1: LABEL="Ventoy" UUID="4E21-0000" BLOCK_SIZE="512" TYPE="exfat" PTTYPE="dos" PARTUUID="0a7fb362-01"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdb2") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdb2: BLOCK_SIZE="2048" UUID="2024-07-01-08-31-27-00" LABEL="PeppermintOS" TYPE="iso9660" PTUUID="1d6a2a8b" PTTYPE="dos"
    2025-09-14 - 00:16:42 [6]:     .. Removing device with iso9660 filesystem (probably a CD) on it "/dev/sdb" 
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdc") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc: PTUUID="b0f5110e-45a9-4cd7-8775-b9bfc8a004b1" PTTYPE="gpt"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:16:42 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdc1") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc1: PARTLABEL="Microsoft reserved partition" PARTUUID="2bd087b4-d290-4bd5-a0b0-089951d88602"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:16:42 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdc2") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc2: LABEL="win11" BLOCK_SIZE="512" UUID="00AA6221AA621406" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="46531b3b-eafe-44d3-962c-a8ee46e65821"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdc3") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc3: LABEL="1.16TB" BLOCK_SIZE="512" UUID="E0289A6D289A4288" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="1e33a7ca-5eea-4c37-a5c8-3d303ef02629"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdc4") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc4: LABEL="1.16TB02" BLOCK_SIZE="512" UUID="C2426D2D426D26FF" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="e28dc060-9bd1-4afe-b462-ec0ec2ff979a"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdc5") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc5: LABEL="1.16TB03" BLOCK_SIZE="512" UUID="28C8CA1DC8C9E960" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="fcbe6631-79cf-4515-befc-cb48aacf9572"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd: PTUUID="76d80eff-6c96-4d8d-bba1-42447d7802af" PTTYPE="gpt"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:16:42 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd1") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd1: UUID="231ab792-4df0-4c47-9bac-4673ec6ea1e1" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="000549fa-b498-458f-b38b-7621f23f903e"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd2") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd2: LABEL="pop_os" UUID="ec369d68-7983-40e4-b65d-6c63a790daaa" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="cfb3f254-cce6-4a98-ba8f-72278117493a"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd3") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd3: LABEL="AnduinH" UUID="ce9ad749-1f31-46e6-b1e7-efa0e1a0c738" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="f74329e5-8b3e-4e79-a984-c192f1ac9e60"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd4") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd4: UUID="4f16c538-ccc2-4797-ab9c-e4ab8a03e08b" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="4e6ad5b5-7c0b-4c33-a66a-d07ad394c942"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd5") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd5: LABEL="element" UUID="20ba0c86-a2d5-44be-a5ce-e57c2d4bd81c" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="cd33cc52-9937-4df9-b033-2c7d3051d8fd"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd6") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd6: LABEL="debain13" UUID="5d92630d-80d4-4fc9-987b-21311eab9349" BLOCK_SIZE="4096" TYPE="ext4" PARTLABEL="debian" PARTUUID="ddc6a9a8-0a38-439f-b857-ab228506513d"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd7") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd7: LABEL="linuxdata" BLOCK_SIZE="512" UUID="4832FFB432FFA4DA" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="ac6071f5-4f79-45d9-bd18-c1c84d3bfa89"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd8") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd8: UUID="64dc5e18-7f91-4e99-bb8f-0ae0e5a4bbe1" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="54058120-13b8-42d8-9132-069d5405cc5e"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd11") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd11: UUID="9a934ef5-90ac-40ec-a476-2edf1d95d21e" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="18e2c03a-823b-c64b-a3bd-59b58938c76e"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:16:42 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd9") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd9: LABEL="mint22.2" UUID="9d298cef-f368-4b99-b360-9781ad96c3df" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="f8fe21db-dff7-49a6-9158-e4289843b529"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:16:42 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sdd10") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd10: PARTLABEL="Microsoft reserved partition" PARTUUID="4233b70b-bc6e-4089-8e82-87795e5da827"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:16:42 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sde") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde: PTUUID="e762a142-00e2-4582-b138-4f4e97f810cf" PTTYPE="gpt"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sde1") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde1: LABEL_FATBOOT="EFI" LABEL="EFI" UUID="DC0F-231F" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="63210080-d0af-49eb-b8b9-cde162d3bfe5"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sde2") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde2: LABEL="data" UUID="89b91a63-5874-4398-a4b1-3ace71f8e66f" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="60298684-6b9b-4bac-b6a8-1efcee1199de"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "/dev/sde3") 
    2025-09-14 - 00:16:42 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde3: LABEL="Lwin11" UUID="4c2950a0-67e2-498a-a62f-9712cd6da3ba" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="86e7905f-e1b1-425e-93f6-de46c28ff970"
    2025-09-14 - 00:16:42 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:16:42 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:16:42 [6]:     .. there are 4 devices left. 
    2025-09-14 - 00:16:42 [6]: void PartitionCoreModule::doInit()
        LIST OF DETECTED DEVICES: 
    2025-09-14 - 00:16:42 [6]:     .. node	capacity	name	prettyName 
    2025-09-14 - 00:16:42 [6]:     .. "/dev/sda" 2000396321280 DevName$5fb41003 DevNamePretty$37a50fec 
    2025-09-14 - 00:16:42 [6]:     .. "/dev/sdc" 4000784417280 DevName$3d6aac08 DevNamePretty$5ecec8fe 
    2025-09-14 - 00:16:42 [6]:     .. "/dev/sdd" 4000784417280 DevName$3d6aac08 DevNamePretty$47ce7034 
    2025-09-14 - 00:16:42 [6]:     .. "/dev/sde" 1000202273280 DevName$d2c7d329 DevNamePretty$af2efacd 
    2025-09-14 - 00:16:42 [6]:     .. 4 devices detected. 
    2025-09-14 - 00:16:43 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:16:44 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:16:45 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:16:46 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:16:47 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:16:48 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd1") 
    2025-09-14 - 00:16:48 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:16:48 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd1" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:16:48 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd1", "/tmp/calamares-JduoSP") 
    2025-09-14 - 00:16:48 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:48 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:48 [6]:     .. got 13 fstab entries from 13 lines in "/tmp/calamares-JduoSP/etc/fstab" 
    2025-09-14 - 00:16:48 [6]:     .. Running ("umount", "-R", "/tmp/calamares-JduoSP") 
    2025-09-14 - 00:16:48 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:48 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:48 [6]: bool PartUtils::canBeResized(Partition*, const Logger::Once&)
        Partition "/dev/sdd1" authorized for resize + autopartition install. 
    2025-09-14 - 00:16:48 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd11") 
    2025-09-14 - 00:16:48 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:16:48 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd11" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:16:48 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd11", "/tmp/calamares-ZHXKxy") 
    2025-09-14 - 00:16:48 [6]:     .. Target cmd: ("mount", "-o", "ro,noload", "/dev/sdd11", "/tmp/calamares-ZHXKxy") Exit code: 32 output:
     mount: /tmp/calamares-ZHXKxy: /dev/sdd11 already mounted on /tmp/calamares-root-rw2o6luj.
           dmesg(1) may have more information after failed mount system call.
    2025-09-14 - 00:16:48 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:48 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:48 [2]: CalamaresUtils::Partition::TemporaryMount::TemporaryMount(const QString&, const QString&, const QString&)
        WARNING: Mount of "/dev/sdd11" on "/tmp/calamares-ZHXKxy" failed, code 32 
    2025-09-14 - 00:16:48 [2]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        WARNING: Could not mount existing fs 
    2025-09-14 - 00:16:48 [6]:     ..  Can not resize "/tmp/calamares-root-rw2o6luj" , partition is mounted 
    2025-09-14 - 00:16:48 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd2") 
    2025-09-14 - 00:16:48 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:16:48 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd2" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:16:48 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd2", "/tmp/calamares-ovlzPy") 
    2025-09-14 - 00:16:48 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:48 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:48 [6]:     .. got 10 fstab entries from 10 lines in "/tmp/calamares-ovlzPy/etc/fstab" 
    2025-09-14 - 00:16:48 [6]:     .. Running ("umount", "-R", "/tmp/calamares-ovlzPy") 
    2025-09-14 - 00:16:48 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:48 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:48 [6]:     ..  Partition "/dev/sdd2" authorized for resize + autopartition install. 
    2025-09-14 - 00:16:48 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd3") 
    2025-09-14 - 00:16:49 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:16:49 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd3" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:16:49 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd3", "/tmp/calamares-DatcqS") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:49 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:16:49 [6]:     .. got 12 fstab entries from 12 lines in "/tmp/calamares-DatcqS/etc/fstab" 
    2025-09-14 - 00:16:49 [6]:     .. Running ("umount", "-R", "/tmp/calamares-DatcqS") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:49 [6]:     ..  Partition "/dev/sdd3" authorized for resize + autopartition install. 
    2025-09-14 - 00:16:49 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd4") 
    2025-09-14 - 00:16:49 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:16:49 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd4" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:16:49 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd4", "/tmp/calamares-qgywaz") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:49 [6]:     .. got 10 fstab entries from 10 lines in "/tmp/calamares-qgywaz/etc/fstab" 
    2025-09-14 - 00:16:49 [6]:     .. Running ("umount", "-R", "/tmp/calamares-qgywaz") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:49 [6]:     ..  Partition "/dev/sdd4" authorized for resize + autopartition install. 
    2025-09-14 - 00:16:49 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd5") 
    2025-09-14 - 00:16:49 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:16:49 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd5" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:16:49 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd5", "/tmp/calamares-SUbJHC") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:49 [6]:     .. got 10 fstab entries from 10 lines in "/tmp/calamares-SUbJHC/etc/fstab" 
    2025-09-14 - 00:16:49 [6]:     .. Running ("umount", "-R", "/tmp/calamares-SUbJHC") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:49 [6]:     ..  Partition "/dev/sdd5" authorized for resize + autopartition install. 
    2025-09-14 - 00:16:49 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd6") 
    2025-09-14 - 00:16:49 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:16:49 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd6" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:16:49 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd6", "/tmp/calamares-goIUQZ") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:49 [6]:     .. got 15 fstab entries from 15 lines in "/tmp/calamares-goIUQZ/etc/fstab" 
    2025-09-14 - 00:16:49 [6]:     .. Running ("umount", "-R", "/tmp/calamares-goIUQZ") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:49 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:49 [6]:     ..  Partition "/dev/sdd6" authorized for resize + autopartition install. 
    2025-09-14 - 00:16:49 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd8") 
    2025-09-14 - 00:16:49 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:16:49 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd8" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:16:49 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd8", "/tmp/calamares-OTVcNw") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:50 [6]:     .. got 13 fstab entries from 13 lines in "/tmp/calamares-OTVcNw/etc/fstab" 
    2025-09-14 - 00:16:50 [6]:     .. Running ("umount", "-R", "/tmp/calamares-OTVcNw") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:50 [6]:     ..  Partition "/dev/sdd8" authorized for resize + autopartition install. 
    2025-09-14 - 00:16:50 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd9") 
    2025-09-14 - 00:16:50 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:16:50 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd9" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:16:50 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd9", "/tmp/calamares-TafClo") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:50 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:16:50 [6]:     .. got 12 fstab entries from 12 lines in "/tmp/calamares-TafClo/etc/fstab" 
    2025-09-14 - 00:16:50 [6]:     .. Running ("umount", "-R", "/tmp/calamares-TafClo") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:50 [6]:     ..  Partition "/dev/sdd9" authorized for resize + autopartition install. 
    2025-09-14 - 00:16:50 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sde3") 
    2025-09-14 - 00:16:50 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:16:50 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sde3" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:16:50 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sde3", "/tmp/calamares-YpPoaK") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:50 [6]:     .. got 13 fstab entries from 13 lines in "/tmp/calamares-YpPoaK/etc/fstab" 
    2025-09-14 - 00:16:50 [6]:     .. Running ("umount", "-R", "/tmp/calamares-YpPoaK") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:16:50 [6]:     .. Running ("sync") 
    2025-09-14 - 00:16:50 [6]:     ..  Partition "/dev/sde3" authorized for resize + autopartition install. 
    2025-09-14 - 00:16:50 [6]:     ..  os-prober lines after cleanup: 
         "/dev/sdd1:Ubuntu 25.04 (25.04):Ubuntu:linux" 
         "/dev/sdd11:PeppermintOS:Peppermint:linux" 
         "/dev/sdd2:Pop!_OS 22.04 LTS (22.04):Pop:linux" 
         "/dev/sdd3:AnduinOS 1.3.5 (1.3.5):AnduinOS:linux" 
         "/dev/sdd4:Manjaro Linux (25.0.8):ManjaroLinux:linux" 
         "/dev/sdd5:elementary OS 8 (8):elementary:linux" 
         "/dev/sdd6:Debian GNU/Linux 13 (trixie):Debian:linux" 
         "/dev/sdd8:Ubuntu 25.04 (25.04):Ubuntu1:linux" 
         "/dev/sdd9:Linux Mint 22.2 Zara (22.2):LinuxMint:linux" 
         "/dev/sde3:Winux 11 (24.04):Ubuntu2:linux" 
    2025-09-14 - 00:16:50 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:16:50 [6]: void Calamares::RequirementsChecker::addCheckedRequirements(Calamares::Module*)
        Got 1 requirement results from "partition" 
    2025-09-14 - 00:16:50 [6]: void ChoicePage::updateDeviceStatePreview()
        Updating partitioning state widgets. 
    2025-09-14 - 00:16:50 [6]: void ChoicePage::setupActions()
        Setting up actions for "/dev/sda" with 0 entries. 
    2025-09-14 - 00:16:50 [6]:     ..  Partition "/dev/sda1" authorized for resize + autopartition install. 
    2025-09-14 - 00:16:50 [6]:     .. contains resizable "/dev/sda1" 
    2025-09-14 - 00:16:50 [6]:     ..  Checking if "/dev/sda1" can be replaced. 
    2025-09-14 - 00:16:50 [6]:     ..  Partition "/dev/sda1" authorized for replace install. 
    2025-09-14 - 00:16:50 [6]:     .. contains replaceable "/dev/sda1" 
    2025-09-14 - 00:16:50 [6]: ChoicePage::setupActions()::
        Setting texts for 0 osprober entries 
    2025-09-14 - 00:16:50 [2]: void ChoicePage::setupActions()
        WARNING: System is EFI but there's no EFI system partition, DISABLING alongside and replace features. 
    2025-09-14 - 00:16:50 [6]: void ChoicePage::continueApplyDeviceChoice()
        Previous device -1 new device 0 
    2025-09-14 - 00:16:50 [6]: void ChoicePage::applyActionChoice(InstallChoice)
        Prev -1 InstallChoice Config::Erase "erase" 
    2025-09-14 - 00:16:50 [6]: PartitionTable* CreatePartitionTableJob::createTable()
        CreatePartitionTableJob::createTable trying to make table for device "/dev/sda" 
    2025-09-14 - 00:16:50 [6]: void Calamares::RequirementsChecker::finished()
        All requirements have been checked. 
    2025-09-14 - 00:16:50 [6]: void Calamares::RequirementsModel::describe() const
        Requirements model has 5 items 
    2025-09-14 - 00:16:50 [6]:     .. requirement 0 "storage" satisfied? true mandatory? true 
    2025-09-14 - 00:16:50 [6]:     .. requirement 1 "ram" satisfied? true mandatory? true 
    2025-09-14 - 00:16:50 [6]:     .. requirement 2 "power" satisfied? true mandatory? false 
    2025-09-14 - 00:16:50 [6]:     .. requirement 3 "root" satisfied? true mandatory? true 
    2025-09-14 - 00:16:50 [6]:     .. requirement 4 "partitions" satisfied? true mandatory? true 
    2025-09-14 - 00:16:50 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:16:50 [6]: void PartitionCoreModule::scanForEfiSystemPartitions()
        system is EFI and new EFI system partition has been found. 
    2025-09-14 - 00:16:50 [6]: void PartitionCoreModule::dumpQueue() const
        # Queue: 
    2025-09-14 - 00:16:50 [6]:     .. ## Device: "/dev/sda" 
    2025-09-14 - 00:16:50 [6]:     .. - CreatePartitionTableJob 
    2025-09-14 - 00:16:50 [6]:     .. - CreatePartitionJob 
    2025-09-14 - 00:16:50 [6]:     .. - SetPartFlagsJob 
    2025-09-14 - 00:16:50 [6]:     .. - CreatePartitionJob 
    2025-09-14 - 00:16:50 [6]:     .. ## Device: "/dev/sdc" 
    2025-09-14 - 00:16:50 [6]:     .. ## Device: "/dev/sdd" 
    2025-09-14 - 00:16:50 [6]:     .. ## Device: "/dev/sde" 
    2025-09-14 - 00:16:50 [6]: void ChoicePage::updateActionChoicePreview(InstallChoice)
        Updating partitioning preview widgets. 
    
    
    
    === START CALAMARES 3.2.61
    2025-09-14 - 00:22:01 [6]: void CalamaresApplication::init()
        Calamares version: 3.2.61 
    2025-09-14 - 00:22:01 [6]:     .. languages: "ar, as, ast, az, az_AZ, be, bg, bn, ca, ca@valencia, cs_CZ, da, de, el, en, en_GB, eo, es, es_MX, et, eu, fa, fi_FI, fr, fur, gl, he, hi, hr, hu, id, is, it_IT, ja, ko, lt, ml, mr, nb, nl, oc, pl, pt_BR, pt_PT, ro, ru, si, sk, sl, sq, sr, sr@latin, sv, tg, th, tr_TR, uk, vi, zh_CN, zh_TW" 
    2025-09-14 - 00:22:01 [6]: bool CalamaresUtils::initQmlModulesDir()
        Using Calamares QML directory "/usr/share/calamares/qml" 
    2025-09-14 - 00:22:01 [6]: Calamares::Branding::Branding(const QString&, QObject*)
        Using Calamares branding file at "/etc/calamares/branding/peppermint/branding.desc" 
    2025-09-14 - 00:22:01 [2]: void Calamares::flavorAndSide(const YAML::Node&, const char*, Branding::PanelFlavor&, Branding::PanelSide&)
        WARNING: Branding setting for sidebar is missing, using "widget" "left" 
    2025-09-14 - 00:22:01 [2]: void Calamares::flavorAndSide(const YAML::Node&, const char*, Branding::PanelFlavor&, Branding::PanelSide&)
        WARNING: Branding setting for navigation is missing, using "widget" "bottom" 
    2025-09-14 - 00:22:01 [2]: void Calamares::Branding::initSlideshowSettings(const YAML::Node&)
        WARNING: Invalid or missing *slideshowAPI* in branding file. 
    2025-09-14 - 00:22:01 [2]: Calamares::Branding::Branding(const QString&, QObject*)
        WARNING: the branding component "/etc/calamares/branding/peppermint" does not ship translations. 
    2025-09-14 - 00:22:01 [6]: Calamares::Branding::Branding(const QString&, QObject*)
        Loaded branding component "peppermint" 
    2025-09-14 - 00:22:01 [6]:     .. Loaded QRC translation "tz_" "en_US" 
    2025-09-14 - 00:22:01 [6]:     .. Loaded QRC translation "calamares_" "en_US" 
    2025-09-14 - 00:22:01 [6]:     .. STARTUP: initSettings, initQmlPath, initBranding done 
    2025-09-14 - 00:22:01 [6]:     .. STARTUP: initModuleManager: module init started 
    2025-09-14 - 00:22:01 [6]: void Calamares::ModuleManager::doInit()
        Found 67 modules 
    2025-09-14 - 00:22:01 [6]: void CalamaresApplication::initView()
        STARTUP: initModuleManager: all modules init done 
    2025-09-14 - 00:22:01 [6]: void CalamaresApplication::initView()
        STARTUP: initJobQueue done 
    2025-09-14 - 00:22:01 [6]: CalamaresWindow::CalamaresWindow(QWidget*)
        Available desktop QSize(1920, 1047) minimum size QSize(1024, 520) 
    2025-09-14 - 00:22:01 [6]:     .. Proposed window size: 1024 520 
    2025-09-14 - 00:22:01 [6]: void CalamaresApplication::initView()
        STARTUP: CalamaresWindow created; loadModules started 
    2025-09-14 - 00:22:01 [6]: void Config::initLanguages()
        Trying to match locale "en_US" 
    2025-09-14 - 00:22:01 [6]: void Config::initLanguages()
        Trying to match locale QLocale(English, Latin, United States) 
    2025-09-14 - 00:22:01 [6]: void Config::setLocaleIndex(int)
        Index 14 Selected locale "en" 
    2025-09-14 - 00:22:01 [6]:     .. Loaded QRC translation "tz_" "en" 
    2025-09-14 - 00:22:01 [6]:     .. Loaded QRC translation "calamares_" "en" 
    2025-09-14 - 00:22:01 [2]: bool getCheckInternetUrls(const QVariantMap&)
        WARNING: GeneralRequirements entry 'internetCheckUrl' is undefined in welcome.conf, reverting to default ( "http://example.com" ). 
    2025-09-14 - 00:22:01 [2]: void GeneralRequirements::setConfigurationMap(const QVariantMap&)
        WARNING: GeneralRequirements configuration map: 
         check :   storage, ram, power, root 
         required :   storage, ram, root 
         requiredRam :   1 
         requiredStorage :   10 
    2025-09-14 - 00:22:01 [2]:   OpenType support missing for "Cantarell", script 12
    2025-09-14 - 00:22:01 [2]:   OpenType support missing for "Cantarell", script 11
    2025-09-14 - 00:22:01 [2]:   OpenType support missing for "Cantarell", script 19
    2025-09-14 - 00:22:01 [2]:   OpenType support missing for "Cantarell", script 20
    2025-09-14 - 00:22:01 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "welcome@welcome" loading complete. 
    2025-09-14 - 00:22:01 [6]: QStringList loadLocales(const QString&)
        Loading locales from "/usr/share/i18n/SUPPORTED" 
    2025-09-14 - 00:22:01 [6]:     ..  Read 501 lines 
    2025-09-14 - 00:22:01 [6]:     ..  After filtering 318 lines 
    2025-09-14 - 00:22:01 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "locale@locale" loading complete. 
    2025-09-14 - 00:22:01 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "keyboard" found anywhere at 
         "/root/src/modules/keyboard/keyboard.conf" 
         "/etc/calamares/modules/keyboard.conf" 
         "/usr/share/calamares/modules/keyboard.conf" 
    2025-09-14 - 00:22:01 [6]: KeyboardModelsModel::KeyboardModelsModel(QObject*)
        Loaded 188 keyboard models 
    2025-09-14 - 00:22:01 [6]: KeyboardPage::KeyboardPage(Config*, QWidget*)
        Variants now total= 0 selected= -1 
    2025-09-14 - 00:22:01 [6]:     .. Loaded QRC translation "kb_" "en" 
    2025-09-14 - 00:22:01 [6]: void Config::detectCurrentKeyboardLayout()
        ("pc", "us", "inet(evdev)\"") 
    2025-09-14 - 00:22:02 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "keyboard@keyboard" loading complete. 
    2025-09-14 - 00:22:02 [6]: CalamaresUtils::Partition::InternalManager::InternalManager()
        KPMCore backend starting .. 
    2025-09-14 - 00:22:02 [6]: Loaded backend plugin:  "pmsfdiskbackendplugin"
    2025-09-14 - 00:22:02 [6]:     .. Backend @0x55a9b1e7dd50 "pmsfdiskbackendplugin" "1" 
    2025-09-14 - 00:22:02 [2]: virtual void PartitionViewStep::setConfigurationMap(const QVariantMap&)
        WARNING: Partition-module setting *defaultPartitionTableType* is unset, will use gpt for efi or msdos for bios 
    2025-09-14 - 00:22:02 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "partition@partition" loading complete. 
    2025-09-14 - 00:22:02 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "users@users" loading complete. 
    2025-09-14 - 00:22:02 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "summary@summary" loading complete. 
    2025-09-14 - 00:22:02 [6]: void Calamares::ModuleManager::loadModules()
        Module "partition@partition" already loaded. 
    2025-09-14 - 00:22:02 [6]: Calamares::SlideshowQML::SlideshowQML(QWidget*)
        QML import paths: 
         "/usr/share/calamares/qml" 
         "/usr/bin" 
         "qrc:/qt-project.org/imports" 
         "/usr/lib/x86_64-linux-gnu/qt5/qml" 
    2025-09-14 - 00:22:02 [2]: QThread::setPriority: Cannot set priority, thread is not running
    2025-09-14 - 00:22:02 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "sources-media" found anywhere at 
         "/root/src/modules/sources-media/sources-media.conf" 
         "/etc/calamares/modules/sources-media.conf" 
         "/usr/share/calamares/modules/sources-media.conf" 
    2025-09-14 - 00:22:02 [2]: virtual void MachineIdJob::setConfigurationMap(const QVariantMap&)
        WARNING: MachineId: configuration setting *symlink* is deprecated, use *dbus-symlink*. 
    2025-09-14 - 00:22:02 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "machineid@machineid" loading complete. 
    2025-09-14 - 00:22:02 [6]: void Calamares::ModuleManager::loadModules()
        Module "locale@locale" already loaded. 
    2025-09-14 - 00:22:02 [6]: void Calamares::ModuleManager::loadModules()
        Module "keyboard@keyboard" already loaded. 
    2025-09-14 - 00:22:02 [6]: void Calamares::ModuleManager::loadModules()
        Module "users@users" already loaded. 
    2025-09-14 - 00:22:02 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "bootloader-config" found anywhere at 
         "/root/src/modules/bootloader-config/bootloader-config.conf" 
         "/etc/calamares/modules/bootloader-config.conf" 
         "/usr/share/calamares/modules/bootloader-config.conf" 
    2025-09-14 - 00:22:02 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "grubcfg" found anywhere at 
         "/root/src/modules/grubcfg/grubcfg.conf" 
         "/etc/calamares/modules/grubcfg.conf" 
         "/usr/share/calamares/modules/grubcfg.conf" 
    2025-09-14 - 00:22:02 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "luksbootkeyfile@luksbootkeyfile" loading complete. 
    2025-09-14 - 00:22:02 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "luksopenswaphookcfg@luksopenswaphookcfg" loading complete. 
    2025-09-14 - 00:22:02 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "plymouthcfg" found anywhere at 
         "/root/src/modules/plymouthcfg/plymouthcfg.conf" 
         "/etc/calamares/modules/plymouthcfg.conf" 
         "/usr/share/calamares/modules/plymouthcfg.conf" 
    2025-09-14 - 00:22:02 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "initramfs" found anywhere at 
         "/root/src/modules/initramfs/initramfs.conf" 
         "/etc/calamares/modules/initramfs.conf" 
         "/usr/share/calamares/modules/initramfs.conf" 
    2025-09-14 - 00:22:02 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "initramfs@initramfs" loading complete. 
    2025-09-14 - 00:22:02 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "sources-media-unmount" found anywhere at 
         "/root/src/modules/sources-media-unmount/sources-media-unmount.conf" 
         "/etc/calamares/modules/sources-media-unmount.conf" 
         "/usr/share/calamares/modules/sources-media-unmount.conf" 
    2025-09-14 - 00:22:02 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "sources-final" found anywhere at 
         "/root/src/modules/sources-final/sources-final.conf" 
         "/etc/calamares/modules/sources-final.conf" 
         "/usr/share/calamares/modules/sources-final.conf" 
    2025-09-14 - 00:22:02 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "update-system" found anywhere at 
         "/root/src/modules/update-system/update-system.conf" 
         "/etc/calamares/modules/update-system.conf" 
         "/usr/share/calamares/modules/update-system.conf" 
    2025-09-14 - 00:22:02 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "grub-defaults" found anywhere at 
         "/root/src/modules/grub-defaults/grub-defaults.conf" 
         "/etc/calamares/modules/grub-defaults.conf" 
         "/usr/share/calamares/modules/grub-defaults.conf" 
    2025-09-14 - 00:22:02 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "shellprocess" found anywhere at 
         "/root/src/modules/shellprocess/shellprocess.conf" 
         "/etc/calamares/modules/shellprocess.conf" 
         "/usr/share/calamares/modules/shellprocess.conf" 
    2025-09-14 - 00:22:02 [2]: virtual void ShellProcessJob::setConfigurationMap(const QVariantMap&)
        WARNING: No script given for ShellProcessJob "shellprocess@shellprocess" 
    2025-09-14 - 00:22:02 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "shellprocess@shellprocess" loading complete. 
    2025-09-14 - 00:22:02 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "umount" found anywhere at 
         "/root/src/modules/umount/umount.conf" 
         "/etc/calamares/modules/umount.conf" 
         "/usr/share/calamares/modules/umount.conf" 
    2025-09-14 - 00:22:02 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "umount@umount" loading complete. 
    2025-09-14 - 00:22:02 [2]: void Config::setConfigurationMap(const QVariantMap&)
        WARNING: Configuring the finished module with deprecated restartNowEnabled settings 
    2025-09-14 - 00:22:02 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "finished@finished" loading complete. 
    2025-09-14 - 00:22:02 [6]:     .. Loaded QRC translation "kb_" "en" 
    2025-09-14 - 00:22:02 [6]: void CalamaresApplication::initViewSteps()
        STARTUP: loadModules for all modules done 
    2025-09-14 - 00:22:02 [6]: void Calamares::ModuleManager::checkRequirements()
        Checking module requirements .. 
    2025-09-14 - 00:22:02 [6]: void CalamaresApplication::initViewSteps()
        STARTUP: Window now visible and ProgressTreeView populated 
    2025-09-14 - 00:22:02 [6]:     .. 8 view steps loaded. 
    2025-09-14 - 00:22:02 [6]: void Config::xkbApply()
        xkbmap selection changed to:  "us" - "" 
    
    
    
    === START CALAMARES 3.2.61
    2025-09-14 - 00:22:02 [6]: void CalamaresApplication::init()
        Calamares version: 3.2.61 
    2025-09-14 - 00:22:02 [6]:     .. languages: "ar, as, ast, az, az_AZ, be, bg, bn, ca, ca@valencia, cs_CZ, da, de, el, en, en_GB, eo, es, es_MX, et, eu, fa, fi_FI, fr, fur, gl, he, hi, hr, hu, id, is, it_IT, ja, ko, lt, ml, mr, nb, nl, oc, pl, pt_BR, pt_PT, ro, ru, si, sk, sl, sq, sr, sr@latin, sv, tg, th, tr_TR, uk, vi, zh_CN, zh_TW" 
    2025-09-14 - 00:22:02 [6]: bool CalamaresUtils::initQmlModulesDir()
        Using Calamares QML directory "/usr/share/calamares/qml" 
    2025-09-14 - 00:22:02 [6]: Calamares::Branding::Branding(const QString&, QObject*)
        Using Calamares branding file at "/etc/calamares/branding/peppermint/branding.desc" 
    2025-09-14 - 00:22:02 [2]: void Calamares::flavorAndSide(const YAML::Node&, const char*, Branding::PanelFlavor&, Branding::PanelSide&)
        WARNING: Branding setting for sidebar is missing, using "widget" "left" 
    2025-09-14 - 00:22:02 [2]: void Calamares::flavorAndSide(const YAML::Node&, const char*, Branding::PanelFlavor&, Branding::PanelSide&)
        WARNING: Branding setting for navigation is missing, using "widget" "bottom" 
    2025-09-14 - 00:22:02 [2]: void Calamares::Branding::initSlideshowSettings(const YAML::Node&)
        WARNING: Invalid or missing *slideshowAPI* in branding file. 
    2025-09-14 - 00:22:02 [2]: Calamares::Branding::Branding(const QString&, QObject*)
        WARNING: the branding component "/etc/calamares/branding/peppermint" does not ship translations. 
    2025-09-14 - 00:22:02 [6]: Calamares::Branding::Branding(const QString&, QObject*)
        Loaded branding component "peppermint" 
    2025-09-14 - 00:22:02 [6]:     .. Loaded QRC translation "tz_" "en_US" 
    2025-09-14 - 00:22:02 [6]:     .. Loaded QRC translation "calamares_" "en_US" 
    2025-09-14 - 00:22:02 [6]:     .. STARTUP: initSettings, initQmlPath, initBranding done 
    2025-09-14 - 00:22:02 [6]:     .. STARTUP: initModuleManager: module init started 
    2025-09-14 - 00:22:02 [6]: void Calamares::ModuleManager::doInit()
        Found 67 modules 
    2025-09-14 - 00:22:02 [6]: void CalamaresApplication::initView()
        STARTUP: initModuleManager: all modules init done 
    2025-09-14 - 00:22:02 [6]: void CalamaresApplication::initView()
        STARTUP: initJobQueue done 
    2025-09-14 - 00:22:02 [6]: CalamaresWindow::CalamaresWindow(QWidget*)
        Available desktop QSize(1920, 1047) minimum size QSize(1024, 520) 
    2025-09-14 - 00:22:02 [6]:     .. Proposed window size: 1024 520 
    2025-09-14 - 00:22:02 [6]: void CalamaresApplication::initView()
        STARTUP: CalamaresWindow created; loadModules started 
    2025-09-14 - 00:22:02 [6]: void Config::initLanguages()
        Trying to match locale "en_US" 
    2025-09-14 - 00:22:02 [6]: void Config::initLanguages()
        Trying to match locale QLocale(English, Latin, United States) 
    2025-09-14 - 00:22:02 [6]: void Config::setLocaleIndex(int)
        Index 14 Selected locale "en" 
    2025-09-14 - 00:22:02 [6]:     .. Loaded QRC translation "tz_" "en" 
    2025-09-14 - 00:22:02 [6]:     .. Loaded QRC translation "calamares_" "en" 
    2025-09-14 - 00:22:02 [2]: bool getCheckInternetUrls(const QVariantMap&)
        WARNING: GeneralRequirements entry 'internetCheckUrl' is undefined in welcome.conf, reverting to default ( "http://example.com" ). 
    2025-09-14 - 00:22:02 [2]: void GeneralRequirements::setConfigurationMap(const QVariantMap&)
        WARNING: GeneralRequirements configuration map: 
         check :   storage, ram, power, root 
         required :   storage, ram, root 
         requiredRam :   1 
         requiredStorage :   10 
    2025-09-14 - 00:22:03 [6]: Calamares::RequirementsList GeneralRequirements::checkRequirements()
        GeneralRequirements output: 
         storage :   10737418240 
         enoughStorage :   true 
         RAM :   1073741824 
         enoughRam :   true 
         hasPower :   true 
         hasInternet :   unchecked 
         isRoot :   true 
    2025-09-14 - 00:22:03 [6]: void Calamares::RequirementsChecker::addCheckedRequirements(Calamares::Module*)
        Got 4 requirement results from "welcome" 
    2025-09-14 - 00:22:03 [2]:   OpenType support missing for "Cantarell", script 12
    2025-09-14 - 00:22:03 [2]:   OpenType support missing for "Cantarell", script 11
    2025-09-14 - 00:22:03 [6]: 488377855 5086312 4096
    2025-09-14 - 00:22:03 [6]: smartctl initialization failed for  "/dev/sdb" :  No such file or directory
    2025-09-14 - 00:22:03 [6]: error during smart output parsing for  "/dev/sdb" :  Success
    2025-09-14 - 00:22:03 [2]:   OpenType support missing for "Cantarell", script 19
    2025-09-14 - 00:22:03 [2]:   OpenType support missing for "Cantarell", script 20
    2025-09-14 - 00:22:03 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "welcome@welcome" loading complete. 
    2025-09-14 - 00:22:03 [6]: QStringList loadLocales(const QString&)
        Loading locales from "/usr/share/i18n/SUPPORTED" 
    2025-09-14 - 00:22:03 [6]:     ..  Read 501 lines 
    2025-09-14 - 00:22:03 [6]:     ..  After filtering 318 lines 
    2025-09-14 - 00:22:03 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "locale@locale" loading complete. 
    2025-09-14 - 00:22:03 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "keyboard" found anywhere at 
         "/root/src/modules/keyboard/keyboard.conf" 
         "/etc/calamares/modules/keyboard.conf" 
         "/usr/share/calamares/modules/keyboard.conf" 
    2025-09-14 - 00:22:03 [6]: KeyboardModelsModel::KeyboardModelsModel(QObject*)
        Loaded 188 keyboard models 
    2025-09-14 - 00:22:03 [6]: KeyboardPage::KeyboardPage(Config*, QWidget*)
        Variants now total= 0 selected= -1 
    2025-09-14 - 00:22:03 [6]:     .. Loaded QRC translation "kb_" "en" 
    2025-09-14 - 00:22:03 [6]: void Config::detectCurrentKeyboardLayout()
        ("pc", "us", "inet(evdev)\"") 
    2025-09-14 - 00:22:03 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:03 [2]: unknown file system type  ""  on  "/dev/sdc1"
    2025-09-14 - 00:22:03 [6]: 39322111 28241190 4096
    2025-09-14 - 00:22:04 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "keyboard@keyboard" loading complete. 
    2025-09-14 - 00:22:04 [6]: CalamaresUtils::Partition::InternalManager::InternalManager()
        KPMCore backend starting .. 
    2025-09-14 - 00:22:04 [6]: Loaded backend plugin:  "pmsfdiskbackendplugin"
    2025-09-14 - 00:22:04 [6]:     .. Backend @0x55910970eb70 "pmsfdiskbackendplugin" "1" 
    2025-09-14 - 00:22:04 [2]: virtual void PartitionViewStep::setConfigurationMap(const QVariantMap&)
        WARNING: Partition-module setting *defaultPartitionTableType* is unset, will use gpt for efi or msdos for bios 
    2025-09-14 - 00:22:04 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "partition@partition" loading complete. 
    2025-09-14 - 00:22:04 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "users@users" loading complete. 
    2025-09-14 - 00:22:04 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "summary@summary" loading complete. 
    2025-09-14 - 00:22:04 [6]: void Calamares::ModuleManager::loadModules()
        Module "partition@partition" already loaded. 
    2025-09-14 - 00:22:04 [6]: Calamares::SlideshowQML::SlideshowQML(QWidget*)
        QML import paths: 
         "/usr/share/calamares/qml" 
         "/usr/bin" 
         "qrc:/qt-project.org/imports" 
         "/usr/lib/x86_64-linux-gnu/qt5/qml" 
    2025-09-14 - 00:22:04 [2]: QThread::setPriority: Cannot set priority, thread is not running
    2025-09-14 - 00:22:04 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "sources-media" found anywhere at 
         "/root/src/modules/sources-media/sources-media.conf" 
         "/etc/calamares/modules/sources-media.conf" 
         "/usr/share/calamares/modules/sources-media.conf" 
    2025-09-14 - 00:22:04 [2]: virtual void MachineIdJob::setConfigurationMap(const QVariantMap&)
        WARNING: MachineId: configuration setting *symlink* is deprecated, use *dbus-symlink*. 
    2025-09-14 - 00:22:04 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "machineid@machineid" loading complete. 
    2025-09-14 - 00:22:04 [6]: void Calamares::ModuleManager::loadModules()
        Module "locale@locale" already loaded. 
    2025-09-14 - 00:22:04 [6]: void Calamares::ModuleManager::loadModules()
        Module "keyboard@keyboard" already loaded. 
    2025-09-14 - 00:22:04 [6]: void Calamares::ModuleManager::loadModules()
        Module "users@users" already loaded. 
    2025-09-14 - 00:22:04 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "bootloader-config" found anywhere at 
         "/root/src/modules/bootloader-config/bootloader-config.conf" 
         "/etc/calamares/modules/bootloader-config.conf" 
         "/usr/share/calamares/modules/bootloader-config.conf" 
    2025-09-14 - 00:22:04 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "grubcfg" found anywhere at 
         "/root/src/modules/grubcfg/grubcfg.conf" 
         "/etc/calamares/modules/grubcfg.conf" 
         "/usr/share/calamares/modules/grubcfg.conf" 
    2025-09-14 - 00:22:04 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "luksbootkeyfile@luksbootkeyfile" loading complete. 
    2025-09-14 - 00:22:04 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "luksopenswaphookcfg@luksopenswaphookcfg" loading complete. 
    2025-09-14 - 00:22:04 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "plymouthcfg" found anywhere at 
         "/root/src/modules/plymouthcfg/plymouthcfg.conf" 
         "/etc/calamares/modules/plymouthcfg.conf" 
         "/usr/share/calamares/modules/plymouthcfg.conf" 
    2025-09-14 - 00:22:04 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "initramfs" found anywhere at 
         "/root/src/modules/initramfs/initramfs.conf" 
         "/etc/calamares/modules/initramfs.conf" 
         "/usr/share/calamares/modules/initramfs.conf" 
    2025-09-14 - 00:22:04 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "initramfs@initramfs" loading complete. 
    2025-09-14 - 00:22:04 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "sources-media-unmount" found anywhere at 
         "/root/src/modules/sources-media-unmount/sources-media-unmount.conf" 
         "/etc/calamares/modules/sources-media-unmount.conf" 
         "/usr/share/calamares/modules/sources-media-unmount.conf" 
    2025-09-14 - 00:22:04 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "sources-final" found anywhere at 
         "/root/src/modules/sources-final/sources-final.conf" 
         "/etc/calamares/modules/sources-final.conf" 
         "/usr/share/calamares/modules/sources-final.conf" 
    2025-09-14 - 00:22:04 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "update-system" found anywhere at 
         "/root/src/modules/update-system/update-system.conf" 
         "/etc/calamares/modules/update-system.conf" 
         "/usr/share/calamares/modules/update-system.conf" 
    2025-09-14 - 00:22:04 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "grub-defaults" found anywhere at 
         "/root/src/modules/grub-defaults/grub-defaults.conf" 
         "/etc/calamares/modules/grub-defaults.conf" 
         "/usr/share/calamares/modules/grub-defaults.conf" 
    2025-09-14 - 00:22:04 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "shellprocess" found anywhere at 
         "/root/src/modules/shellprocess/shellprocess.conf" 
         "/etc/calamares/modules/shellprocess.conf" 
         "/usr/share/calamares/modules/shellprocess.conf" 
    2025-09-14 - 00:22:04 [2]: virtual void ShellProcessJob::setConfigurationMap(const QVariantMap&)
        WARNING: No script given for ShellProcessJob "shellprocess@shellprocess" 
    2025-09-14 - 00:22:04 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "shellprocess@shellprocess" loading complete. 
    2025-09-14 - 00:22:04 [2]: void Calamares::Module::loadConfigurationFile(const QString&)
        WARNING: No config file for "umount" found anywhere at 
         "/root/src/modules/umount/umount.conf" 
         "/etc/calamares/modules/umount.conf" 
         "/usr/share/calamares/modules/umount.conf" 
    2025-09-14 - 00:22:04 [6]: virtual void Calamares::CppJobModule::loadSelf()
        CppJobModule "umount@umount" loading complete. 
    2025-09-14 - 00:22:04 [2]: void Config::setConfigurationMap(const QVariantMap&)
        WARNING: Configuring the finished module with deprecated restartNowEnabled settings 
    2025-09-14 - 00:22:04 [6]: virtual void Calamares::ViewModule::loadSelf()
        ViewModule "finished@finished" loading complete. 
    2025-09-14 - 00:22:04 [6]:     .. Loaded QRC translation "kb_" "en" 
    2025-09-14 - 00:22:04 [6]: void CalamaresApplication::initViewSteps()
        STARTUP: loadModules for all modules done 
    2025-09-14 - 00:22:04 [6]: void Calamares::ModuleManager::checkRequirements()
        Checking module requirements .. 
    2025-09-14 - 00:22:04 [6]: void CalamaresApplication::initViewSteps()
        STARTUP: Window now visible and ProgressTreeView populated 
    2025-09-14 - 00:22:04 [6]:     .. 8 view steps loaded. 
    2025-09-14 - 00:22:04 [6]: Calamares::RequirementsList GeneralRequirements::checkRequirements()
        GeneralRequirements output: 
         storage :   10737418240 
         enoughStorage :   true 
         RAM :   1073741824 
         enoughRam :   true 
         hasPower :   true 
         hasInternet :   unchecked 
         isRoot :   true 
    2025-09-14 - 00:22:04 [6]: void Calamares::RequirementsChecker::addCheckedRequirements(Calamares::Module*)
        Got 4 requirement results from "welcome" 
    2025-09-14 - 00:22:04 [6]: void Config::xkbApply()
        xkbmap selection changed to:  "us" - "" 
    2025-09-14 - 00:22:04 [6]: 312476159 18882935 4096
    2025-09-14 - 00:22:04 [6]: 312476159 270304541 4096
    2025-09-14 - 00:22:04 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:05 [6]: 312421329 91324050 4096
    2025-09-14 - 00:22:05 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:06 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:06 [6]: 488377855 5086312 4096
    2025-09-14 - 00:22:06 [6]: smartctl initialization failed for  "/dev/sdb" :  No such file or directory
    2025-09-14 - 00:22:06 [6]: error during smart output parsing for  "/dev/sdb" :  Success
    2025-09-14 - 00:22:06 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:06 [2]: unknown file system type  ""  on  "/dev/sdd10"
    2025-09-14 - 00:22:06 [2]: unknown file system type  ""  on  "/dev/sdc1"
    2025-09-14 - 00:22:06 [6]: 39322111 28241190 4096
    2025-09-14 - 00:22:07 [6]: 312476159 18882935 4096
    2025-09-14 - 00:22:07 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:07 [6]: 312476159 270304541 4096
    2025-09-14 - 00:22:07 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:07 [6]: 312421329 91324050 4096
    2025-09-14 - 00:22:07 [6]: QList PartUtils::getDevices(DeviceType)
        Removing unsuitable devices: 5 candidates. 
    2025-09-14 - 00:22:07 [6]:     .. Running ("blkid", "/dev/sda") 
    2025-09-14 - 00:22:07 [6]:     .. Finished. Exit code: 0 output:
     /dev/sda: PTUUID="e4ded793" PTTYPE="dos"
    2025-09-14 - 00:22:07 [6]:     .. Running ("blkid", "/dev/sda1") 
    2025-09-14 - 00:22:07 [6]:     .. Finished. Exit code: 0 output:
     /dev/sda1: LABEL="1.81TB" BLOCK_SIZE="512" UUID="E214731E1472F4BF" TYPE="ntfs" PARTUUID="e4ded793-01"
    2025-09-14 - 00:22:07 [6]:     .. Running ("blkid", "/dev/sdb") 
    2025-09-14 - 00:22:07 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdb: PTUUID="0a7fb362" PTTYPE="dos"
    2025-09-14 - 00:22:07 [6]:     .. Running ("blkid", "/dev/sdb1") 
    2025-09-14 - 00:22:07 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdb1: LABEL="Ventoy" UUID="4E21-0000" BLOCK_SIZE="512" TYPE="exfat" PTTYPE="dos" PARTUUID="0a7fb362-01"
    2025-09-14 - 00:22:07 [6]:     .. Running ("blkid", "/dev/sdb2") 
    2025-09-14 - 00:22:07 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdb2: BLOCK_SIZE="2048" UUID="2024-07-01-08-31-27-00" LABEL="PeppermintOS" TYPE="iso9660" PTUUID="1d6a2a8b" PTTYPE="dos"
    2025-09-14 - 00:22:07 [6]:     .. Removing device with iso9660 filesystem (probably a CD) on it "/dev/sdb" 
    2025-09-14 - 00:22:07 [6]:     .. Running ("blkid", "/dev/sdc") 
    2025-09-14 - 00:22:07 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc: PTUUID="b0f5110e-45a9-4cd7-8775-b9bfc8a004b1" PTTYPE="gpt"
    2025-09-14 - 00:22:07 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:07 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:07 [6]:     .. Running ("blkid", "/dev/sdc1") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc1: PARTLABEL="Microsoft reserved partition" PARTUUID="2bd087b4-d290-4bd5-a0b0-089951d88602"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:08 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdc2") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc2: LABEL="win11" BLOCK_SIZE="512" UUID="00AA6221AA621406" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="46531b3b-eafe-44d3-962c-a8ee46e65821"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdc3") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc3: LABEL="1.16TB" BLOCK_SIZE="512" UUID="E0289A6D289A4288" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="1e33a7ca-5eea-4c37-a5c8-3d303ef02629"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdc4") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc4: LABEL="1.16TB02" BLOCK_SIZE="512" UUID="C2426D2D426D26FF" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="e28dc060-9bd1-4afe-b462-ec0ec2ff979a"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdc5") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc5: LABEL="1.16TB03" BLOCK_SIZE="512" UUID="28C8CA1DC8C9E960" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="fcbe6631-79cf-4515-befc-cb48aacf9572"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd: PTUUID="76d80eff-6c96-4d8d-bba1-42447d7802af" PTTYPE="gpt"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:08 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd1") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd1: UUID="231ab792-4df0-4c47-9bac-4673ec6ea1e1" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="000549fa-b498-458f-b38b-7621f23f903e"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd2") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd2: LABEL="pop_os" UUID="ec369d68-7983-40e4-b65d-6c63a790daaa" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="cfb3f254-cce6-4a98-ba8f-72278117493a"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd3") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd3: LABEL="AnduinH" UUID="ce9ad749-1f31-46e6-b1e7-efa0e1a0c738" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="f74329e5-8b3e-4e79-a984-c192f1ac9e60"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd4") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd4: UUID="4f16c538-ccc2-4797-ab9c-e4ab8a03e08b" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="4e6ad5b5-7c0b-4c33-a66a-d07ad394c942"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd5") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd5: LABEL="element" UUID="20ba0c86-a2d5-44be-a5ce-e57c2d4bd81c" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="cd33cc52-9937-4df9-b033-2c7d3051d8fd"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd6") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd6: LABEL="debain13" UUID="5d92630d-80d4-4fc9-987b-21311eab9349" BLOCK_SIZE="4096" TYPE="ext4" PARTLABEL="debian" PARTUUID="ddc6a9a8-0a38-439f-b857-ab228506513d"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd7") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd7: LABEL="linuxdata" BLOCK_SIZE="512" UUID="4832FFB432FFA4DA" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="ac6071f5-4f79-45d9-bd18-c1c84d3bfa89"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd8") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd8: UUID="64dc5e18-7f91-4e99-bb8f-0ae0e5a4bbe1" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="54058120-13b8-42d8-9132-069d5405cc5e"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd11") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd11: UUID="9a934ef5-90ac-40ec-a476-2edf1d95d21e" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="18e2c03a-823b-c64b-a3bd-59b58938c76e"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:08 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd9") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd9: LABEL="mint22.2" UUID="9d298cef-f368-4b99-b360-9781ad96c3df" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="f8fe21db-dff7-49a6-9158-e4289843b529"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:08 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd10") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd10: PARTLABEL="Microsoft reserved partition" PARTUUID="4233b70b-bc6e-4089-8e82-87795e5da827"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:08 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sde") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde: PTUUID="e762a142-00e2-4582-b138-4f4e97f810cf" PTTYPE="gpt"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sde1") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde1: LABEL_FATBOOT="EFI" LABEL="EFI" UUID="DC0F-231F" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="63210080-d0af-49eb-b8b9-cde162d3bfe5"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sde2") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde2: LABEL="data" UUID="89b91a63-5874-4398-a4b1-3ace71f8e66f" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="60298684-6b9b-4bac-b6a8-1efcee1199de"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sde3") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde3: LABEL="Lwin11" UUID="4c2950a0-67e2-498a-a62f-9712cd6da3ba" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="86e7905f-e1b1-425e-93f6-de46c28ff970"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:08 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:08 [6]:     .. there are 4 devices left. 
    2025-09-14 - 00:22:08 [6]: void PartitionCoreModule::doInit()
        LIST OF DETECTED DEVICES: 
    2025-09-14 - 00:22:08 [6]:     .. node	capacity	name	prettyName 
    2025-09-14 - 00:22:08 [6]:     .. "/dev/sda" 2000396321280 DevName$9af0bd1 DevNamePretty$f0a41e20 
    2025-09-14 - 00:22:08 [6]:     .. "/dev/sdc" 4000784417280 DevName$6b71b7da DevNamePretty$99cfd932 
    2025-09-14 - 00:22:08 [6]:     .. "/dev/sdd" 4000784417280 DevName$6b71b7da DevNamePretty$80cf61f8 
    2025-09-14 - 00:22:08 [6]:     .. "/dev/sde" 1000202273280 DevName$ddb8806c DevNamePretty$682feb01 
    2025-09-14 - 00:22:08 [6]:     .. 4 devices detected. 
    2025-09-14 - 00:22:08 [2]: unknown file system type  ""  on  "/dev/sdd10"
    2025-09-14 - 00:22:08 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:08 [6]: QList PartUtils::getDevices(DeviceType)
        Removing unsuitable devices: 5 candidates. 
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sda") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sda: PTUUID="e4ded793" PTTYPE="dos"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sda1") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sda1: LABEL="1.81TB" BLOCK_SIZE="512" UUID="E214731E1472F4BF" TYPE="ntfs" PARTUUID="e4ded793-01"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdb") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdb: PTUUID="0a7fb362" PTTYPE="dos"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdb1") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdb1: LABEL="Ventoy" UUID="4E21-0000" BLOCK_SIZE="512" TYPE="exfat" PTTYPE="dos" PARTUUID="0a7fb362-01"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdb2") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdb2: BLOCK_SIZE="2048" UUID="2024-07-01-08-31-27-00" LABEL="PeppermintOS" TYPE="iso9660" PTUUID="1d6a2a8b" PTTYPE="dos"
    2025-09-14 - 00:22:08 [6]:     .. Removing device with iso9660 filesystem (probably a CD) on it "/dev/sdb" 
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdc") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc: PTUUID="b0f5110e-45a9-4cd7-8775-b9bfc8a004b1" PTTYPE="gpt"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:08 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdc1") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc1: PARTLABEL="Microsoft reserved partition" PARTUUID="2bd087b4-d290-4bd5-a0b0-089951d88602"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:08 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdc2") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc2: LABEL="win11" BLOCK_SIZE="512" UUID="00AA6221AA621406" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="46531b3b-eafe-44d3-962c-a8ee46e65821"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdc3") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc3: LABEL="1.16TB" BLOCK_SIZE="512" UUID="E0289A6D289A4288" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="1e33a7ca-5eea-4c37-a5c8-3d303ef02629"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdc4") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc4: LABEL="1.16TB02" BLOCK_SIZE="512" UUID="C2426D2D426D26FF" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="e28dc060-9bd1-4afe-b462-ec0ec2ff979a"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdc5") 
    2025-09-14 - 00:22:08 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdc5: LABEL="1.16TB03" BLOCK_SIZE="512" UUID="28C8CA1DC8C9E960" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="fcbe6631-79cf-4515-befc-cb48aacf9572"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd: PTUUID="76d80eff-6c96-4d8d-bba1-42447d7802af" PTTYPE="gpt"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:08 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd1") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd1: UUID="231ab792-4df0-4c47-9bac-4673ec6ea1e1" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="000549fa-b498-458f-b38b-7621f23f903e"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd2") 
    2025-09-14 - 00:22:08 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd2: LABEL="pop_os" UUID="ec369d68-7983-40e4-b65d-6c63a790daaa" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="cfb3f254-cce6-4a98-ba8f-72278117493a"
    2025-09-14 - 00:22:08 [6]:     .. Running ("blkid", "/dev/sdd3") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd3: LABEL="AnduinH" UUID="ce9ad749-1f31-46e6-b1e7-efa0e1a0c738" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="f74329e5-8b3e-4e79-a984-c192f1ac9e60"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sdd4") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd4: UUID="4f16c538-ccc2-4797-ab9c-e4ab8a03e08b" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="4e6ad5b5-7c0b-4c33-a66a-d07ad394c942"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sdd5") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd5: LABEL="element" UUID="20ba0c86-a2d5-44be-a5ce-e57c2d4bd81c" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="cd33cc52-9937-4df9-b033-2c7d3051d8fd"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sdd6") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd6: LABEL="debain13" UUID="5d92630d-80d4-4fc9-987b-21311eab9349" BLOCK_SIZE="4096" TYPE="ext4" PARTLABEL="debian" PARTUUID="ddc6a9a8-0a38-439f-b857-ab228506513d"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sdd7") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd7: LABEL="linuxdata" BLOCK_SIZE="512" UUID="4832FFB432FFA4DA" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="ac6071f5-4f79-45d9-bd18-c1c84d3bfa89"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sdd8") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd8: UUID="64dc5e18-7f91-4e99-bb8f-0ae0e5a4bbe1" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="54058120-13b8-42d8-9132-069d5405cc5e"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sdd11") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd11: UUID="9a934ef5-90ac-40ec-a476-2edf1d95d21e" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="18e2c03a-823b-c64b-a3bd-59b58938c76e"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:09 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sdd9") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd9: LABEL="mint22.2" UUID="9d298cef-f368-4b99-b360-9781ad96c3df" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="f8fe21db-dff7-49a6-9158-e4289843b529"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:09 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sdd10") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sdd10: PARTLABEL="Microsoft reserved partition" PARTUUID="4233b70b-bc6e-4089-8e82-87795e5da827"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:09 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sde") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde: PTUUID="e762a142-00e2-4582-b138-4f4e97f810cf" PTTYPE="gpt"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sde1") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde1: LABEL_FATBOOT="EFI" LABEL="EFI" UUID="DC0F-231F" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="63210080-d0af-49eb-b8b9-cde162d3bfe5"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sde2") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde2: LABEL="data" UUID="89b91a63-5874-4398-a4b1-3ace71f8e66f" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="60298684-6b9b-4bac-b6a8-1efcee1199de"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "/dev/sde3") 
    2025-09-14 - 00:22:09 [6]:     .. Finished. Exit code: 0 output:
     /dev/sde3: LABEL="Lwin11" UUID="4c2950a0-67e2-498a-a62f-9712cd6da3ba" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="86e7905f-e1b1-425e-93f6-de46c28ff970"
    2025-09-14 - 00:22:09 [6]:     .. Running ("blkid", "") 
    2025-09-14 - 00:22:09 [6]:     .. Target cmd: ("blkid", "") Exit code: 2 (no output) 
    2025-09-14 - 00:22:09 [6]:     .. there are 4 devices left. 
    2025-09-14 - 00:22:09 [6]: void PartitionCoreModule::doInit()
        LIST OF DETECTED DEVICES: 
    2025-09-14 - 00:22:09 [6]:     .. node	capacity	name	prettyName 
    2025-09-14 - 00:22:09 [6]:     .. "/dev/sda" 2000396321280 DevName$acc9852d DevNamePretty$c036a62d 
    2025-09-14 - 00:22:09 [6]:     .. "/dev/sdc" 4000784417280 DevName$ce173926 DevNamePretty$a95d613f 
    2025-09-14 - 00:22:09 [6]:     .. "/dev/sdd" 4000784417280 DevName$ce173926 DevNamePretty$b05dd9f5 
    2025-09-14 - 00:22:09 [6]:     .. "/dev/sde" 1000202273280 DevName$bb15c8b6 DevNamePretty$58bd530c 
    2025-09-14 - 00:22:09 [6]:     .. 4 devices detected. 
    2025-09-14 - 00:22:09 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:10 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:10 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:11 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd11") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd11") 
    2025-09-14 - 00:22:11 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:22:11 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:22:11 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd11" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:22:11 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd11" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:22:11 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd11", "/tmp/calamares-oRWjmh") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd11", "/tmp/calamares-GmwTfL") 
    2025-09-14 - 00:22:11 [6]:     .. Target cmd: ("mount", "-o", "ro,noload", "/dev/sdd11", "/tmp/calamares-oRWjmh") Exit code: 32 output:
     mount: /tmp/calamares-oRWjmh: /dev/sdd11 already mounted on /tmp/calamares-root-rw2o6luj.
           dmesg(1) may have more information after failed mount system call.
    2025-09-14 - 00:22:11 [6]:     .. Target cmd: ("mount", "-o", "ro,noload", "/dev/sdd11", "/tmp/calamares-GmwTfL") Exit code: 32 output:
     mount: /tmp/calamares-GmwTfL: /dev/sdd11 already mounted on /tmp/calamares-root-rw2o6luj.
           dmesg(1) may have more information after failed mount system call.
    2025-09-14 - 00:22:11 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("sync") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("sync") 
    2025-09-14 - 00:22:11 [2]: CalamaresUtils::Partition::TemporaryMount::TemporaryMount(const QString&, const QString&, const QString&)
        WARNING: Mount of "/dev/sdd11" on "/tmp/calamares-oRWjmh" failed, code 32 
    2025-09-14 - 00:22:11 [2]: CalamaresUtils::Partition::TemporaryMount::TemporaryMount(const QString&, const QString&, const QString&)
        WARNING: Mount of "/dev/sdd11" on "/tmp/calamares-GmwTfL" failed, code 32 
    2025-09-14 - 00:22:11 [2]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        WARNING: Could not mount existing fs 
    2025-09-14 - 00:22:11 [2]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        WARNING: Could not mount existing fs 
    2025-09-14 - 00:22:11 [6]: bool PartUtils::canBeResized(Partition*, const Logger::Once&)
        Can not resize "/tmp/calamares-root-rw2o6luj" , partition is mounted 
    2025-09-14 - 00:22:11 [6]: bool PartUtils::canBeResized(Partition*, const Logger::Once&)
        Can not resize "/tmp/calamares-root-rw2o6luj" , partition is mounted 
    2025-09-14 - 00:22:11 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd3") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd2") 
    2025-09-14 - 00:22:11 [6]: void Calamares::RequirementsChecker::reportProgress()
        Remaining modules: 1 
         "partition" 
    2025-09-14 - 00:22:11 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:22:11 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd3" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:22:11 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd3", "/tmp/calamares-SZDzkw") 
    2025-09-14 - 00:22:11 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:22:11 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd2" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:22:11 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd2", "/tmp/calamares-IAGneD") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("sync") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:22:11 [6]:     .. got 10 fstab entries from 10 lines in "/tmp/calamares-IAGneD/etc/fstab" 
    2025-09-14 - 00:22:11 [6]:     .. Running ("umount", "-R", "/tmp/calamares-IAGneD") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("sync") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("sync") 
    2025-09-14 - 00:22:11 [6]:     .. got 12 fstab entries from 12 lines in "/tmp/calamares-SZDzkw/etc/fstab" 
    2025-09-14 - 00:22:11 [6]:     .. Running ("umount", "-R", "/tmp/calamares-SZDzkw") 
    2025-09-14 - 00:22:11 [6]:     ..  Partition "/dev/sdd2" authorized for resize + autopartition install. 
    2025-09-14 - 00:22:11 [6]:     .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd3") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:22:11 [6]:     .. Finished. Exit code: 0 output:
     ext4
    2025-09-14 - 00:22:11 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&)
        Checking device "/dev/sdd3" for fstab (fs= "ext4" ) 
    2025-09-14 - 00:22:11 [6]:     .. Running ("mount", "-o", "ro,noload", "/dev/sdd3", "/tmp/calamares-wCyVol") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("sync") 
    2025-09-14 - 00:22:11 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:22:11 [6]:     ..  Partition "/dev/sdd3" authorized for resize + autopartition install. 
    2025-09-14 - 00:22:11 [6]:     ..  os-prober lines after cleanup: 
         "/dev/sdd11:PeppermintOS:Peppermint1:linux" 
         "/dev/sdd3:AnduinOS 1.3.5 (1.3.5):AnduinOS:linux" 
    2025-09-14 - 00:22:11 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:22:11 [6]: void Calamares::RequirementsChecker::addCheckedRequirements(Calamares::Module*)
        Got 1 requirement results from "partition" 
    2025-09-14 - 00:22:11 [6]:     .. Running ("sync") 
    2025-09-14 - 00:22:11 [6]: void ChoicePage::updateDeviceStatePreview()
        Updating partitioning state widgets. 
    2025-09-14 - 00:22:11 [6]: void ChoicePage::setupActions()
        Setting up actions for "/dev/sda" with 0 entries. 
    2025-09-14 - 00:22:11 [6]:     .. got 12 fstab entries from 12 lines in "/tmp/calamares-wCyVol/etc/fstab" 
    2025-09-14 - 00:22:11 [6]:     .. Running ("umount", "-R", "/tmp/calamares-wCyVol") 
    2025-09-14 - 00:22:11 [6]:     ..  Partition "/dev/sda1" authorized for resize + autopartition install. 
    2025-09-14 - 00:22:11 [6]:     .. contains resizable "/dev/sda1" 
    2025-09-14 - 00:22:11 [6]:     ..  Checking if "/dev/sda1" can be replaced. 
    2025-09-14 - 00:22:11 [6]:     ..  Partition "/dev/sda1" authorized for replace install. 
    2025-09-14 - 00:22:11 [6]:     .. contains replaceable "/dev/sda1" 
    2025-09-14 - 00:22:11 [6]: ChoicePage::setupActions()::
        Setting texts for 0 osprober entries 
    2025-09-14 - 00:22:11 [2]: void ChoicePage::setupActions()
        WARNING: System is EFI but there's no EFI system partition, DISABLING alongside and replace features. 
    2025-09-14 - 00:22:11 [6]: void ChoicePage::continueApplyDeviceChoice()
        Previous device -1 new device 0 
    2025-09-14 - 00:22:11 [6]: void ChoicePage::applyActionChoice(InstallChoice)
        Prev -1 InstallChoice Config::Erase "erase" 
    2025-09-14 - 00:22:11 [6]: PartitionTable* CreatePartitionTableJob::createTable()
        CreatePartitionTableJob::createTable trying to make table for device "/dev/sda" 
    2025-09-14 - 00:22:11 [6]: void Calamares::RequirementsChecker::finished()
        All requirements have been checked. 
    2025-09-14 - 00:22:11 [6]: void Calamares::RequirementsModel::describe() const
        Requirements model has 5 items 
    2025-09-14 - 00:22:11 [6]:     .. requirement 0 "storage" satisfied? true mandatory? true 
    2025-09-14 - 00:22:11 [6]:     .. requirement 1 "ram" satisfied? true mandatory? true 
    2025-09-14 - 00:22:11 [6]:     .. requirement 2 "power" satisfied? true mandatory? false 
    2025-09-14 - 00:22:11 [6]:     .. requirement 3 "root" satisfied? true mandatory? true 
    2025-09-14 - 00:22:11 [6]:     .. requirement 4 "partitions" satisfied? true mandatory? true 
    2025-09-14 - 00:22:11 [6]:     .. Running ("udevadm", "settle") 
    2025-09-14 - 00:22:11 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:22:11 [6]: void PartitionCoreModule::scanForEfiSystemPartitions()
        system is EFI and new EFI system partition has been found. 
    2025-09-14 - 00:22:11 [6]:     .. Running ("sync") 
    2025-09-14 - 00:22:11 [6]: void PartitionCoreModule::dumpQueue() const
        # Queue: 
    2025-09-14 - 00:22:11 [6]:     .. ## Device: "/dev/sda" 
    2025-09-14 - 00:22:11 [6]:     .. - CreatePartitionTableJob 
    2025-09-14 - 00:22:11 [6]:     .. - CreatePartitionJob 
    2025-09-14 - 00:22:11 [6]:     .. - SetPartFlagsJob 
    2025-09-14 - 00:22:11 [6]:     .. - CreatePartitionJob 
    2025-09-14 - 00:22:11 [6]:     .. ## Device: "/dev/sdc" 
    2025-09-14 - 00:22:11 [6]:     .. ## Device: "/dev/sdd" 
    2025-09-14 - 00:22:11 [6]:     .. ## Device: "/dev/sde" 
    2025-09-14 - 00:22:11 [6]: void ChoicePage::updateActionChoicePreview(InstallChoice)
        Updating partitioning preview widgets. 
    2025-09-14 - 00:22:11 [6]:     ..  Partition "/dev/sdd3" authorized for resize + autopartition install. 
    2025-09-14 - 00:22:11 [6]:     ..  os-prober lines after cleanup: 
         "/dev/sdd11:PeppermintOS:Peppermint:linux" 
         "/dev/sdd2:Pop!_OS 22.04 LTS (22.04):Pop:linux" 
         "/dev/sdd3:AnduinOS 1.3.5 (1.3.5):AnduinOS:linux" 
    2025-09-14 - 00:22:11 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:22:11 [6]: void Calamares::RequirementsChecker::addCheckedRequirements(Calamares::Module*)
        Got 1 requirement results from "partition" 
    2025-09-14 - 00:22:11 [6]: void ChoicePage::updateDeviceStatePreview()
        Updating partitioning state widgets. 
    2025-09-14 - 00:22:11 [6]: void ChoicePage::setupActions()
        Setting up actions for "/dev/sda" with 0 entries. 
    2025-09-14 - 00:22:11 [6]:     ..  Partition "/dev/sda1" authorized for resize + autopartition install. 
    2025-09-14 - 00:22:11 [6]:     .. contains resizable "/dev/sda1" 
    2025-09-14 - 00:22:11 [6]:     ..  Checking if "/dev/sda1" can be replaced. 
    2025-09-14 - 00:22:11 [6]:     ..  Partition "/dev/sda1" authorized for replace install. 
    2025-09-14 - 00:22:11 [6]:     .. contains replaceable "/dev/sda1" 
    2025-09-14 - 00:22:11 [6]: ChoicePage::setupActions()::
        Setting texts for 0 osprober entries 
    2025-09-14 - 00:22:11 [2]: void ChoicePage::setupActions()
        WARNING: System is EFI but there's no EFI system partition, DISABLING alongside and replace features. 
    2025-09-14 - 00:22:11 [6]: void ChoicePage::continueApplyDeviceChoice()
        Previous device -1 new device 0 
    2025-09-14 - 00:22:11 [6]: void ChoicePage::applyActionChoice(InstallChoice)
        Prev -1 InstallChoice Config::Erase "erase" 
    2025-09-14 - 00:22:11 [6]: PartitionTable* CreatePartitionTableJob::createTable()
        CreatePartitionTableJob::createTable trying to make table for device "/dev/sda" 
    2025-09-14 - 00:22:11 [6]: void Calamares::RequirementsChecker::finished()
        All requirements have been checked. 
    2025-09-14 - 00:22:11 [6]: void Calamares::RequirementsModel::describe() const
        Requirements model has 5 items 
    2025-09-14 - 00:22:11 [6]:     .. requirement 0 "storage" satisfied? true mandatory? true 
    2025-09-14 - 00:22:11 [6]:     .. requirement 1 "ram" satisfied? true mandatory? true 
    2025-09-14 - 00:22:11 [6]:     .. requirement 2 "power" satisfied? true mandatory? false 
    2025-09-14 - 00:22:11 [6]:     .. requirement 3 "root" satisfied? true mandatory? true 
    2025-09-14 - 00:22:11 [6]:     .. requirement 4 "partitions" satisfied? true mandatory? true 
    2025-09-14 - 00:22:11 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:22:11 [6]: void PartitionCoreModule::scanForEfiSystemPartitions()
        system is EFI and new EFI system partition has been found. 
    2025-09-14 - 00:22:11 [6]: void PartitionCoreModule::dumpQueue() const
        # Queue: 
    2025-09-14 - 00:22:11 [6]:     .. ## Device: "/dev/sda" 
    2025-09-14 - 00:22:11 [6]:     .. - CreatePartitionTableJob 
    2025-09-14 - 00:22:11 [6]:     .. - CreatePartitionJob 
    2025-09-14 - 00:22:11 [6]:     .. - SetPartFlagsJob 
    2025-09-14 - 00:22:11 [6]:     .. - CreatePartitionJob 
    2025-09-14 - 00:22:11 [6]:     .. ## Device: "/dev/sdc" 
    2025-09-14 - 00:22:11 [6]:     .. ## Device: "/dev/sdd" 
    2025-09-14 - 00:22:11 [6]:     .. ## Device: "/dev/sde" 
    2025-09-14 - 00:22:11 [6]: void ChoicePage::updateActionChoicePreview(InstallChoice)
        Updating partitioning preview widgets. 
    2025-09-14 - 00:22:13 [6]: static LocaleConfiguration LocaleConfiguration::fromLanguageAndLocation(const QString&, const QStringList&, const QString&)
        Mapping "en" in "CN" to locale. 
    2025-09-14 - 00:22:13 [6]:     .. Got best match for "en" as "en_ZW.UTF-8" 
    2025-09-14 - 00:22:13 [6]:     .. Got best match for "en_CN" as "en_AG" 
    2025-09-14 - 00:22:13 [6]:     .. Got best match for "en_US" as "en_US.UTF-8" 
    2025-09-14 - 00:22:13 [6]: static LocaleConfiguration LocaleConfiguration::fromLanguageAndLocation(const QString&, const QStringList&, const QString&)
        Mapping "en" in "CN" to locale. 
    2025-09-14 - 00:22:13 [6]:     .. Got best match for "en" as "en_ZW.UTF-8" 
    2025-09-14 - 00:22:13 [6]:     .. Got best match for "en_CN" as "en_AG" 
    2025-09-14 - 00:22:13 [6]:     .. Got best match for "en_US" as "en_US.UTF-8" 
    2025-09-14 - 00:22:13 [6]: static LocaleConfiguration LocaleConfiguration::fromLanguageAndLocation(const QString&, const QStringList&, const QString&)
        Mapping "en" in "CN" to locale. 
    2025-09-14 - 00:22:13 [6]:     .. Got best match for "en" as "en_ZW.UTF-8" 
    2025-09-14 - 00:22:13 [6]:     .. Got best match for "en_CN" as "en_AG" 
    2025-09-14 - 00:22:13 [6]:     .. Got best match for "en_US" as "en_US.UTF-8" 
    2025-09-14 - 00:22:13 [6]: void Config::guessLocaleKeyboardLayout()
        Got locale language "en_US.UTF-8" 
    2025-09-14 - 00:22:13 [6]:     .. looking for locale part "US" 
    2025-09-14 - 00:22:13 [6]:     .. matched "us" 
    2025-09-14 - 00:22:13 [6]: void guessLayout(const QStringList&, KeyboardLayoutModel*, KeyboardVariantsModel*)
        Next level: "en" 
    2025-09-14 - 00:22:19 [6]: void ChoicePage::applyActionChoice(InstallChoice)
        Prev -1 InstallChoice Config::Manual "manual" 
    2025-09-14 - 00:22:19 [6]: void ChoicePage::updateActionChoicePreview(InstallChoice)
        Updating partitioning preview widgets. 
    2025-09-14 - 00:22:23 [6]: virtual void PartitionViewStep::next()
        Choice applied:  Config::Manual 
    2025-09-14 - 00:22:23 [6]: 488377855 5086312 4096
    2025-09-14 - 00:22:23 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:22:24 [2]: unknown file system type  ""  on  "/dev/sdc1"
    2025-09-14 - 00:22:24 [6]: 39322111 28241190 4096
    2025-09-14 - 00:22:24 [6]: 312476159 18882935 4096
    2025-09-14 - 00:22:24 [6]: 312476159 270304541 4096
    2025-09-14 - 00:22:25 [6]: 312421329 91324050 4096
    2025-09-14 - 00:22:25 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:22:25 [2]: unknown file system type  ""  on  "/dev/sdd10"
    2025-09-14 - 00:22:26 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:22:26 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:22:26 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:22:26 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:22:26 [2]: QBasicTimer::start: Timers cannot be started from another thread
    2025-09-14 - 00:22:26 [2]: QBasicTimer::start: Timers cannot be started from another thread
    2025-09-14 - 00:22:26 [2]: QBasicTimer::start: Timers cannot be started from another thread
    2025-09-14 - 00:23:00 [6]: void EditExistingPartitionDialog::applyChanges(PartitionCoreModule*)
        old boundaries: 1349826560 1575106559 225280000 
    2025-09-14 - 00:23:00 [6]:     .. new boundaries: 1349826560 1575106559 
    2025-09-14 - 00:23:00 [6]:     .. dirty status: false 
    2025-09-14 - 00:23:00 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:23:00 [2]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 3660, resource id: 8477258, major code: 40 (TranslateCoords), minor code: 0
    2025-09-14 - 00:23:00 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:23:19 [6]: void EditExistingPartitionDialog::applyChanges(PartitionCoreModule*)
        old boundaries: 3999744 638879743 634880000 
    2025-09-14 - 00:23:19 [6]:     .. new boundaries: 3999744 638879743 
    2025-09-14 - 00:23:19 [6]:     .. dirty status: false 
    2025-09-14 - 00:23:19 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:23:19 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:23:34 [6]: PartitionBarsView::PartitionBarsView(QWidget*)::
        Clicked row 1 
    2025-09-14 - 00:23:38 [6]: PartitionBarsView::PartitionBarsView(QWidget*)::
        Clicked row 2 
    2025-09-14 - 00:23:39 [6]: PartitionBarsView::PartitionBarsView(QWidget*)::
        Clicked row 3 
    2025-09-14 - 00:23:39 [6]: PartitionBarsView::PartitionBarsView(QWidget*)::
        Clicked row 1 
    2025-09-14 - 00:23:44 [6]: PartitionBarsView::PartitionBarsView(QWidget*)::
        Clicked row 2 
    2025-09-14 - 00:23:44 [6]: PartitionBarsView::PartitionBarsView(QWidget*)::
        Clicked row 2 
    2025-09-14 - 00:23:45 [6]: PartitionBarsView::PartitionBarsView(QWidget*)::
        Clicked row 1 
    2025-09-14 - 00:23:46 [6]: PartitionBarsView::PartitionBarsView(QWidget*)::
        Clicked row 3 
    2025-09-14 - 00:23:47 [6]: PartitionBarsView::PartitionBarsView(QWidget*)::
        Clicked row 1 
    2025-09-14 - 00:23:47 [6]: PartitionBarsView::PartitionBarsView(QWidget*)::
        Clicked row 1 
    2025-09-14 - 00:23:52 [2]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 5176, resource id: 8477964, major code: 40 (TranslateCoords), minor code: 0
    2025-09-14 - 00:23:57 [6]: PartitionBarsView::PartitionBarsView(QWidget*)::
        Clicked row 0 
    2025-09-14 - 00:24:49 [6]: 488377855 5086312 4096
    2025-09-14 - 00:24:49 [2]: unknown file system type  ""  on  "/dev/sdc1"
    2025-09-14 - 00:24:49 [6]: 39322111 28241190 4096
    2025-09-14 - 00:24:50 [6]: 312476159 18882935 4096
    2025-09-14 - 00:24:50 [6]: 312476159 270304541 4096
    2025-09-14 - 00:24:50 [6]: 312421329 91324050 4096
    2025-09-14 - 00:24:51 [2]: unknown file system type  ""  on  "/dev/sdd10"
    2025-09-14 - 00:24:51 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:24:51 [6]: void ChoicePage::updateDeviceStatePreview()
        Updating partitioning state widgets. 
    2025-09-14 - 00:24:51 [6]: void ChoicePage::setupActions()
        Setting up actions for "/dev/sde" with 0 entries. 
    2025-09-14 - 00:24:51 [6]:     ..  Can not resize "/tmp/calamares-root-rw2o6luj/boot/efi" , filesystem "fat32" does not support resize. 
    2025-09-14 - 00:24:51 [6]:     ..  Checking if "/tmp/calamares-root-rw2o6luj/boot/efi" can be replaced. 
    2025-09-14 - 00:24:51 [6]:     .. NO, it is mounted. 
    2025-09-14 - 00:24:51 [6]:     ..  Can not resize "/tmp/calamares-root-rw2o6luj/home" , partition is mounted 
    2025-09-14 - 00:24:51 [6]:     ..  Checking if "/tmp/calamares-root-rw2o6luj/home" can be replaced. 
    2025-09-14 - 00:24:51 [6]:     .. NO, it is mounted. 
    2025-09-14 - 00:24:51 [6]:     ..  Partition "/dev/sde3" authorized for resize + autopartition install. 
    2025-09-14 - 00:24:51 [6]:     .. contains resizable "/dev/sde3" 
    2025-09-14 - 00:24:51 [6]:     ..  Checking if "/dev/sde3" can be replaced. 
    2025-09-14 - 00:24:51 [6]:     ..  Partition "/dev/sde3" authorized for replace install. 
    2025-09-14 - 00:24:51 [6]:     .. contains replaceable "/dev/sde3" 
    2025-09-14 - 00:24:51 [6]:     ..  Can not resize "/dev/sde" , filesystem "unknown" does not support resize. 
    2025-09-14 - 00:24:51 [6]:     ..  Checking if "/dev/sde" can be replaced. 
    2025-09-14 - 00:24:51 [6]:     ..  Partition "/dev/sde" authorized for replace install. 
    2025-09-14 - 00:24:51 [6]:     .. contains replaceable "unallocated" 
    2025-09-14 - 00:24:51 [6]: ChoicePage::setupActions()::
        Setting texts for 0 osprober entries 
    2025-09-14 - 00:24:51 [6]: void ChoicePage::setupActions()
        No partitions ( any-mounted? true is-raid? false ) for erase-action. 
    2025-09-14 - 00:24:51 [2]: void ChoicePage::setupActions()
        WARNING: System is EFI but there's no EFI system partition, DISABLING alongside and replace features. 
    2025-09-14 - 00:24:51 [6]: void ChoicePage::continueApplyDeviceChoice()
        Previous device 3 new device 3 
    2025-09-14 - 00:24:51 [6]: void ChoicePage::applyActionChoice(InstallChoice)
        Prev -1 InstallChoice Config::Manual "manual" 
    2025-09-14 - 00:24:51 [6]: void ChoicePage::updateActionChoicePreview(InstallChoice)
        Updating partitioning preview widgets. 
    2025-09-14 - 00:24:54 [6]: virtual void PartitionViewStep::next()
        Choice applied:  Config::Manual 
    2025-09-14 - 00:25:38 [6]: void EditExistingPartitionDialog::applyChanges(PartitionCoreModule*)
        old boundaries: 1349826560 1575106559 225280000 
    2025-09-14 - 00:25:38 [6]:     .. new boundaries: 1349826560 1575106559 
    2025-09-14 - 00:25:38 [6]:     .. dirty status: false 
    2025-09-14 - 00:25:38 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:25:38 [2]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 10597, resource id: 8480870, major code: 40 (TranslateCoords), minor code: 0
    2025-09-14 - 00:25:38 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:25:38 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:25:38 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:25:51 [6]: void EditExistingPartitionDialog::applyChanges(PartitionCoreModule*)
        old boundaries: 1349826560 1575106559 225280000 
    2025-09-14 - 00:25:51 [6]:     .. new boundaries: 1349826560 1575106559 
    2025-09-14 - 00:25:51 [6]:     .. dirty status: false 
    2025-09-14 - 00:25:51 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:25:51 [2]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 11011, resource id: 8481159, major code: 40 (TranslateCoords), minor code: 0
    2025-09-14 - 00:25:51 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:25:51 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:25:51 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:26:04 [6]: void EditExistingPartitionDialog::applyChanges(PartitionCoreModule*)
        old boundaries: 3999744 638879743 634880000 
    2025-09-14 - 00:26:04 [6]:     .. new boundaries: 3999744 638879743 
    2025-09-14 - 00:26:04 [6]:     .. dirty status: false 
    2025-09-14 - 00:26:04 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:26:04 [2]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 11581, resource id: 8481372, major code: 40 (TranslateCoords), minor code: 0
    2025-09-14 - 00:26:04 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:29:20 [6]: void EditExistingPartitionDialog::applyChanges(PartitionCoreModule*)
        old boundaries: 2048 3999743 3997696 
    2025-09-14 - 00:29:20 [6]:     .. new boundaries: 2048 3999743 
    2025-09-14 - 00:29:20 [6]:     .. dirty status: false 
    2025-09-14 - 00:29:20 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:29:20 [2]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 13570, resource id: 8482837, major code: 40 (TranslateCoords), minor code: 0
    2025-09-14 - 00:29:20 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:29:40 [6]: void EditExistingPartitionDialog::applyChanges(PartitionCoreModule*)
        old boundaries: 2048 3999743 3997696 
    2025-09-14 - 00:29:40 [6]:     .. new boundaries: 2048 3999743 
    2025-09-14 - 00:29:40 [6]:     .. dirty status: false 
    2025-09-14 - 00:29:40 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:29:40 [2]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 14008, resource id: 8483190, major code: 40 (TranslateCoords), minor code: 0
    2025-09-14 - 00:29:40 [2]: void PartitionCoreModule::scanForEfiSystemPartitions()
        WARNING: system is EFI but no EFI system partitions found. 
    2025-09-14 - 00:29:40 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:29:40 [6]: void PartitionCoreModule::scanForEfiSystemPartitions()
        system is EFI and new EFI system partition has been found. 
    2025-09-14 - 00:31:31 [6]: void EditExistingPartitionDialog::applyChanges(PartitionCoreModule*)
        old boundaries: 2048 3999743 3997696 
    2025-09-14 - 00:31:31 [6]:     .. new boundaries: 2048 3999743 
    2025-09-14 - 00:31:31 [6]:     .. dirty status: false 
    2025-09-14 - 00:31:31 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&)
        No path to restore, choosing default 
    2025-09-14 - 00:31:31 [2]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 18813, resource id: 8483543, major code: 40 (TranslateCoords), minor code: 0
    2025-09-14 - 00:31:52 [2]: QObject::setParent: Cannot set parent, new parent is in a different thread
    2025-09-14 - 00:31:52 [2]: QObject::setParent: Cannot set parent, new parent is in a different thread
    2025-09-14 - 00:31:52 [6]: virtual QString PartitionViewStep::prettyStatus() const
        Summary for Partition 2 Config::Manual 
    2025-09-14 - 00:31:52 [6]: QStringList findEssentialLVs(const QList&)
        Checking LVM use on 4 devices 
    2025-09-14 - 00:31:52 [6]: QVariantList FillGlobalStorageJob::createPartitionList() const
        Building partition information map 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sda" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sda1" "/dev/sda1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$c3127727" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sdc" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc1" "/dev/sdc1" 
         partlabel :   "Microsoft reserved partition" 
         partition-uuid (partuuid) :   "PartUUID$89d89b51" 
         parttype :   "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc2" "/dev/sdc2" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$cdd1dec5" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$e65eba37" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc3" "/dev/sdc3" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$b35c6e46" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$4acd8c18" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc4" "/dev/sdc4" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$42b91e3d" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$395cdbf6" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc5" "/dev/sdc5" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$be98e3ce" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$93d3eb92" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sdd" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd1" "/dev/sdd1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$3e9be390" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$d7be0382" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd2" "/dev/sdd2" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$e818ebae" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$34b2384e" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd3" "/dev/sdd3" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$ea0ecb95" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$a0b32d30" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd4" "/dev/sdd4" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$99ed8f87" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$110112ae" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd5" "/dev/sdd5" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$29c80c5e" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$91356984" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd6" "/dev/sdd6" 
         partlabel :   "debian" 
         partition-uuid (partuuid) :   "PartUUID$33e4955e" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$5c3f574b" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd7" "/dev/sdd7" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$ef41874b" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$91e4e232" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd8" "/dev/sdd8" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$f7857369" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$420c96c0" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd11" "/dev/sdd11" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$966dc934" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "/" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$8758cd5c" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd9" "/dev/sdd9" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$31051855" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$438b1deb" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd10" "/dev/sdd10" 
         partlabel :   "Microsoft reserved partition" 
         partition-uuid (partuuid) :   "PartUUID$8e2c15f3" 
         parttype :   "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sde" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde1" "/dev/sde1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a62767e2" 
         parttype :   "21686148-6449-6E6F-744E-656564454649" 
         partattrs :   "0" 
         mountPoint: :   "/boot/efi" 
         fs: :   "fat32" 
         fsName :   "fat32" 
         filesystem-uuid (uuid) :   "FSUUID$22a50a5e" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde2" "/dev/sde2" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$600c6687" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "/home" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$df2f8d23" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde3" "/dev/sde3" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$b12cae2" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$fe359c67" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]: QVariantList FillGlobalStorageJob::createPartitionList() const
        Building partition information map 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sda" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sda1" "/dev/sda1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$c3127727" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sdc" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc1" "/dev/sdc1" 
         partlabel :   "Microsoft reserved partition" 
         partition-uuid (partuuid) :   "PartUUID$89d89b51" 
         parttype :   "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc2" "/dev/sdc2" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$cdd1dec5" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$e65eba37" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc3" "/dev/sdc3" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$b35c6e46" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$4acd8c18" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc4" "/dev/sdc4" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$42b91e3d" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$395cdbf6" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc5" "/dev/sdc5" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$be98e3ce" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$93d3eb92" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sdd" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd1" "/dev/sdd1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$3e9be390" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$d7be0382" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd2" "/dev/sdd2" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$e818ebae" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$34b2384e" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd3" "/dev/sdd3" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$ea0ecb95" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$a0b32d30" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd4" "/dev/sdd4" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$99ed8f87" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$110112ae" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd5" "/dev/sdd5" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$29c80c5e" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$91356984" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd6" "/dev/sdd6" 
         partlabel :   "debian" 
         partition-uuid (partuuid) :   "PartUUID$33e4955e" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$5c3f574b" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd7" "/dev/sdd7" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$ef41874b" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$91e4e232" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd8" "/dev/sdd8" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$f7857369" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$420c96c0" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd11" "/dev/sdd11" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$966dc934" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "/" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$8758cd5c" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd9" "/dev/sdd9" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$31051855" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$438b1deb" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd10" "/dev/sdd10" 
         partlabel :   "Microsoft reserved partition" 
         partition-uuid (partuuid) :   "PartUUID$8e2c15f3" 
         parttype :   "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sde" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde1" "/dev/sde1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a62767e2" 
         parttype :   "21686148-6449-6E6F-744E-656564454649" 
         partattrs :   "0" 
         mountPoint: :   "/boot/efi" 
         fs: :   "fat32" 
         fsName :   "fat32" 
         filesystem-uuid (uuid) :   "FSUUID$22a50a5e" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde2" "/dev/sde2" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$600c6687" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "/home" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$df2f8d23" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde3" "/dev/sde3" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$b12cae2" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$fe359c67" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [2]: QLayout: Attempting to add QLayout "" to QWidget "", which already has a layout
    2025-09-14 - 00:31:52 [2]: QObject::setParent: Cannot set parent, new parent is in a different thread
    2025-09-14 - 00:31:52 [2]: QObject::setParent: Cannot set parent, new parent is in a different thread
    2025-09-14 - 00:31:52 [6]: QStringList findEssentialLVs(const QList&)
        Checking LVM use on 4 devices 
    2025-09-14 - 00:31:52 [6]: QVariantList FillGlobalStorageJob::createPartitionList() const
        Building partition information map 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sda" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sda1" "/dev/sda1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$c3127727" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sdc" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc1" "/dev/sdc1" 
         partlabel :   "Microsoft reserved partition" 
         partition-uuid (partuuid) :   "PartUUID$89d89b51" 
         parttype :   "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc2" "/dev/sdc2" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$cdd1dec5" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$e65eba37" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc3" "/dev/sdc3" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$b35c6e46" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$4acd8c18" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc4" "/dev/sdc4" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$42b91e3d" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$395cdbf6" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc5" "/dev/sdc5" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$be98e3ce" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$93d3eb92" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sdd" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd1" "/dev/sdd1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$3e9be390" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$d7be0382" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd2" "/dev/sdd2" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$e818ebae" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$34b2384e" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd3" "/dev/sdd3" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$ea0ecb95" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$a0b32d30" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd4" "/dev/sdd4" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$99ed8f87" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$110112ae" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd5" "/dev/sdd5" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$29c80c5e" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$91356984" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd6" "/dev/sdd6" 
         partlabel :   "debian" 
         partition-uuid (partuuid) :   "PartUUID$33e4955e" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$5c3f574b" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd7" "/dev/sdd7" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$ef41874b" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$91e4e232" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd8" "/dev/sdd8" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$f7857369" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$420c96c0" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd11" "/dev/sdd11" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$966dc934" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "/" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$8758cd5c" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd9" "/dev/sdd9" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$31051855" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$438b1deb" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd10" "/dev/sdd10" 
         partlabel :   "Microsoft reserved partition" 
         partition-uuid (partuuid) :   "PartUUID$8e2c15f3" 
         parttype :   "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sde" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde1" "/dev/sde1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a62767e2" 
         parttype :   "21686148-6449-6E6F-744E-656564454649" 
         partattrs :   "0" 
         mountPoint: :   "/boot/efi" 
         fs: :   "fat32" 
         fsName :   "fat32" 
         filesystem-uuid (uuid) :   "FSUUID$22a50a5e" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde2" "/dev/sde2" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$600c6687" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "/home" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$df2f8d23" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde3" "/dev/sde3" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$b12cae2" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$fe359c67" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]: QVariantList FillGlobalStorageJob::createPartitionList() const
        Building partition information map 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sda" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sda1" "/dev/sda1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$c3127727" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sdc" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc1" "/dev/sdc1" 
         partlabel :   "Microsoft reserved partition" 
         partition-uuid (partuuid) :   "PartUUID$89d89b51" 
         parttype :   "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc2" "/dev/sdc2" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$cdd1dec5" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$e65eba37" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc3" "/dev/sdc3" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$b35c6e46" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$4acd8c18" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc4" "/dev/sdc4" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$42b91e3d" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$395cdbf6" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdc5" "/dev/sdc5" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$be98e3ce" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$93d3eb92" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sdd" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd1" "/dev/sdd1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$3e9be390" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$d7be0382" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd2" "/dev/sdd2" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$e818ebae" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$34b2384e" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd3" "/dev/sdd3" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$ea0ecb95" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$a0b32d30" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd4" "/dev/sdd4" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$99ed8f87" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$110112ae" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd5" "/dev/sdd5" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$29c80c5e" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$91356984" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd6" "/dev/sdd6" 
         partlabel :   "debian" 
         partition-uuid (partuuid) :   "PartUUID$33e4955e" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$5c3f574b" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd7" "/dev/sdd7" 
         partlabel :   "Basic data partition" 
         partition-uuid (partuuid) :   "PartUUID$ef41874b" 
         parttype :   "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ntfs" 
         fsName :   "ntfs" 
         filesystem-uuid (uuid) :   "FSUUID$91e4e232" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd8" "/dev/sdd8" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$f7857369" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$420c96c0" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd11" "/dev/sdd11" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$966dc934" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "/" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$8758cd5c" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd9" "/dev/sdd9" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$31051855" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$438b1deb" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sdd10" "/dev/sdd10" 
         partlabel :   "Microsoft reserved partition" 
         partition-uuid (partuuid) :   "PartUUID$8e2c15f3" 
         parttype :   "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     .. partitions on "/dev/sde" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde1" "/dev/sde1" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a62767e2" 
         parttype :   "21686148-6449-6E6F-744E-656564454649" 
         partattrs :   "0" 
         mountPoint: :   "/boot/efi" 
         fs: :   "fat32" 
         fsName :   "fat32" 
         filesystem-uuid (uuid) :   "FSUUID$22a50a5e" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde2" "/dev/sde2" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$600c6687" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "/home" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$df2f8d23" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "/dev/sde3" "/dev/sde3" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$b12cae2" 
         parttype :   "0FC63DAF-8483-4772-8E79-3D69D8477DE4" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "ext4" 
         fsName :   "ext4" 
         filesystem-uuid (uuid) :   "FSUUID$fe359c67" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]:     ..  mapping for "" "unallocated" 
         partlabel :   "" 
         partition-uuid (partuuid) :   "PartUUID$a986a27e" 
         parttype :   "" 
         partattrs :   "0" 
         mountPoint: :   "" 
         fs: :   "unknown" 
         fsName :   "unknown" 
         filesystem-uuid (uuid) :   "FSUUID$d7362a08" 
         claimed :   "false" 
    2025-09-14 - 00:31:52 [6]: void ensureSize(QWidget*, QScrollArea*, Calamares::ViewStep*)
        Summary widget is larger than viewport, enlarge by 645 to QSize(834, 1132) 
    2025-09-14 - 00:37:28 [6]: QStringList findEssentialLVs(const QList&)
        Checking LVM use on 4 devices 
    2025-09-14 - 00:37:28 [6]: void Calamares::JobThread::finalize()
        There are 42 jobs, total weight 40 
    2025-09-14 - 00:37:28 [6]:     .. Job 1 "Manage auto-mount settings" +wt 0.111111 tot.wt 0.111111 
    2025-09-14 - 00:37:28 [6]:     .. Job 2 "Clear all temporary mounts." +wt 0.111111 tot.wt 0.222222 
    2025-09-14 - 00:37:28 [6]:     .. Job 3 "Clear mounts for partitioning operations on /dev/sdd" +wt 0.111111 tot.wt 0.333333 
    2025-09-14 - 00:37:28 [6]:     .. Job 4 "Clear mounts for partitioning operations on /dev/sde" +wt 0.111111 tot.wt 0.444444 
    2025-09-14 - 00:37:28 [6]:     .. Job 5 "Set filesystem label on /dev/sdd11." +wt 0.111111 tot.wt 0.555556 
    2025-09-14 - 00:37:28 [6]:     .. Job 6 "Set filesystem label on /dev/sdd11." +wt 0.111111 tot.wt 0.666667 
    2025-09-14 - 00:37:28 [6]:     .. Job 7 "Set flags on partition /dev/sde1." +wt 0.111111 tot.wt 0.777778 
    2025-09-14 - 00:37:28 [6]:     .. Job 8 "Set partition information" +wt 0.111111 tot.wt 0.888889 
    2025-09-14 - 00:37:28 [6]:     .. Job 9 "Manage auto-mount settings" +wt 0.111111 tot.wt 1 
    2025-09-14 - 00:37:28 [6]:     .. Job 10 "mount" +wt 1 tot.wt 2 
    2025-09-14 - 00:37:28 [6]:     .. Job 11 "unpackfs" +wt 12 tot.wt 14 
    2025-09-14 - 00:37:28 [6]:     .. Job 12 " Run command '/usr/sbin/sources-media'." +wt 1 tot.wt 15 
    2025-09-14 - 00:37:28 [6]:     .. Job 13 "Generate machine-id." +wt 1 tot.wt 16 
    2025-09-14 - 00:37:28 [6]:     .. Job 14 "fstab" +wt 1 tot.wt 17 
    2025-09-14 - 00:37:28 [6]:     .. Job 15 "Set timezone to Asia/Shanghai" +wt 1 tot.wt 18 
    2025-09-14 - 00:37:28 [6]:     .. Job 16 "Set keyboard model to pc105, layout to us-" +wt 1 tot.wt 19 
    2025-09-14 - 00:37:28 [6]:     .. Job 17 "localecfg" +wt 1 tot.wt 20 
    2025-09-14 - 00:37:28 [6]:     .. Job 18 "Configure 
    sudo
    users." +wt 0.166667 tot.wt 20.1667 2025-09-14 - 00:37:28 [6]: .. Job 19 "Preparing groups." +wt 0.166667 tot.wt 20.3333 2025-09-14 - 00:37:28 [6]: .. Job 20 "Create user vincent" +wt 0.166667 tot.wt 20.5 2025-09-14 - 00:37:28 [6]: .. Job 21 "Set password for user vincent" +wt 0.166667 tot.wt 20.6667 2025-09-14 - 00:37:28 [6]: .. Job 22 "Set password for user root" +wt 0.166667 tot.wt 20.8333 2025-09-14 - 00:37:28 [6]: .. Job 23 "Set hostname so" +wt 0.166667 tot.wt 21 2025-09-14 - 00:37:28 [6]: .. Job 24 "displaymanager" +wt 1 tot.wt 22 2025-09-14 - 00:37:28 [6]: .. Job 25 "networkcfg" +wt 1 tot.wt 23 2025-09-14 - 00:37:28 [6]: .. Job 26 "hwclock" +wt 1 tot.wt 24 2025-09-14 - 00:37:28 [6]: .. Job 27 "services-systemd" +wt 1 tot.wt 25 2025-09-14 - 00:37:28 [6]: .. Job 28 " Run command '/usr/sbin/bootloader-config'." +wt 1 tot.wt 26 2025-09-14 - 00:37:28 [6]: .. Job 29 "grubcfg" +wt 1 tot.wt 27 2025-09-14 - 00:37:28 [6]: .. Job 30 "bootloader" +wt 1 tot.wt 28 2025-09-14 - 00:37:28 [6]: .. Job 31 "packages" +wt 1 tot.wt 29 2025-09-14 - 00:37:28 [6]: .. Job 32 "Configuring LUKS key file." +wt 1 tot.wt 30 2025-09-14 - 00:37:28 [6]: .. Job 33 "Configuring encrypted swap." +wt 1 tot.wt 31 2025-09-14 - 00:37:28 [6]: .. Job 34 "plymouthcfg" +wt 1 tot.wt 32 2025-09-14 - 00:37:28 [6]: .. Job 35 "initramfscfg" +wt 1 tot.wt 33 2025-09-14 - 00:37:28 [6]: .. Job 36 "Creating initramfs." +wt 1 tot.wt 34 2025-09-14 - 00:37:28 [6]: .. Job 37 " Run command '/usr/sbin/sources-media -u'." +wt 1 tot.wt 35 2025-09-14 - 00:37:28 [6]: .. Job 38 " Run command '/usr/sbin/sources-final'." +wt 1 tot.wt 36 2025-09-14 - 00:37:28 [6]: .. Job 39 " Run command '/usr/sbin/update-system'." +wt 1 tot.wt 37 2025-09-14 - 00:37:28 [6]: .. Job 40 " Run command '/usr/sbin/grub-defaults'." +wt 1 tot.wt 38 2025-09-14 - 00:37:28 [6]: .. Job 41 "Shell Processes Job" +wt 1 tot.wt 39 2025-09-14 - 00:37:28 [6]: .. Job 42 "Unmount file systems." +wt 1 tot.wt 40 2025-09-14 - 00:37:28 [6]: virtual void Calamares::JobThread::run() Starting job "Manage auto-mount settings" ( 1 / 42 ) 2025-09-14 - 00:37:28 [6]: virtual Calamares::JobResult AutoMountManagementJob::exec() Set automount to disable 2025-09-14 - 00:37:28 [6]: std::shared_ptr CalamaresUtils::Partition::automountDisable(bool) Setting Solid automount to disabled 2025-09-14 - 00:37:28 [6]: .. 2 reply () 2025-09-14 - 00:37:28 [6]: .. 2 reply (QVariant(bool, false)) 2025-09-14 - 00:37:28 [6]: virtual void Calamares::JobThread::run() Starting job "Clear all temporary mounts." ( 2 / 42 ) 2025-09-14 - 00:37:28 [6]: virtual Calamares::JobResult ClearTempMountsJob::exec() Will try to umount path "/tmp/calamares-root-rw2o6luj/sys/firmware/efi/efivars" 2025-09-14 - 00:37:28 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-rw2o6luj/sys/firmware/efi/efivars") 2025-09-14 - 00:37:28 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-rw2o6luj/sys/firmware/efi/efivars (efivarfs) unmounted 2025-09-14 - 00:37:28 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:28 [6]: .. Running ("sync") 2025-09-14 - 00:37:28 [6]: .. Will try to umount path "/tmp/calamares-root-rw2o6luj/sys" 2025-09-14 - 00:37:28 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-rw2o6luj/sys") 2025-09-14 - 00:37:28 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-rw2o6luj/sys (sys) unmounted 2025-09-14 - 00:37:28 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:28 [6]: .. Running ("sync") 2025-09-14 - 00:37:28 [6]: .. Will try to umount path "/tmp/calamares-root-rw2o6luj/run/udev" 2025-09-14 - 00:37:28 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-rw2o6luj/run/udev") 2025-09-14 - 00:37:28 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-rw2o6luj/run/udev (tmpfs) unmounted 2025-09-14 - 00:37:28 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:29 [6]: .. Running ("sync") 2025-09-14 - 00:37:29 [6]: .. Will try to umount path "/tmp/calamares-root-rw2o6luj/run/live/medium" 2025-09-14 - 00:37:29 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-rw2o6luj/run/live/medium") 2025-09-14 - 00:37:29 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-rw2o6luj/run/live/medium (/dev/mapper/ventoy) unmounted 2025-09-14 - 00:37:29 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:29 [6]: .. Running ("sync") 2025-09-14 - 00:37:29 [6]: .. Will try to umount path "/tmp/calamares-root-rw2o6luj/run" 2025-09-14 - 00:37:29 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-rw2o6luj/run") 2025-09-14 - 00:37:29 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-rw2o6luj/run (tmpfs) unmounted 2025-09-14 - 00:37:29 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:29 [6]: .. Running ("sync") 2025-09-14 - 00:37:29 [6]: .. Will try to umount path "/tmp/calamares-root-rw2o6luj/proc" 2025-09-14 - 00:37:29 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-rw2o6luj/proc") 2025-09-14 - 00:37:29 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-rw2o6luj/proc (proc) unmounted 2025-09-14 - 00:37:29 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:29 [6]: .. Running ("sync") 2025-09-14 - 00:37:29 [6]: .. Will try to umount path "/tmp/calamares-root-rw2o6luj/home" 2025-09-14 - 00:37:29 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-rw2o6luj/home") 2025-09-14 - 00:37:29 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-rw2o6luj/home (/dev/sde2) unmounted 2025-09-14 - 00:37:29 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:29 [6]: .. Running ("sync") 2025-09-14 - 00:37:29 [6]: .. Will try to umount path "/tmp/calamares-root-rw2o6luj/dev" 2025-09-14 - 00:37:29 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-rw2o6luj/dev") 2025-09-14 - 00:37:29 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-rw2o6luj/dev (udev) unmounted 2025-09-14 - 00:37:29 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:29 [6]: .. Running ("sync") 2025-09-14 - 00:37:29 [6]: .. Will try to umount path "/tmp/calamares-root-rw2o6luj/boot/efi" 2025-09-14 - 00:37:29 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-rw2o6luj/boot/efi") 2025-09-14 - 00:37:29 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-rw2o6luj/boot/efi (/dev/sde1) unmounted 2025-09-14 - 00:37:29 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:29 [6]: .. Running ("sync") 2025-09-14 - 00:37:29 [6]: .. Will try to umount path "/tmp/calamares-root-rw2o6luj" 2025-09-14 - 00:37:29 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-rw2o6luj") 2025-09-14 - 00:37:30 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-rw2o6luj (/dev/sdd11) unmounted 2025-09-14 - 00:37:30 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:30 [6]: .. Running ("sync") 2025-09-14 - 00:37:30 [6]: .. ClearTempMountsJob finished. Here's what was done: "Successfully unmounted /tmp/calamares-root-rw2o6luj/sys/firmware/efi/efivars." "Successfully unmounted /tmp/calamares-root-rw2o6luj/sys." "Successfully unmounted /tmp/calamares-root-rw2o6luj/run/udev." "Successfully unmounted /tmp/calamares-root-rw2o6luj/run/live/medium." "Successfully unmounted /tmp/calamares-root-rw2o6luj/run." "Successfully unmounted /tmp/calamares-root-rw2o6luj/proc." "Successfully unmounted /tmp/calamares-root-rw2o6luj/home." "Successfully unmounted /tmp/calamares-root-rw2o6luj/dev." "Successfully unmounted /tmp/calamares-root-rw2o6luj/boot/efi." "Successfully unmounted /tmp/calamares-root-rw2o6luj." 2025-09-14 - 00:37:30 [6]: virtual void Calamares::JobThread::run() Starting job "Clear mounts for partitioning operations on /dev/sdd" ( 3 / 42 ) 2025-09-14 - 00:37:30 [2]: QStringList getLVMVolumes() WARNING: this system does not seem to have LVM2 tools. 2025-09-14 - 00:37:30 [2]: QStringList getPVGroups(const QString&) WARNING: this system does not seem to have LVM2 tools. 2025-09-14 - 00:37:30 [6]: QStringList getPartitionsForDevice(const QString&) Reading from "/proc/partitions" looking for "sdd" 2025-09-14 - 00:37:30 [6]: virtual Calamares::JobResult ClearMountsJob::exec() ClearMountsJob finished. Here's what was done: "Successfully closed mapper device /dev/mapper/sdb1." 2025-09-14 - 00:37:30 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:31 [6]: .. Running ("sync") 2025-09-14 - 00:37:31 [6]: virtual void Calamares::JobThread::run() Starting job "Clear mounts for partitioning operations on /dev/sde" ( 4 / 42 ) 2025-09-14 - 00:37:31 [2]: QStringList getLVMVolumes() WARNING: this system does not seem to have LVM2 tools. 2025-09-14 - 00:37:31 [2]: QStringList getPVGroups(const QString&) WARNING: this system does not seem to have LVM2 tools. 2025-09-14 - 00:37:31 [6]: QStringList getPartitionsForDevice(const QString&) Reading from "/proc/partitions" looking for "sde" 2025-09-14 - 00:37:31 [6]: virtual Calamares::JobResult ClearMountsJob::exec() ClearMountsJob finished. Here's what was done: 2025-09-14 - 00:37:31 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:31 [6]: .. Running ("sync") 2025-09-14 - 00:37:31 [6]: virtual void Calamares::JobThread::run() Starting job "Set filesystem label on /dev/sdd11." ( 5 / 42 ) 2025-09-14 - 00:37:32 [6]: virtual void Calamares::JobThread::run() Starting job "Set filesystem label on /dev/sdd11." ( 6 / 42 ) 2025-09-14 - 00:37:32 [6]: virtual void Calamares::JobThread::run() Starting job "Set flags on partition /dev/sde1." ( 7 / 42 ) 2025-09-14 - 00:37:32 [6]: virtual Calamares::JobResult SetPartFlagsJob::exec() Setting flags on "/dev/sde" partition "/dev/sde1" "boot" 2025-09-14 - 00:37:33 [6]: virtual void Calamares::JobThread::run() Starting job "Set partition information" ( 8 / 42 ) 2025-09-14 - 00:37:33 [6]: QVariantList FillGlobalStorageJob::createPartitionList() const Building partition information map 2025-09-14 - 00:37:33 [6]: .. partitions on "/dev/sda" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sda1" "/dev/sda1" partlabel : "" partition-uuid (partuuid) : "PartUUID$a986a27e" parttype : "" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$c3127727" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. partitions on "/dev/sdc" 2025-09-14 - 00:37:33 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$a986a27e" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$d7362a08" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdc1" "/dev/sdc1" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$89d89b51" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$d7362a08" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$a986a27e" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$d7362a08" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdc2" "/dev/sdc2" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$cdd1dec5" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$e65eba37" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdc3" "/dev/sdc3" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$b35c6e46" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$4acd8c18" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdc4" "/dev/sdc4" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$42b91e3d" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$395cdbf6" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdc5" "/dev/sdc5" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$be98e3ce" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$93d3eb92" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. partitions on "/dev/sdd" 2025-09-14 - 00:37:33 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$a986a27e" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$d7362a08" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdd1" "/dev/sdd1" partlabel : "" partition-uuid (partuuid) : "PartUUID$3e9be390" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$d7be0382" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdd2" "/dev/sdd2" partlabel : "" partition-uuid (partuuid) : "PartUUID$e818ebae" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$34b2384e" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdd3" "/dev/sdd3" partlabel : "" partition-uuid (partuuid) : "PartUUID$ea0ecb95" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$a0b32d30" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdd4" "/dev/sdd4" partlabel : "" partition-uuid (partuuid) : "PartUUID$99ed8f87" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$110112ae" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdd5" "/dev/sdd5" partlabel : "" partition-uuid (partuuid) : "PartUUID$29c80c5e" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$91356984" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdd6" "/dev/sdd6" partlabel : "debian" partition-uuid (partuuid) : "PartUUID$33e4955e" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$5c3f574b" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdd7" "/dev/sdd7" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$ef41874b" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$91e4e232" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdd8" "/dev/sdd8" partlabel : "" partition-uuid (partuuid) : "PartUUID$f7857369" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$420c96c0" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdd11" "/dev/sdd11" partlabel : "" partition-uuid (partuuid) : "PartUUID$966dc934" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$8758cd5c" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$a986a27e" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$d7362a08" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdd9" "/dev/sdd9" partlabel : "" partition-uuid (partuuid) : "PartUUID$31051855" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$438b1deb" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$a986a27e" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$d7362a08" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sdd10" "/dev/sdd10" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$8e2c15f3" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$d7362a08" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$a986a27e" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$d7362a08" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. partitions on "/dev/sde" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sde1" "/dev/sde1" partlabel : "" partition-uuid (partuuid) : "PartUUID$a62767e2" parttype : "21686148-6449-6E6F-744E-656564454649" partattrs : "0" mountPoint: : "/boot/efi" fs: : "fat32" fsName : "fat32" filesystem-uuid (uuid) : "FSUUID$22a50a5e" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sde2" "/dev/sde2" partlabel : "" partition-uuid (partuuid) : "PartUUID$600c6687" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/home" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$df2f8d23" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "/dev/sde3" "/dev/sde3" partlabel : "" partition-uuid (partuuid) : "PartUUID$b12cae2" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$fe359c67" claimed : "false" 2025-09-14 - 00:37:33 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$a986a27e" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$d7362a08" claimed : "false" 2025-09-14 - 00:37:33 [6]: virtual Calamares::JobResult FillGlobalStorageJob::exec() Saving partition information map to GlobalStorage["partitions"] 2025-09-14 - 00:37:33 [6]: virtual Calamares::JobResult FillGlobalStorageJob::exec() FillGlobalStorageJob writing empty bootLoader value 2025-09-14 - 00:37:33 [6]: virtual void Calamares::JobThread::run() Starting job "Manage auto-mount settings" ( 9 / 42 ) 2025-09-14 - 00:37:33 [6]: virtual Calamares::JobResult AutoMountManagementJob::exec() Restore automount settings 2025-09-14 - 00:37:33 [6]: .. 2 reply () 2025-09-14 - 00:37:33 [6]: .. 2 reply (QVariant(bool, false)) 2025-09-14 - 00:37:33 [6]: virtual void Calamares::JobThread::run() Starting job "mount" ( 10 / 42 ) 2025-09-14 - 00:37:33 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/mount/main.py" 2025-09-14 - 00:37:33 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 00:37:33 [6]: .. Job description from pretty_name "mount" = "Mounting partitions." 2025-09-14 - 00:37:33 [6]: .. Running ("mount", "-t", "ext4", "/dev/sdd11", "/tmp/calamares-root-a0l41lry/") 2025-09-14 - 00:37:33 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:33 [6]: .. Running ("sync") 2025-09-14 - 00:37:33 [6]: .. Running ("mount", "-t", "vfat", "/dev/sde1", "/tmp/calamares-root-a0l41lry/boot/efi") 2025-09-14 - 00:37:33 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:33 [6]: .. Running ("sync") 2025-09-14 - 00:37:33 [6]: .. Running ("mount", "-o", "bind", "/dev", "/tmp/calamares-root-a0l41lry/dev") 2025-09-14 - 00:37:33 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:33 [6]: .. Running ("sync") 2025-09-14 - 00:37:33 [6]: .. Running ("mount", "-t", "ext4", "/dev/sde2", "/tmp/calamares-root-a0l41lry/home") 2025-09-14 - 00:37:33 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:33 [6]: .. Running ("sync") 2025-09-14 - 00:37:33 [6]: .. Running ("mount", "-t", "proc", "proc", "/tmp/calamares-root-a0l41lry/proc") 2025-09-14 - 00:37:33 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:33 [6]: .. Running ("sync") 2025-09-14 - 00:37:34 [6]: .. Running ("mount", "-t", "tmpfs", "tmpfs", "/tmp/calamares-root-a0l41lry/run") 2025-09-14 - 00:37:34 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:34 [6]: .. Running ("sync") 2025-09-14 - 00:37:34 [6]: .. Running ("mount", "-o", "bind", "/run/udev", "/tmp/calamares-root-a0l41lry/run/udev") 2025-09-14 - 00:37:34 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:34 [6]: .. Running ("sync") 2025-09-14 - 00:37:34 [6]: .. Running ("mount", "-t", "sysfs", "sys", "/tmp/calamares-root-a0l41lry/sys") 2025-09-14 - 00:37:34 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:34 [6]: .. Running ("sync") 2025-09-14 - 00:37:34 [6]: .. Running ("mount", "-t", "efivarfs", "efivarfs", "/tmp/calamares-root-a0l41lry/sys/firmware/efi/efivars") 2025-09-14 - 00:37:34 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:34 [6]: .. Running ("sync") 2025-09-14 - 00:37:34 [6]: virtual void Calamares::JobThread::run() Starting job "unpackfs" ( 11 / 42 ) 2025-09-14 - 00:37:34 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/unpackfs/main.py" 2025-09-14 - 00:37:34 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 00:37:34 [6]: .. Job description from pretty_name "unpackfs" = "Filling up filesystems." 2025-09-14 - 00:37:34 [6]: .. Running ("mount", "-t", "squashfs", "-o", "loop", "/run/live/medium/live/filesystem.squashfs", "/tmp/tmpl04_t7vh/filesystem") 2025-09-14 - 00:37:34 [6]: .. Finished. Exit code: 0 output: mount: /tmp/tmpl04_t7vh/filesystem: WARNING: source write-protected, mounted read-only. 2025-09-14 - 00:37:34 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 00:37:34 [6]: .. Running ("sync") 2025-09-14 - 00:37:34 [6]: .. Running ("unsquashfs", "-l", "/run/live/medium/live/filesystem.squashfs") 2025-09-14 - 00:37:35 [6]: .. Running ("rsync", "-aHAXr", "--filter=-x trusted.overlay.*", "--exclude", "/proc/", "--exclude", "/sys/", "--exclude", "/dev/", "--exclude", "/run/", "--exclude", "/run/udev/", "--exclude", "/sys/firmware/efi/efivars/", "--progress", "/tmp/tmpl04_t7vh/filesystem/", "/tmp/calamares-root-a0l41lry") 2025-09-14 - 00:38:09 [6]: virtual void Calamares::JobThread::run() Starting job " Run command '/usr/sbin/sources-media'." ( 12 / 42 ) 2025-09-14 - 00:38:09 [6]: .. Running ("/bin/sh", "-c", "/usr/sbin/sources-media") 2025-09-14 - 00:38:18 [6]: .. Finished. Exit code: 0 output: Get:1 file:/run/live/medium bookworm InRelease Ign:1 file:/run/live/medium bookworm InRelease Ign:2 http://www.deb-multimedia.org bookworm InRelease Ign:3 https://deb.debian.org/debian bookworm InRelease Ign:4 https://packages.mozilla.org/apt mozilla InRelease Ign:5 http://repo.peppermintos.com/packages bookworm InRelease Ign:6 https://security.debian.org/debian-security bookworm-security InRelease Ign:7 https://deb.debian.org/debian bookworm-updates InRelease Get:8 file:/run/live/medium bookworm Release [1544 B] Get:8 file:/run/live/medium bookworm Release [1544 B] Get:9 file:/run/live/medium bookworm Release.gpg Ign:9 file:/run/live/medium bookworm Release.gpg Ign:3 https://deb.debian.org/debian bookworm InRelease Ign:6 https://security.debian.org/debian-security bookworm-security InRelease Ign:4 https://packages.mozilla.org/apt mozilla InRelease Ign:2 http://www.deb-multimedia.org bookworm InRelease Ign:7 https://deb.debian.org/debian bookworm-updates InRelease Ign:5 http://repo.peppermintos.com/packages bookworm InRelease Ign:3 https://deb.debian.org/debian bookworm InRelease Ign:6 https://security.debian.org/debian-security bookworm-security InRelease Ign:4 https://packages.mozilla.org/apt mozilla InRelease Ign:2 http://www.deb-multimedia.org bookworm InRelease Ign:7 https://deb.debian.org/debian bookworm-updates InRelease Ign:5 http://repo.peppermintos.com/packages bookworm InRelease Err:3 https://deb.debian.org/debian bookworm InRelease Temporary failure resolving 'deb.debian.org' Err:6 https://security.debian.org/debian-security bookworm-security InRelease Temporary failure resolving 'security.debian.org' Err:4 https://packages.mozilla.org/apt mozilla InRelease Temporary failure resolving 'packages.mozilla.org' Err:2 http://www.deb-multimedia.org bookworm InRelease Temporary failure resolving 'www.deb-multimedia.org' Err:7 https://deb.debian.org/debian bookworm-updates InRelease Temporary failure resolving 'deb.debian.org' Err:5 http://repo.peppermintos.com/packages bookworm InRelease Temporary failure resolving 'repo.peppermintos.com' Reading package lists... W: Invalid 'Date' entry in Release file /var/lib/apt/lists/_run_live_medium_dists_bookworm_Release W: Failed to fetch https://deb.debian.org/debian/dists/bookworm/InRelease Temporary failure resolving 'deb.debian.org' W: Failed to fetch https://security.debian.org/debian-security/dists/bookworm-security/InRelease Temporary failure resolving 'security.debian.org' W: Failed to fetch https://deb.debian.org/debian/dists/bookworm-updates/InRelease Temporary failure resolving 'deb.debian.org' W: Failed to fetch https://packages.mozilla.org/apt/dists/mozilla/InRelease Temporary failure resolving 'packages.mozilla.org' W: Failed to fetch http://www.deb-multimedia.org/dists/bookworm/InRelease Temporary failure resolving 'www.deb-multimedia.org' W: Failed to fetch http://repo.peppermintos.com/packages/dists/bookworm/InRelease Temporary failure resolving 'repo.peppermintos.com' W: Some index files failed to download. They have been ignored, or old ones used instead. rmdir: failed to remove '/tmp/calamares-root-a0l41lry/run/live/medium': Device or resource busy rmdir: failed to remove '/tmp/calamares-root-a0l41lry/run/live': Directory not empty 2025-09-14 - 00:38:18 [6]: virtual void Calamares::JobThread::run() Starting job "Generate machine-id." ( 13 / 42 ) 2025-09-14 - 00:38:18 [2]: Calamares::JobResult MachineId::createEntropy(EntropyGeneration, const QString&, const QString&) WARNING: Host system entropy does not exist at "/var/lib/urandom/random-seed" 2025-09-14 - 00:38:18 [6]: .. Running ("systemd-machine-id-setup") 2025-09-14 - 00:38:19 [6]: .. Finished. Exit code: 0 output: Initializing machine ID from random generator. 2025-09-14 - 00:38:19 [6]: .. Running ("ln", "-sf", "/etc/machine-id", "/var/lib/dbus/machine-id") 2025-09-14 - 00:38:19 [6]: virtual void Calamares::JobThread::run() Starting job "fstab" ( 14 / 42 ) 2025-09-14 - 00:38:19 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/fstab/main.py" 2025-09-14 - 00:38:19 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 00:38:19 [6]: .. Job description from pretty_name "fstab" = "Writing fstab." 2025-09-14 - 00:38:19 [6]: virtual void Calamares::JobThread::run() Starting job "Set timezone to Asia/Shanghai" ( 15 / 42 ) 2025-09-14 - 00:38:19 [6]: .. Running ("rm", "-f", "/etc/localtime") 2025-09-14 - 00:38:19 [6]: .. Running ("ln", "-s", "/usr/share/zoneinfo/Asia/Shanghai", "/etc/localtime") 2025-09-14 - 00:38:19 [6]: virtual void Calamares::JobThread::run() Starting job "Set keyboard model to pc105, layout to us-" ( 16 / 42 ) 2025-09-14 - 00:38:19 [6]: virtual Calamares::JobResult SetKeyboardLayoutJob::exec() Executing SetKeyboardLayoutJob 2025-09-14 - 00:38:19 [6]: bool SetKeyboardLayoutJob::writeVConsoleData(const QString&, const QString&) const Writing vconsole data to "/tmp/calamares-root-a0l41lry/etc/vconsole.conf" 2025-09-14 - 00:38:19 [6]: QString SetKeyboardLayoutJob::findConvertedKeymap(const QString&) const Looking for converted keymap in "" 2025-09-14 - 00:38:19 [6]: QString findLegacyKeymap(const QString&, const QString&, const QString&) Looking for legacy keymap "us" "pc105" "" in QRC 2025-09-14 - 00:38:19 [6]: .. Found legacy keymap "us" with score 11 2025-09-14 - 00:38:19 [6]: .. Found legacy keymap "us-acentos" with score 11 2025-09-14 - 00:38:19 [6]: .. Found legacy keymap "dvorak" with score 11 2025-09-14 - 00:38:19 [6]: .. Found legacy keymap "dvorak" with score 11 2025-09-14 - 00:38:19 [6]: .. Written KEYMAP= "us" to vconsole.conf 0 2025-09-14 - 00:38:19 [6]: bool SetKeyboardLayoutJob::writeX11Data(const QString&) const Writing X11 configuration to "/tmp/calamares-root-a0l41lry/etc/X11/xorg.conf.d/00-keyboard.conf" 2025-09-14 - 00:38:19 [6]: .. Written XkbLayout "us" ; XkbModel "pc105" ; XkbVariant "" to X.org file "/tmp/calamares-root-a0l41lry/etc/X11/xorg.conf.d/00-keyboard.conf" 0 2025-09-14 - 00:38:19 [6]: bool SetKeyboardLayoutJob::writeDefaultKeyboardData(const QString&) const Writing default keyboard data to "/tmp/calamares-root-a0l41lry/etc/default/keyboard" 2025-09-14 - 00:38:19 [6]: .. Written XKBMODEL "pc105" ; XKBLAYOUT "us" ; XKBVARIANT "" to /etc/default/keyboard file "/tmp/calamares-root-a0l41lry/etc/default/keyboard" 0 2025-09-14 - 00:38:19 [6]: virtual void Calamares::JobThread::run() Starting job "localecfg" ( 17 / 42 ) 2025-09-14 - 00:38:19 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/localecfg/main.py" 2025-09-14 - 00:38:19 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 00:38:19 [6]: .. Job description from pretty_name "localecfg" = "Configuring locales." 2025-09-14 - 00:38:19 [6]: .. Running ("locale-gen") 2025-09-14 - 00:38:22 [6]: .. Finished. Exit code: 0 output: Generating locales (this might take a while)... en_US.UTF-8... done zh_CN.UTF-8... done Generation complete. 2025-09-14 - 00:38:22 [6]: [PYTHON JOB]: "/tmp/calamares-root-a0l41lry/etc/locale.gen done" 2025-09-14 - 00:38:22 [6]: [PYTHON JOB]: "/tmp/calamares-root-a0l41lry/etc/locale.conf done" 2025-09-14 - 00:38:22 [6]: [PYTHON JOB]: "/tmp/calamares-root-a0l41lry/etc/default done" 2025-09-14 - 00:38:22 [6]: virtual void Calamares::JobThread::run() Starting job "Configure
    sudo
    users." ( 18 / 42 ) 2025-09-14 - 00:38:22 [6]: virtual void Calamares::JobThread::run() Starting job "Preparing groups." ( 19 / 42 ) 2025-09-14 - 00:38:22 [6]: virtual void Calamares::JobThread::run() Starting job "Create user vincent" ( 20 / 42 ) 2025-09-14 - 00:38:22 [6]: virtual Calamares::JobResult CreateUserJob::exec() [CREATEUSER]: creating user 2025-09-14 - 00:38:22 [6]: .. Running ("useradd", "-m", "-U", "-s", "/bin/bash", "-c", "vincent", "vincent") 2025-09-14 - 00:38:23 [6]: .. Finished. Exit code: 0 output: useradd: warning: the home directory /home/vincent already exists. useradd: Not copying any file from skel directory into it. 2025-09-14 - 00:38:23 [6]: .. Running "usermod" "-aG" "cdrom,floppy,sudo,audio,dip,video,plugdev,netdev,lpadmin,scanner,bluetooth" "vincent" 2025-09-14 - 00:38:23 [6]: .. Running ("chown", "-R", "vincent:vincent", "/home/vincent") 2025-09-14 - 00:38:25 [6]: virtual void Calamares::JobThread::run() Starting job "Set password for user vincent" ( 21 / 42 ) 2025-09-14 - 00:38:25 [6]: .. Running "usermod" "-p" "vincent" 2025-09-14 - 00:38:25 [6]: virtual void Calamares::JobThread::run() Starting job "Set password for user root" ( 22 / 42 ) 2025-09-14 - 00:38:25 [6]: .. Running ("passwd", "-dl", "root") 2025-09-14 - 00:38:25 [6]: .. Finished. Exit code: 0 output: passwd: password changed. 2025-09-14 - 00:38:25 [6]: virtual void Calamares::JobThread::run() Starting job "Set hostname so" ( 23 / 42 ) 2025-09-14 - 00:38:25 [6]: virtual void Calamares::JobThread::run() Starting job "displaymanager" ( 24 / 42 ) 2025-09-14 - 00:38:25 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/displaymanager/main.py" 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 00:38:25 [6]: .. Job description from __doc__ "displaymanager" = "Configure display managers." 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: "slim selected but not installed" 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: "sddm selected but not installed" 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: "gdm selected but not installed" 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: "mdm selected but not installed" 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: "lxdm selected but not installed" 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: "kdm selected but not installed" 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: "Using rootMountPoint '/tmp/calamares-root-a0l41lry'" 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: ".. selected DE xfce" 2025-09-14 - 00:38:25 [2]: boost::python::api::object CalamaresPython::GlobalStoragePythonWrapper::value(const std::string&) const WARNING: Unknown GS key autoLoginUser 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: "Unsetting autologin." 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: "found greeter lightdm-gtk-greeter" 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: "lightdm-gtk-greeter configured as greeter." 2025-09-14 - 00:38:25 [6]: virtual void Calamares::JobThread::run() Starting job "networkcfg" ( 25 / 42 ) 2025-09-14 - 00:38:25 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/networkcfg/main.py" 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 00:38:25 [6]: .. Job description from pretty_name "networkcfg" = "Saving network configuration." 2025-09-14 - 00:38:25 [6]: virtual void Calamares::JobThread::run() Starting job "hwclock" ( 26 / 42 ) 2025-09-14 - 00:38:25 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/hwclock/main.py" 2025-09-14 - 00:38:25 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 00:38:25 [6]: .. Job description from pretty_name "hwclock" = "Setting hardware clock." 2025-09-14 - 00:38:25 [6]: .. Running ("hwclock", "--systohc", "--utc") 2025-09-14 - 00:38:26 [6]: [PYTHON JOB]: "Hwclock set using RTC method." 2025-09-14 - 00:38:26 [6]: virtual void Calamares::JobThread::run() Starting job "services-systemd" ( 27 / 42 ) 2025-09-14 - 00:38:26 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/services-systemd/main.py" 2025-09-14 - 00:38:26 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 00:38:26 [6]: .. Job description from pretty_name "services-systemd" = "Configure systemd services" 2025-09-14 - 00:38:26 [6]: .. Running ("systemctl", "enable", "fstrim.timer") 2025-09-14 - 00:38:26 [6]: virtual void Calamares::JobThread::run() Starting job " Run command '/usr/sbin/bootloader-config'." ( 28 / 42 ) 2025-09-14 - 00:38:26 [6]: .. Running ("/bin/sh", "-c", "/usr/sbin/bootloader-config") 2025-09-14 - 00:48:26 [2]: Calamares::Utils::ProcessResult Calamares::Utils::Runner::run() WARNING: Process "/bin/sh" timed out after 600000 ms. Output so far: Get:1 file:/run/live/medium bookworm InRelease Ign:1 file:/run/live/medium bookworm InRelease Get:2 file:/run/live/medium bookworm Release [1544 B] Get:2 file:/run/live/medium bookworm Release [1544 B] Get:3 file:/run/live/medium bookworm Release.gpg Ign:3 file:/run/live/medium bookworm Release.gpg Get:4 https://security.debian.org/debian-security bookworm-security InRelease [48.0 kB] Ign:5 http://www.deb-multimedia.org bookworm InRelease Get:6 https://security.debian.org/debian-security bookworm-security/non-free-firmware Sources [796 B] Get:7 https://security.debian.org/debian-security bookworm-security/main Sources [151 kB] Get:8 https://packages.mozilla.org/apt mozilla InRelease [1522 B] Get:9 https://deb.debian.org/debian bookworm InRelease [151 kB] Get:10 https://packages.mozilla.org/apt mozilla/main amd64 Packages [95.6 kB] Get:12 https://packages.mozilla.org/apt mozilla/main all Packages [5042 kB] Ign:5 http://www.deb-multimedia.org bookworm InRelease Get:13 https://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] Ign:5 http://www.deb-multimedia.org bookworm InRelease Get:11 https://repo.peppermintos.com/packages bookworm InRelease [17.4 kB] Get:14 https://repo.peppermintos.com/packages bookworm/main amd64 Packages [68.3 kB] Err:5 http://www.deb-multimedia.org bookworm InRelease Connection failed [IP: 158.69.254.113 80] Get:15 https://deb.debian.org/debian bookworm/non-free-firmware Sources [7148 B] Get:16 https://security.debian.org/debian-security bookworm-security/main amd64 Packages [278 kB] Get:17 https://deb.debian.org/debian bookworm/contrib Sources [51.1 kB] Get:18 https://security.debian.org/debian-security bookworm-security/main Translation-en [168 kB] Get:19 https://security.debian.org/debian-security bookworm-security/contrib amd64 Packages [896 B] Get:20 https://security.debian.org/debian-security bookworm-security/contrib Translation-en [652 B] Get:21 https://security.debian.org/debian-security bookworm-security/non-free-firmware amd64 Packages [688 B] Get:22 https://deb.debian.org/debian bookworm/main Sources [9494 kB] 2025-09-14 - 00:48:26 [2]: QProcess: Destroyed while process ("env") is still running. 2025-09-14 - 00:48:26 [6]: virtual void Calamares::JobThread::run() Skipping non-emergency job "grubcfg" 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job "bootloader" 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job "packages" 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job "Configuring LUKS key file." 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job "Configuring encrypted swap." 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job "plymouthcfg" 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job "initramfscfg" 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job "Creating initramfs." 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job " Run command '/usr/sbin/sources-media -u'." 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job " Run command '/usr/sbin/sources-final'." 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job " Run command '/usr/sbin/update-system'." 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job " Run command '/usr/sbin/grub-defaults'." 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job "Shell Processes Job" 2025-09-14 - 00:48:26 [6]: .. Skipping non-emergency job "Unmount file systems." 2025-09-14 - 00:48:26 [1]: void Calamares::ViewManager::onInstallationFailed(const QString&, const QString&) ERROR: Installation failed: "External command failed to finish." 2025-09-14 - 00:48:26 [6]: .. - message: "External command failed to finish." 2025-09-14 - 00:48:26 [6]: .. - details: Command /usr/sbin/bootloader-config failed to finish in 600 seconds. There was no output from the command. 2025-09-14 - 00:48:26 [6]: void Calamares::ViewManager::onInstallationFailed(const QString&, const QString&) Calamares will quit when the dialog closes. 2025-09-14 - 00:48:26 [6]: void Config::doNotify(bool, bool) Notification not sent; completion: failed 2025-09-14 - 01:45:17 [6]: void Config::doRestart(bool) mode= "never" user wants restart? false force restart? false 2025-09-14 - 01:45:17 [8]: Shutting down Calamares... 2025-09-14 - 01:45:17 [8]: Finished shutdown. 2025-09-14 - 01:45:22 [8]: Shutting down Calamares... 2025-09-14 - 01:45:22 [8]: Finished shutdown. 2025-09-14 - 01:45:27 [8]: Shutting down Calamares... 2025-09-14 - 01:45:27 [8]: Finished shutdown. 2025-09-14 - 01:45:30 [8]: Shutting down Calamares... 2025-09-14 - 01:45:30 [8]: Finished shutdown. === START CALAMARES 3.2.61 2025-09-14 - 02:27:47 [6]: void CalamaresApplication::init() Calamares version: 3.2.61 2025-09-14 - 02:27:47 [6]: .. languages: "ar, as, ast, az, az_AZ, be, bg, bn, ca, ca@valencia, cs_CZ, da, de, el, en, en_GB, eo, es, es_MX, et, eu, fa, fi_FI, fr, fur, gl, he, hi, hr, hu, id, is, it_IT, ja, ko, lt, ml, mr, nb, nl, oc, pl, pt_BR, pt_PT, ro, ru, si, sk, sl, sq, sr, sr@latin, sv, tg, th, tr_TR, uk, vi, zh_CN, zh_TW" 2025-09-14 - 02:27:47 [6]: bool CalamaresUtils::initQmlModulesDir() Using Calamares QML directory "/usr/share/calamares/qml" 2025-09-14 - 02:27:47 [6]: Calamares::Branding::Branding(const QString&, QObject*) Using Calamares branding file at "/etc/calamares/branding/peppermint/branding.desc" 2025-09-14 - 02:27:47 [2]: void Calamares::flavorAndSide(const YAML::Node&, const char*, Branding::PanelFlavor&, Branding::PanelSide&) WARNING: Branding setting for sidebar is missing, using "widget" "left" 2025-09-14 - 02:27:47 [2]: void Calamares::flavorAndSide(const YAML::Node&, const char*, Branding::PanelFlavor&, Branding::PanelSide&) WARNING: Branding setting for navigation is missing, using "widget" "bottom" 2025-09-14 - 02:27:47 [2]: void Calamares::Branding::initSlideshowSettings(const YAML::Node&) WARNING: Invalid or missing *slideshowAPI* in branding file. 2025-09-14 - 02:27:47 [2]: Calamares::Branding::Branding(const QString&, QObject*) WARNING: the branding component "/etc/calamares/branding/peppermint" does not ship translations. 2025-09-14 - 02:27:47 [6]: Calamares::Branding::Branding(const QString&, QObject*) Loaded branding component "peppermint" 2025-09-14 - 02:27:47 [6]: .. Loaded QRC translation "tz_" "en_US" 2025-09-14 - 02:27:47 [6]: .. Loaded QRC translation "calamares_" "en_US" 2025-09-14 - 02:27:47 [6]: .. STARTUP: initSettings, initQmlPath, initBranding done 2025-09-14 - 02:27:47 [6]: .. STARTUP: initModuleManager: module init started 2025-09-14 - 02:27:47 [6]: void Calamares::ModuleManager::doInit() Found 67 modules 2025-09-14 - 02:27:47 [6]: void CalamaresApplication::initView() STARTUP: initModuleManager: all modules init done 2025-09-14 - 02:27:47 [6]: void CalamaresApplication::initView() STARTUP: initJobQueue done 2025-09-14 - 02:27:47 [6]: CalamaresWindow::CalamaresWindow(QWidget*) Available desktop QSize(1920, 1047) minimum size QSize(1024, 520) 2025-09-14 - 02:27:47 [6]: .. Proposed window size: 1024 520 2025-09-14 - 02:27:47 [6]: void CalamaresApplication::initView() STARTUP: CalamaresWindow created; loadModules started 2025-09-14 - 02:27:47 [6]: void Config::initLanguages() Trying to match locale "en_US" 2025-09-14 - 02:27:47 [6]: void Config::initLanguages() Trying to match locale QLocale(English, Latin, United States) 2025-09-14 - 02:27:47 [6]: void Config::setLocaleIndex(int) Index 14 Selected locale "en" 2025-09-14 - 02:27:47 [6]: .. Loaded QRC translation "tz_" "en" 2025-09-14 - 02:27:47 [6]: .. Loaded QRC translation "calamares_" "en" 2025-09-14 - 02:27:47 [2]: bool getCheckInternetUrls(const QVariantMap&) WARNING: GeneralRequirements entry 'internetCheckUrl' is undefined in welcome.conf, reverting to default ( "http://example.com" ). 2025-09-14 - 02:27:47 [2]: void GeneralRequirements::setConfigurationMap(const QVariantMap&) WARNING: GeneralRequirements configuration map: check : storage, ram, power, root required : storage, ram, root requiredRam : 1 requiredStorage : 10 2025-09-14 - 02:27:48 [2]: OpenType support missing for "Cantarell", script 12 2025-09-14 - 02:27:48 [2]: OpenType support missing for "Cantarell", script 11 2025-09-14 - 02:27:48 [2]: OpenType support missing for "Cantarell", script 19 2025-09-14 - 02:27:48 [2]: OpenType support missing for "Cantarell", script 20 2025-09-14 - 02:27:48 [6]: virtual void Calamares::ViewModule::loadSelf() ViewModule "welcome@welcome" loading complete. 2025-09-14 - 02:27:48 [6]: QStringList loadLocales(const QString&) Loading locales from "/usr/share/i18n/SUPPORTED" 2025-09-14 - 02:27:48 [6]: .. Read 501 lines 2025-09-14 - 02:27:48 [6]: .. After filtering 318 lines 2025-09-14 - 02:27:48 [6]: virtual void Calamares::ViewModule::loadSelf() ViewModule "locale@locale" loading complete. 2025-09-14 - 02:27:48 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "keyboard" found anywhere at "/root/src/modules/keyboard/keyboard.conf" "/etc/calamares/modules/keyboard.conf" "/usr/share/calamares/modules/keyboard.conf" 2025-09-14 - 02:27:48 [6]: KeyboardModelsModel::KeyboardModelsModel(QObject*) Loaded 188 keyboard models 2025-09-14 - 02:27:48 [6]: KeyboardPage::KeyboardPage(Config*, QWidget*) Variants now total= 0 selected= -1 2025-09-14 - 02:27:48 [6]: .. Loaded QRC translation "kb_" "en" 2025-09-14 - 02:27:48 [6]: void Config::detectCurrentKeyboardLayout() ("pc", "us", "inet(evdev)\"") 2025-09-14 - 02:27:48 [6]: virtual void Calamares::ViewModule::loadSelf() ViewModule "keyboard@keyboard" loading complete. 2025-09-14 - 02:27:49 [6]: CalamaresUtils::Partition::InternalManager::InternalManager() KPMCore backend starting .. 2025-09-14 - 02:27:49 [6]: Loaded backend plugin: "pmsfdiskbackendplugin" 2025-09-14 - 02:27:49 [6]: .. Backend @0x5578f402f000 "pmsfdiskbackendplugin" "1" 2025-09-14 - 02:27:49 [2]: virtual void PartitionViewStep::setConfigurationMap(const QVariantMap&) WARNING: Partition-module setting *defaultPartitionTableType* is unset, will use gpt for efi or msdos for bios 2025-09-14 - 02:27:49 [6]: virtual void Calamares::ViewModule::loadSelf() ViewModule "partition@partition" loading complete. 2025-09-14 - 02:27:49 [6]: virtual void Calamares::ViewModule::loadSelf() ViewModule "users@users" loading complete. 2025-09-14 - 02:27:49 [6]: virtual void Calamares::ViewModule::loadSelf() ViewModule "summary@summary" loading complete. 2025-09-14 - 02:27:49 [6]: void Calamares::ModuleManager::loadModules() Module "partition@partition" already loaded. 2025-09-14 - 02:27:49 [6]: Calamares::SlideshowQML::SlideshowQML(QWidget*) QML import paths: "/usr/share/calamares/qml" "/usr/bin" "qrc:/qt-project.org/imports" "/usr/lib/x86_64-linux-gnu/qt5/qml" 2025-09-14 - 02:27:49 [2]: QThread::setPriority: Cannot set priority, thread is not running 2025-09-14 - 02:27:49 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "sources-media" found anywhere at "/root/src/modules/sources-media/sources-media.conf" "/etc/calamares/modules/sources-media.conf" "/usr/share/calamares/modules/sources-media.conf" 2025-09-14 - 02:27:49 [2]: virtual void MachineIdJob::setConfigurationMap(const QVariantMap&) WARNING: MachineId: configuration setting *symlink* is deprecated, use *dbus-symlink*. 2025-09-14 - 02:27:49 [6]: virtual void Calamares::CppJobModule::loadSelf() CppJobModule "machineid@machineid" loading complete. 2025-09-14 - 02:27:49 [6]: void Calamares::ModuleManager::loadModules() Module "locale@locale" already loaded. 2025-09-14 - 02:27:49 [6]: void Calamares::ModuleManager::loadModules() Module "keyboard@keyboard" already loaded. 2025-09-14 - 02:27:49 [6]: void Calamares::ModuleManager::loadModules() Module "users@users" already loaded. 2025-09-14 - 02:27:49 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "bootloader-config" found anywhere at "/root/src/modules/bootloader-config/bootloader-config.conf" "/etc/calamares/modules/bootloader-config.conf" "/usr/share/calamares/modules/bootloader-config.conf" 2025-09-14 - 02:27:49 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "grubcfg" found anywhere at "/root/src/modules/grubcfg/grubcfg.conf" "/etc/calamares/modules/grubcfg.conf" "/usr/share/calamares/modules/grubcfg.conf" 2025-09-14 - 02:27:49 [6]: virtual void Calamares::CppJobModule::loadSelf() CppJobModule "luksbootkeyfile@luksbootkeyfile" loading complete. 2025-09-14 - 02:27:49 [6]: virtual void Calamares::CppJobModule::loadSelf() CppJobModule "luksopenswaphookcfg@luksopenswaphookcfg" loading complete. 2025-09-14 - 02:27:49 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "plymouthcfg" found anywhere at "/root/src/modules/plymouthcfg/plymouthcfg.conf" "/etc/calamares/modules/plymouthcfg.conf" "/usr/share/calamares/modules/plymouthcfg.conf" 2025-09-14 - 02:27:49 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "initramfs" found anywhere at "/root/src/modules/initramfs/initramfs.conf" "/etc/calamares/modules/initramfs.conf" "/usr/share/calamares/modules/initramfs.conf" 2025-09-14 - 02:27:49 [6]: virtual void Calamares::CppJobModule::loadSelf() CppJobModule "initramfs@initramfs" loading complete. 2025-09-14 - 02:27:49 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "sources-media-unmount" found anywhere at "/root/src/modules/sources-media-unmount/sources-media-unmount.conf" "/etc/calamares/modules/sources-media-unmount.conf" "/usr/share/calamares/modules/sources-media-unmount.conf" 2025-09-14 - 02:27:49 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "sources-final" found anywhere at "/root/src/modules/sources-final/sources-final.conf" "/etc/calamares/modules/sources-final.conf" "/usr/share/calamares/modules/sources-final.conf" 2025-09-14 - 02:27:49 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "update-system" found anywhere at "/root/src/modules/update-system/update-system.conf" "/etc/calamares/modules/update-system.conf" "/usr/share/calamares/modules/update-system.conf" 2025-09-14 - 02:27:49 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "grub-defaults" found anywhere at "/root/src/modules/grub-defaults/grub-defaults.conf" "/etc/calamares/modules/grub-defaults.conf" "/usr/share/calamares/modules/grub-defaults.conf" 2025-09-14 - 02:27:49 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "shellprocess" found anywhere at "/root/src/modules/shellprocess/shellprocess.conf" "/etc/calamares/modules/shellprocess.conf" "/usr/share/calamares/modules/shellprocess.conf" 2025-09-14 - 02:27:49 [2]: virtual void ShellProcessJob::setConfigurationMap(const QVariantMap&) WARNING: No script given for ShellProcessJob "shellprocess@shellprocess" 2025-09-14 - 02:27:49 [6]: virtual void Calamares::CppJobModule::loadSelf() CppJobModule "shellprocess@shellprocess" loading complete. 2025-09-14 - 02:27:49 [2]: void Calamares::Module::loadConfigurationFile(const QString&) WARNING: No config file for "umount" found anywhere at "/root/src/modules/umount/umount.conf" "/etc/calamares/modules/umount.conf" "/usr/share/calamares/modules/umount.conf" 2025-09-14 - 02:27:49 [6]: virtual void Calamares::CppJobModule::loadSelf() CppJobModule "umount@umount" loading complete. 2025-09-14 - 02:27:49 [2]: void Config::setConfigurationMap(const QVariantMap&) WARNING: Configuring the finished module with deprecated restartNowEnabled settings 2025-09-14 - 02:27:49 [6]: virtual void Calamares::ViewModule::loadSelf() ViewModule "finished@finished" loading complete. 2025-09-14 - 02:27:49 [6]: .. Loaded QRC translation "kb_" "en" 2025-09-14 - 02:27:49 [6]: void CalamaresApplication::initViewSteps() STARTUP: loadModules for all modules done 2025-09-14 - 02:27:49 [6]: void Calamares::ModuleManager::checkRequirements() Checking module requirements .. 2025-09-14 - 02:27:49 [6]: void CalamaresApplication::initViewSteps() STARTUP: Window now visible and ProgressTreeView populated 2025-09-14 - 02:27:49 [6]: .. 8 view steps loaded. 2025-09-14 - 02:27:49 [6]: Calamares::RequirementsList GeneralRequirements::checkRequirements() GeneralRequirements output: storage : 10737418240 enoughStorage : true RAM : 1073741824 enoughRam : true hasPower : true hasInternet : unchecked isRoot : true 2025-09-14 - 02:27:49 [6]: void Calamares::RequirementsChecker::addCheckedRequirements(Calamares::Module*) Got 4 requirement results from "welcome" 2025-09-14 - 02:27:49 [6]: void Config::xkbApply() xkbmap selection changed to: "us" - "" 2025-09-14 - 02:27:50 [6]: 488377855 5086312 4096 2025-09-14 - 02:27:50 [6]: smartctl initialization failed for "/dev/sdb" : No such file or directory 2025-09-14 - 02:27:50 [6]: error during smart output parsing for "/dev/sdb" : Success 2025-09-14 - 02:27:50 [6]: void Calamares::RequirementsChecker::reportProgress() Remaining modules: 1 "partition" 2025-09-14 - 02:27:50 [2]: unknown file system type "" on "/dev/sdc1" 2025-09-14 - 02:27:50 [6]: 39322111 28241190 4096 2025-09-14 - 02:27:50 [6]: 312476159 18882935 4096 2025-09-14 - 02:27:51 [6]: 312421329 91324050 4096 2025-09-14 - 02:27:51 [6]: void Calamares::RequirementsChecker::reportProgress() Remaining modules: 1 "partition" 2025-09-14 - 02:27:52 [2]: unknown file system type "" on "/dev/sdd10" 2025-09-14 - 02:27:52 [6]: QList PartUtils::getDevices(DeviceType) Removing unsuitable devices: 5 candidates. 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sda") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sda: PTUUID="e4ded793" PTTYPE="dos" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sda1") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sda1: LABEL="1.81TB" BLOCK_SIZE="512" UUID="E214731E1472F4BF" TYPE="ntfs" PARTUUID="e4ded793-01" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdb") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdb: PTUUID="0a7fb362" PTTYPE="dos" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdb1") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdb1: LABEL="Ventoy" UUID="4E21-0000" BLOCK_SIZE="512" TYPE="exfat" PTTYPE="dos" PARTUUID="0a7fb362-01" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdb2") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdb2: BLOCK_SIZE="2048" UUID="2024-07-01-08-31-27-00" LABEL="PeppermintOS" TYPE="iso9660" PTUUID="1d6a2a8b" PTTYPE="dos" 2025-09-14 - 02:27:52 [6]: .. Removing device with iso9660 filesystem (probably a CD) on it "/dev/sdb" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdc") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdc: PTUUID="b0f5110e-45a9-4cd7-8775-b9bfc8a004b1" PTTYPE="gpt" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "") 2025-09-14 - 02:27:52 [6]: .. Target cmd: ("blkid", "") Exit code: 2 (no output) 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdc1") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdc1: PARTLABEL="Microsoft reserved partition" PARTUUID="2bd087b4-d290-4bd5-a0b0-089951d88602" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "") 2025-09-14 - 02:27:52 [6]: .. Target cmd: ("blkid", "") Exit code: 2 (no output) 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdc2") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdc2: LABEL="win11" BLOCK_SIZE="512" UUID="00AA6221AA621406" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="46531b3b-eafe-44d3-962c-a8ee46e65821" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdc3") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdc3: LABEL="1.16TB" BLOCK_SIZE="512" UUID="E0289A6D289A4288" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="1e33a7ca-5eea-4c37-a5c8-3d303ef02629" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdc4") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdc4: LABEL="1.16TB02" BLOCK_SIZE="512" UUID="C2426D2D426D26FF" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="e28dc060-9bd1-4afe-b462-ec0ec2ff979a" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdc5") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdc5: LABEL="1.16TB03" BLOCK_SIZE="512" UUID="28C8CA1DC8C9E960" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="fcbe6631-79cf-4515-befc-cb48aacf9572" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd: PTUUID="76d80eff-6c96-4d8d-bba1-42447d7802af" PTTYPE="gpt" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "") 2025-09-14 - 02:27:52 [6]: .. Target cmd: ("blkid", "") Exit code: 2 (no output) 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd1") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd1: UUID="231ab792-4df0-4c47-9bac-4673ec6ea1e1" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="000549fa-b498-458f-b38b-7621f23f903e" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd2") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd2: LABEL="pop_os" UUID="ec369d68-7983-40e4-b65d-6c63a790daaa" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="cfb3f254-cce6-4a98-ba8f-72278117493a" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd3") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd3: LABEL="AnduinH" UUID="ce9ad749-1f31-46e6-b1e7-efa0e1a0c738" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="f74329e5-8b3e-4e79-a984-c192f1ac9e60" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd4") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd4: UUID="4f16c538-ccc2-4797-ab9c-e4ab8a03e08b" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="4e6ad5b5-7c0b-4c33-a66a-d07ad394c942" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd5") 2025-09-14 - 02:27:52 [6]: void Calamares::RequirementsChecker::reportProgress() Remaining modules: 1 "partition" 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd5: LABEL="element" UUID="20ba0c86-a2d5-44be-a5ce-e57c2d4bd81c" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="cd33cc52-9937-4df9-b033-2c7d3051d8fd" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd6") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd6: LABEL="debain13" UUID="5d92630d-80d4-4fc9-987b-21311eab9349" BLOCK_SIZE="4096" TYPE="ext4" PARTLABEL="debian" PARTUUID="ddc6a9a8-0a38-439f-b857-ab228506513d" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd7") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd7: LABEL="linuxdata" BLOCK_SIZE="512" UUID="4832FFB432FFA4DA" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="ac6071f5-4f79-45d9-bd18-c1c84d3bfa89" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd8") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd8: UUID="64dc5e18-7f91-4e99-bb8f-0ae0e5a4bbe1" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="54058120-13b8-42d8-9132-069d5405cc5e" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd11") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd11: LABEL="pepper" UUID="9a934ef5-90ac-40ec-a476-2edf1d95d21e" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="18e2c03a-823b-c64b-a3bd-59b58938c76e" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "") 2025-09-14 - 02:27:52 [6]: .. Target cmd: ("blkid", "") Exit code: 2 (no output) 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd9") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd9: LABEL="mint22.2" UUID="9d298cef-f368-4b99-b360-9781ad96c3df" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="f8fe21db-dff7-49a6-9158-e4289843b529" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "") 2025-09-14 - 02:27:52 [6]: .. Target cmd: ("blkid", "") Exit code: 2 (no output) 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sdd10") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sdd10: PARTLABEL="Microsoft reserved partition" PARTUUID="4233b70b-bc6e-4089-8e82-87795e5da827" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "") 2025-09-14 - 02:27:52 [6]: .. Target cmd: ("blkid", "") Exit code: 2 (no output) 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sde") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sde: PTUUID="e762a142-00e2-4582-b138-4f4e97f810cf" PTTYPE="gpt" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sde1") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sde1: UUID="08F8-3D2C" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="63210080-d0af-49eb-b8b9-cde162d3bfe5" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sde2") 2025-09-14 - 02:27:52 [6]: .. Finished. Exit code: 0 output: /dev/sde2: LABEL="data" UUID="89b91a63-5874-4398-a4b1-3ace71f8e66f" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="60298684-6b9b-4bac-b6a8-1efcee1199de" 2025-09-14 - 02:27:52 [6]: .. Running ("blkid", "/dev/sde3") 2025-09-14 - 02:27:53 [6]: .. Finished. Exit code: 0 output: /dev/sde3: LABEL="Lwin11" UUID="4c2950a0-67e2-498a-a62f-9712cd6da3ba" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="86e7905f-e1b1-425e-93f6-de46c28ff970" 2025-09-14 - 02:27:53 [6]: .. Running ("blkid", "") 2025-09-14 - 02:27:53 [6]: .. Target cmd: ("blkid", "") Exit code: 2 (no output) 2025-09-14 - 02:27:53 [6]: .. there are 4 devices left. 2025-09-14 - 02:27:53 [6]: void PartitionCoreModule::doInit() LIST OF DETECTED DEVICES: 2025-09-14 - 02:27:53 [6]: .. node capacity name prettyName 2025-09-14 - 02:27:53 [6]: .. "/dev/sda" 2000396321280 DevName$11521bcc DevNamePretty$d510dd3 2025-09-14 - 02:27:53 [6]: .. "/dev/sdc" 4000784417280 DevName$738ca7c7 DevNamePretty$643acac1 2025-09-14 - 02:27:53 [6]: .. "/dev/sdd" 4000784417280 DevName$738ca7c7 DevNamePretty$7d3a720b 2025-09-14 - 02:27:53 [6]: .. "/dev/sde" 1000202273280 DevName$133688b1 DevNamePretty$95daf8f2 2025-09-14 - 02:27:53 [6]: .. 4 devices detected. 2025-09-14 - 02:27:53 [6]: void Calamares::RequirementsChecker::reportProgress() Remaining modules: 1 "partition" 2025-09-14 - 02:27:54 [6]: .. Running ("blkid", "-s", "TYPE", "-o", "value", "/dev/sdd11") 2025-09-14 - 02:27:54 [6]: .. Finished. Exit code: 0 output: ext4 2025-09-14 - 02:27:54 [6]: FstabEntryList PartUtils::lookForFstabEntries(const QString&) Checking device "/dev/sdd11" for fstab (fs= "ext4" ) 2025-09-14 - 02:27:54 [6]: .. Running ("mount", "-o", "ro,noload", "/dev/sdd11", "/tmp/calamares-jQYgsY") 2025-09-14 - 02:27:54 [6]: .. Target cmd: ("mount", "-o", "ro,noload", "/dev/sdd11", "/tmp/calamares-jQYgsY") Exit code: 32 output: mount: /tmp/calamares-jQYgsY: /dev/sdd11 already mounted on /tmp/calamares-root-a0l41lry. dmesg(1) may have more information after failed mount system call. 2025-09-14 - 02:27:54 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:27:54 [6]: .. Running ("sync") 2025-09-14 - 02:27:54 [2]: CalamaresUtils::Partition::TemporaryMount::TemporaryMount(const QString&, const QString&, const QString&) WARNING: Mount of "/dev/sdd11" on "/tmp/calamares-jQYgsY" failed, code 32 2025-09-14 - 02:27:54 [2]: FstabEntryList PartUtils::lookForFstabEntries(const QString&) WARNING: Could not mount existing fs 2025-09-14 - 02:27:54 [6]: bool PartUtils::canBeResized(Partition*, const Logger::Once&) Can not resize "/tmp/calamares-root-a0l41lry" , partition is mounted 2025-09-14 - 02:27:54 [6]: .. os-prober lines after cleanup: "/dev/sdd11:PeppermintOS:Peppermint:linux" 2025-09-14 - 02:27:54 [2]: void PartitionCoreModule::scanForEfiSystemPartitions() WARNING: system is EFI but no EFI system partitions found. 2025-09-14 - 02:27:54 [6]: void Calamares::RequirementsChecker::addCheckedRequirements(Calamares::Module*) Got 1 requirement results from "partition" 2025-09-14 - 02:27:54 [6]: void ChoicePage::updateDeviceStatePreview() Updating partitioning state widgets. 2025-09-14 - 02:27:54 [6]: void ChoicePage::setupActions() Setting up actions for "/dev/sda" with 0 entries. 2025-09-14 - 02:27:54 [6]: .. Partition "/dev/sda1" authorized for resize + autopartition install. 2025-09-14 - 02:27:54 [6]: .. contains resizable "/dev/sda1" 2025-09-14 - 02:27:54 [6]: .. Checking if "/dev/sda1" can be replaced. 2025-09-14 - 02:27:54 [6]: .. Partition "/dev/sda1" authorized for replace install. 2025-09-14 - 02:27:54 [6]: .. contains replaceable "/dev/sda1" 2025-09-14 - 02:27:54 [6]: ChoicePage::setupActions():: Setting texts for 0 osprober entries 2025-09-14 - 02:27:54 [2]: void ChoicePage::setupActions() WARNING: System is EFI but there's no EFI system partition, DISABLING alongside and replace features. 2025-09-14 - 02:27:54 [6]: void ChoicePage::continueApplyDeviceChoice() Previous device -1 new device 0 2025-09-14 - 02:27:54 [6]: void ChoicePage::applyActionChoice(InstallChoice) Prev -1 InstallChoice Config::Erase "erase" 2025-09-14 - 02:27:54 [6]: PartitionTable* CreatePartitionTableJob::createTable() CreatePartitionTableJob::createTable trying to make table for device "/dev/sda" 2025-09-14 - 02:27:54 [6]: void Calamares::RequirementsChecker::finished() All requirements have been checked. 2025-09-14 - 02:27:54 [6]: void Calamares::RequirementsModel::describe() const Requirements model has 5 items 2025-09-14 - 02:27:54 [6]: .. requirement 0 "storage" satisfied? true mandatory? true 2025-09-14 - 02:27:54 [6]: .. requirement 1 "ram" satisfied? true mandatory? true 2025-09-14 - 02:27:54 [6]: .. requirement 2 "power" satisfied? true mandatory? false 2025-09-14 - 02:27:54 [6]: .. requirement 3 "root" satisfied? true mandatory? true 2025-09-14 - 02:27:54 [6]: .. requirement 4 "partitions" satisfied? true mandatory? true 2025-09-14 - 02:27:54 [2]: void PartitionCoreModule::scanForEfiSystemPartitions() WARNING: system is EFI but no EFI system partitions found. 2025-09-14 - 02:27:54 [6]: void PartitionCoreModule::scanForEfiSystemPartitions() system is EFI and new EFI system partition has been found. 2025-09-14 - 02:27:54 [6]: void PartitionCoreModule::dumpQueue() const # Queue: 2025-09-14 - 02:27:54 [6]: .. ## Device: "/dev/sda" 2025-09-14 - 02:27:54 [6]: .. - CreatePartitionTableJob 2025-09-14 - 02:27:54 [6]: .. - CreatePartitionJob 2025-09-14 - 02:27:54 [6]: .. - SetPartFlagsJob 2025-09-14 - 02:27:54 [6]: .. - CreatePartitionJob 2025-09-14 - 02:27:54 [6]: .. ## Device: "/dev/sdc" 2025-09-14 - 02:27:54 [6]: .. ## Device: "/dev/sdd" 2025-09-14 - 02:27:54 [6]: .. ## Device: "/dev/sde" 2025-09-14 - 02:27:54 [6]: void ChoicePage::updateActionChoicePreview(InstallChoice) Updating partitioning preview widgets. 2025-09-14 - 02:28:01 [6]: static LocaleConfiguration LocaleConfiguration::fromLanguageAndLocation(const QString&, const QStringList&, const QString&) Mapping "en" in "CN" to locale. 2025-09-14 - 02:28:01 [6]: .. Got best match for "en" as "en_ZW.UTF-8" 2025-09-14 - 02:28:01 [6]: .. Got best match for "en_CN" as "en_AG" 2025-09-14 - 02:28:01 [6]: .. Got best match for "en_US" as "en_US.UTF-8" 2025-09-14 - 02:28:01 [6]: static LocaleConfiguration LocaleConfiguration::fromLanguageAndLocation(const QString&, const QStringList&, const QString&) Mapping "en" in "CN" to locale. 2025-09-14 - 02:28:01 [6]: .. Got best match for "en" as "en_ZW.UTF-8" 2025-09-14 - 02:28:01 [6]: .. Got best match for "en_CN" as "en_AG" 2025-09-14 - 02:28:01 [6]: .. Got best match for "en_US" as "en_US.UTF-8" 2025-09-14 - 02:28:01 [6]: static LocaleConfiguration LocaleConfiguration::fromLanguageAndLocation(const QString&, const QStringList&, const QString&) Mapping "en" in "CN" to locale. 2025-09-14 - 02:28:01 [6]: .. Got best match for "en" as "en_ZW.UTF-8" 2025-09-14 - 02:28:01 [6]: .. Got best match for "en_CN" as "en_AG" 2025-09-14 - 02:28:01 [6]: .. Got best match for "en_US" as "en_US.UTF-8" 2025-09-14 - 02:28:03 [6]: void Config::guessLocaleKeyboardLayout() Got locale language "en_US.UTF-8" 2025-09-14 - 02:28:03 [6]: .. looking for locale part "US" 2025-09-14 - 02:28:03 [6]: .. matched "us" 2025-09-14 - 02:28:03 [6]: void guessLayout(const QStringList&, KeyboardLayoutModel*, KeyboardVariantsModel*) Next level: "en" 2025-09-14 - 02:28:08 [6]: void ChoicePage::applyActionChoice(InstallChoice) Prev -1 InstallChoice Config::Manual "manual" 2025-09-14 - 02:28:08 [6]: void ChoicePage::updateActionChoicePreview(InstallChoice) Updating partitioning preview widgets. 2025-09-14 - 02:28:12 [6]: virtual void PartitionViewStep::next() Choice applied: Config::Manual 2025-09-14 - 02:28:13 [6]: 488377855 5086312 4096 2025-09-14 - 02:28:13 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&) No path to restore, choosing default 2025-09-14 - 02:28:13 [2]: unknown file system type "" on "/dev/sdc1" 2025-09-14 - 02:28:13 [6]: 39322111 28241190 4096 2025-09-14 - 02:28:14 [6]: 312476159 18882935 4096 2025-09-14 - 02:28:14 [6]: 312421329 91324050 4096 2025-09-14 - 02:28:14 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&) No path to restore, choosing default 2025-09-14 - 02:28:15 [2]: unknown file system type "" on "/dev/sdd10" 2025-09-14 - 02:28:15 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&) No path to restore, choosing default 2025-09-14 - 02:28:15 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&) No path to restore, choosing default 2025-09-14 - 02:28:15 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&) No path to restore, choosing default 2025-09-14 - 02:28:15 [2]: void PartitionCoreModule::scanForEfiSystemPartitions() WARNING: system is EFI but no EFI system partitions found. 2025-09-14 - 02:28:15 [2]: QBasicTimer::start: Timers cannot be started from another thread 2025-09-14 - 02:28:15 [2]: QBasicTimer::start: Timers cannot be started from another thread 2025-09-14 - 02:28:15 [2]: QBasicTimer::start: Timers cannot be started from another thread 2025-09-14 - 02:30:00 [6]: void EditExistingPartitionDialog::applyChanges(PartitionCoreModule*) old boundaries: 2048 3999743 3997696 2025-09-14 - 02:30:00 [6]: .. new boundaries: 2048 3999743 2025-09-14 - 02:30:00 [6]: .. dirty status: false 2025-09-14 - 02:30:00 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&) No path to restore, choosing default 2025-09-14 - 02:30:00 [2]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 3167, resource id: 8544830, major code: 40 (TranslateCoords), minor code: 0 2025-09-14 - 02:30:00 [2]: void PartitionCoreModule::scanForEfiSystemPartitions() WARNING: system is EFI but no EFI system partitions found. 2025-09-14 - 02:30:00 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&) No path to restore, choosing default 2025-09-14 - 02:30:00 [2]: void PartitionCoreModule::scanForEfiSystemPartitions() WARNING: system is EFI but no EFI system partitions found. 2025-09-14 - 02:30:00 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&) No path to restore, choosing default 2025-09-14 - 02:30:00 [6]: void PartitionCoreModule::scanForEfiSystemPartitions() system is EFI and new EFI system partition has been found. 2025-09-14 - 02:32:06 [6]: void EditExistingPartitionDialog::applyChanges(PartitionCoreModule*) old boundaries: 3999744 638879743 634880000 2025-09-14 - 02:32:06 [6]: .. new boundaries: 3999744 638879743 2025-09-14 - 02:32:06 [6]: .. dirty status: false 2025-09-14 - 02:32:06 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&) No path to restore, choosing default 2025-09-14 - 02:32:06 [2]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 4058, resource id: 8546208, major code: 40 (TranslateCoords), minor code: 0 2025-09-14 - 02:32:24 [6]: void EditExistingPartitionDialog::applyChanges(PartitionCoreModule*) old boundaries: 1349826560 1575106559 225280000 2025-09-14 - 02:32:24 [6]: .. new boundaries: 1349826560 1575106559 2025-09-14 - 02:32:24 [6]: .. dirty status: false 2025-09-14 - 02:32:24 [6]: void Calamares::restoreSelectedBootLoader(QComboBox&, const QString&) No path to restore, choosing default 2025-09-14 - 02:32:24 [2]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 4608, resource id: 8546421, major code: 40 (TranslateCoords), minor code: 0 2025-09-14 - 02:32:58 [2]: QObject::setParent: Cannot set parent, new parent is in a different thread 2025-09-14 - 02:32:58 [2]: QObject::setParent: Cannot set parent, new parent is in a different thread 2025-09-14 - 02:32:58 [6]: virtual QString PartitionViewStep::prettyStatus() const Summary for Partition 2 Config::Manual 2025-09-14 - 02:32:58 [6]: QStringList findEssentialLVs(const QList&) Checking LVM use on 4 devices 2025-09-14 - 02:32:58 [6]: QVariantList FillGlobalStorageJob::createPartitionList() const Building partition information map 2025-09-14 - 02:32:58 [6]: .. partitions on "/dev/sda" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sda1" "/dev/sda1" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$cbca1bda" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. partitions on "/dev/sdc" 2025-09-14 - 02:32:58 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdc1" "/dev/sdc1" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$224f32bf" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdc2" "/dev/sdc2" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$6646772b" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$ee86d6ca" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdc3" "/dev/sdc3" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$18cbc7a8" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$4215e0e5" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdc4" "/dev/sdc4" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$e92eb7d3" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$3184b70b" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdc5" "/dev/sdc5" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$150f4a20" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$9b0b876f" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. partitions on "/dev/sdd" 2025-09-14 - 02:32:58 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdd1" "/dev/sdd1" partlabel : "" partition-uuid (partuuid) : "PartUUID$950c4a7e" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$bc9310c3" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdd2" "/dev/sdd2" partlabel : "" partition-uuid (partuuid) : "PartUUID$438f4240" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$5f9f2b0f" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdd3" "/dev/sdd3" partlabel : "" partition-uuid (partuuid) : "PartUUID$4199627b" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$cb9e3e71" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdd4" "/dev/sdd4" partlabel : "" partition-uuid (partuuid) : "PartUUID$327a2669" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$7a2c01ef" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdd5" "/dev/sdd5" partlabel : "" partition-uuid (partuuid) : "PartUUID$825fa5b0" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$fa187ac5" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdd6" "/dev/sdd6" partlabel : "debian" partition-uuid (partuuid) : "PartUUID$98733cb0" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$3712440a" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdd7" "/dev/sdd7" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$44d62ea5" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$993c8ecf" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdd8" "/dev/sdd8" partlabel : "" partition-uuid (partuuid) : "PartUUID$5c12da87" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$29218581" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdd11" "/dev/sdd11" partlabel : "" partition-uuid (partuuid) : "PartUUID$3dfa60da" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$ec75de1d" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdd9" "/dev/sdd9" partlabel : "" partition-uuid (partuuid) : "PartUUID$9a92b1bb" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$28a60eaa" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sdd10" "/dev/sdd10" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$25bbbc1d" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. partitions on "/dev/sde" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sde1" "/dev/sde1" partlabel : "" partition-uuid (partuuid) : "PartUUID$db0ce0c" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "/boot/efi" fs: : "fat32" fsName : "fat32" filesystem-uuid (uuid) : "FSUUID$3d2c724" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sde2" "/dev/sde2" partlabel : "" partition-uuid (partuuid) : "PartUUID$cb9bcf69" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/home" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$b4029e62" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "/dev/sde3" "/dev/sde3" partlabel : "" partition-uuid (partuuid) : "PartUUID$a085630c" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$95188f26" claimed : "false" 2025-09-14 - 02:32:58 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: QVariantList FillGlobalStorageJob::createPartitionList() const Building partition information map 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sda" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sda1" "/dev/sda1" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$cbca1bda" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sdc" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc1" "/dev/sdc1" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$224f32bf" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc2" "/dev/sdc2" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$6646772b" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$ee86d6ca" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc3" "/dev/sdc3" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$18cbc7a8" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$4215e0e5" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc4" "/dev/sdc4" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$e92eb7d3" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$3184b70b" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc5" "/dev/sdc5" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$150f4a20" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$9b0b876f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sdd" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd1" "/dev/sdd1" partlabel : "" partition-uuid (partuuid) : "PartUUID$950c4a7e" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$bc9310c3" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd2" "/dev/sdd2" partlabel : "" partition-uuid (partuuid) : "PartUUID$438f4240" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$5f9f2b0f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd3" "/dev/sdd3" partlabel : "" partition-uuid (partuuid) : "PartUUID$4199627b" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$cb9e3e71" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd4" "/dev/sdd4" partlabel : "" partition-uuid (partuuid) : "PartUUID$327a2669" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$7a2c01ef" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd5" "/dev/sdd5" partlabel : "" partition-uuid (partuuid) : "PartUUID$825fa5b0" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$fa187ac5" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd6" "/dev/sdd6" partlabel : "debian" partition-uuid (partuuid) : "PartUUID$98733cb0" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$3712440a" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd7" "/dev/sdd7" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$44d62ea5" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$993c8ecf" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd8" "/dev/sdd8" partlabel : "" partition-uuid (partuuid) : "PartUUID$5c12da87" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$29218581" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd11" "/dev/sdd11" partlabel : "" partition-uuid (partuuid) : "PartUUID$3dfa60da" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$ec75de1d" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd9" "/dev/sdd9" partlabel : "" partition-uuid (partuuid) : "PartUUID$9a92b1bb" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$28a60eaa" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd10" "/dev/sdd10" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$25bbbc1d" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sde" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sde1" "/dev/sde1" partlabel : "" partition-uuid (partuuid) : "PartUUID$db0ce0c" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "/boot/efi" fs: : "fat32" fsName : "fat32" filesystem-uuid (uuid) : "FSUUID$3d2c724" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sde2" "/dev/sde2" partlabel : "" partition-uuid (partuuid) : "PartUUID$cb9bcf69" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/home" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$b4029e62" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sde3" "/dev/sde3" partlabel : "" partition-uuid (partuuid) : "PartUUID$a085630c" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$95188f26" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [2]: QLayout: Attempting to add QLayout "" to QWidget "", which already has a layout 2025-09-14 - 02:32:59 [2]: QObject::setParent: Cannot set parent, new parent is in a different thread 2025-09-14 - 02:32:59 [2]: QObject::setParent: Cannot set parent, new parent is in a different thread 2025-09-14 - 02:32:59 [6]: QStringList findEssentialLVs(const QList&) Checking LVM use on 4 devices 2025-09-14 - 02:32:59 [6]: QVariantList FillGlobalStorageJob::createPartitionList() const Building partition information map 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sda" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sda1" "/dev/sda1" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$cbca1bda" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sdc" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc1" "/dev/sdc1" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$224f32bf" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc2" "/dev/sdc2" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$6646772b" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$ee86d6ca" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc3" "/dev/sdc3" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$18cbc7a8" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$4215e0e5" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc4" "/dev/sdc4" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$e92eb7d3" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$3184b70b" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc5" "/dev/sdc5" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$150f4a20" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$9b0b876f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sdd" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd1" "/dev/sdd1" partlabel : "" partition-uuid (partuuid) : "PartUUID$950c4a7e" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$bc9310c3" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd2" "/dev/sdd2" partlabel : "" partition-uuid (partuuid) : "PartUUID$438f4240" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$5f9f2b0f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd3" "/dev/sdd3" partlabel : "" partition-uuid (partuuid) : "PartUUID$4199627b" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$cb9e3e71" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd4" "/dev/sdd4" partlabel : "" partition-uuid (partuuid) : "PartUUID$327a2669" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$7a2c01ef" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd5" "/dev/sdd5" partlabel : "" partition-uuid (partuuid) : "PartUUID$825fa5b0" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$fa187ac5" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd6" "/dev/sdd6" partlabel : "debian" partition-uuid (partuuid) : "PartUUID$98733cb0" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$3712440a" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd7" "/dev/sdd7" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$44d62ea5" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$993c8ecf" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd8" "/dev/sdd8" partlabel : "" partition-uuid (partuuid) : "PartUUID$5c12da87" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$29218581" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd11" "/dev/sdd11" partlabel : "" partition-uuid (partuuid) : "PartUUID$3dfa60da" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$ec75de1d" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd9" "/dev/sdd9" partlabel : "" partition-uuid (partuuid) : "PartUUID$9a92b1bb" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$28a60eaa" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd10" "/dev/sdd10" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$25bbbc1d" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sde" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sde1" "/dev/sde1" partlabel : "" partition-uuid (partuuid) : "PartUUID$db0ce0c" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "/boot/efi" fs: : "fat32" fsName : "fat32" filesystem-uuid (uuid) : "FSUUID$3d2c724" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sde2" "/dev/sde2" partlabel : "" partition-uuid (partuuid) : "PartUUID$cb9bcf69" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/home" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$b4029e62" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sde3" "/dev/sde3" partlabel : "" partition-uuid (partuuid) : "PartUUID$a085630c" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$95188f26" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: QVariantList FillGlobalStorageJob::createPartitionList() const Building partition information map 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sda" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sda1" "/dev/sda1" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$cbca1bda" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sdc" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc1" "/dev/sdc1" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$224f32bf" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc2" "/dev/sdc2" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$6646772b" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$ee86d6ca" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc3" "/dev/sdc3" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$18cbc7a8" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$4215e0e5" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc4" "/dev/sdc4" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$e92eb7d3" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$3184b70b" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdc5" "/dev/sdc5" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$150f4a20" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$9b0b876f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sdd" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd1" "/dev/sdd1" partlabel : "" partition-uuid (partuuid) : "PartUUID$950c4a7e" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$bc9310c3" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd2" "/dev/sdd2" partlabel : "" partition-uuid (partuuid) : "PartUUID$438f4240" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$5f9f2b0f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd3" "/dev/sdd3" partlabel : "" partition-uuid (partuuid) : "PartUUID$4199627b" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$cb9e3e71" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd4" "/dev/sdd4" partlabel : "" partition-uuid (partuuid) : "PartUUID$327a2669" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$7a2c01ef" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd5" "/dev/sdd5" partlabel : "" partition-uuid (partuuid) : "PartUUID$825fa5b0" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$fa187ac5" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd6" "/dev/sdd6" partlabel : "debian" partition-uuid (partuuid) : "PartUUID$98733cb0" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$3712440a" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd7" "/dev/sdd7" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$44d62ea5" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$993c8ecf" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd8" "/dev/sdd8" partlabel : "" partition-uuid (partuuid) : "PartUUID$5c12da87" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$29218581" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd11" "/dev/sdd11" partlabel : "" partition-uuid (partuuid) : "PartUUID$3dfa60da" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$ec75de1d" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd9" "/dev/sdd9" partlabel : "" partition-uuid (partuuid) : "PartUUID$9a92b1bb" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$28a60eaa" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sdd10" "/dev/sdd10" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$25bbbc1d" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. partitions on "/dev/sde" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sde1" "/dev/sde1" partlabel : "" partition-uuid (partuuid) : "PartUUID$db0ce0c" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "/boot/efi" fs: : "fat32" fsName : "fat32" filesystem-uuid (uuid) : "FSUUID$3d2c724" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sde2" "/dev/sde2" partlabel : "" partition-uuid (partuuid) : "PartUUID$cb9bcf69" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/home" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$b4029e62" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "/dev/sde3" "/dev/sde3" partlabel : "" partition-uuid (partuuid) : "PartUUID$a085630c" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$95188f26" claimed : "false" 2025-09-14 - 02:32:59 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:32:59 [6]: void ensureSize(QWidget*, QScrollArea*, Calamares::ViewStep*) Summary widget is larger than viewport, enlarge by 645 to QSize(834, 1132) 2025-09-14 - 02:33:36 [2]: "Object does not exist at path “/org/freedesktop/NetworkManager/ActiveConnection/4”" 2025-09-14 - 02:37:03 [6]: QStringList findEssentialLVs(const QList&) Checking LVM use on 4 devices 2025-09-14 - 02:37:03 [6]: void Calamares::JobThread::finalize() There are 42 jobs, total weight 40 2025-09-14 - 02:37:03 [6]: .. Job 1 "Manage auto-mount settings" +wt 0.111111 tot.wt 0.111111 2025-09-14 - 02:37:03 [6]: .. Job 2 "Clear all temporary mounts." +wt 0.111111 tot.wt 0.222222 2025-09-14 - 02:37:03 [6]: .. Job 3 "Clear mounts for partitioning operations on /dev/sdd" +wt 0.111111 tot.wt 0.333333 2025-09-14 - 02:37:03 [6]: .. Job 4 "Clear mounts for partitioning operations on /dev/sde" +wt 0.111111 tot.wt 0.444444 2025-09-14 - 02:37:03 [6]: .. Job 5 "Format partition /dev/sde1 (file system: fat32, size: 1952 MiB) on Teclast 1TB A850." +wt 0.111111 tot.wt 0.555556 2025-09-14 - 02:37:03 [6]: .. Job 6 "Set flags on partition /dev/sde1." +wt 0.111111 tot.wt 0.666667 2025-09-14 - 02:37:03 [6]: .. Job 7 "Set filesystem label on /dev/sde1." +wt 0.111111 tot.wt 0.777778 2025-09-14 - 02:37:03 [6]: .. Job 8 "Set partition information" +wt 0.111111 tot.wt 0.888889 2025-09-14 - 02:37:03 [6]: .. Job 9 "Manage auto-mount settings" +wt 0.111111 tot.wt 1 2025-09-14 - 02:37:03 [6]: .. Job 10 "mount" +wt 1 tot.wt 2 2025-09-14 - 02:37:03 [6]: .. Job 11 "unpackfs" +wt 12 tot.wt 14 2025-09-14 - 02:37:03 [6]: .. Job 12 " Run command '/usr/sbin/sources-media'." +wt 1 tot.wt 15 2025-09-14 - 02:37:03 [6]: .. Job 13 "Generate machine-id." +wt 1 tot.wt 16 2025-09-14 - 02:37:03 [6]: .. Job 14 "fstab" +wt 1 tot.wt 17 2025-09-14 - 02:37:03 [6]: .. Job 15 "Set timezone to Asia/Shanghai" +wt 1 tot.wt 18 2025-09-14 - 02:37:03 [6]: .. Job 16 "Set keyboard model to pc105, layout to us-" +wt 1 tot.wt 19 2025-09-14 - 02:37:03 [6]: .. Job 17 "localecfg" +wt 1 tot.wt 20 2025-09-14 - 02:37:03 [6]: .. Job 18 "Configure
    sudo
    users." +wt 0.166667 tot.wt 20.1667 2025-09-14 - 02:37:03 [6]: .. Job 19 "Preparing groups." +wt 0.166667 tot.wt 20.3333 2025-09-14 - 02:37:03 [6]: .. Job 20 "Create user vincent" +wt 0.166667 tot.wt 20.5 2025-09-14 - 02:37:03 [6]: .. Job 21 "Set password for user vincent" +wt 0.166667 tot.wt 20.6667 2025-09-14 - 02:37:03 [6]: .. Job 22 "Set password for user root" +wt 0.166667 tot.wt 20.8333 2025-09-14 - 02:37:03 [6]: .. Job 23 "Set hostname so" +wt 0.166667 tot.wt 21 2025-09-14 - 02:37:03 [6]: .. Job 24 "displaymanager" +wt 1 tot.wt 22 2025-09-14 - 02:37:03 [6]: .. Job 25 "networkcfg" +wt 1 tot.wt 23 2025-09-14 - 02:37:03 [6]: .. Job 26 "hwclock" +wt 1 tot.wt 24 2025-09-14 - 02:37:03 [6]: .. Job 27 "services-systemd" +wt 1 tot.wt 25 2025-09-14 - 02:37:03 [6]: .. Job 28 " Run command '/usr/sbin/bootloader-config'." +wt 1 tot.wt 26 2025-09-14 - 02:37:03 [6]: .. Job 29 "grubcfg" +wt 1 tot.wt 27 2025-09-14 - 02:37:03 [6]: .. Job 30 "bootloader" +wt 1 tot.wt 28 2025-09-14 - 02:37:03 [6]: .. Job 31 "packages" +wt 1 tot.wt 29 2025-09-14 - 02:37:03 [6]: .. Job 32 "Configuring LUKS key file." +wt 1 tot.wt 30 2025-09-14 - 02:37:03 [6]: .. Job 33 "Configuring encrypted swap." +wt 1 tot.wt 31 2025-09-14 - 02:37:03 [6]: .. Job 34 "plymouthcfg" +wt 1 tot.wt 32 2025-09-14 - 02:37:03 [6]: .. Job 35 "initramfscfg" +wt 1 tot.wt 33 2025-09-14 - 02:37:03 [6]: .. Job 36 "Creating initramfs." +wt 1 tot.wt 34 2025-09-14 - 02:37:03 [6]: .. Job 37 " Run command '/usr/sbin/sources-media -u'." +wt 1 tot.wt 35 2025-09-14 - 02:37:03 [6]: .. Job 38 " Run command '/usr/sbin/sources-final'." +wt 1 tot.wt 36 2025-09-14 - 02:37:03 [6]: .. Job 39 " Run command '/usr/sbin/update-system'." +wt 1 tot.wt 37 2025-09-14 - 02:37:03 [6]: .. Job 40 " Run command '/usr/sbin/grub-defaults'." +wt 1 tot.wt 38 2025-09-14 - 02:37:03 [6]: .. Job 41 "Shell Processes Job" +wt 1 tot.wt 39 2025-09-14 - 02:37:03 [6]: .. Job 42 "Unmount file systems." +wt 1 tot.wt 40 2025-09-14 - 02:37:03 [6]: virtual void Calamares::JobThread::run() Starting job "Manage auto-mount settings" ( 1 / 42 ) 2025-09-14 - 02:37:03 [6]: virtual Calamares::JobResult AutoMountManagementJob::exec() Set automount to disable 2025-09-14 - 02:37:03 [6]: std::shared_ptr CalamaresUtils::Partition::automountDisable(bool) Setting Solid automount to disabled 2025-09-14 - 02:37:03 [6]: .. 2 reply () 2025-09-14 - 02:37:03 [6]: .. 2 reply (QVariant(bool, false)) 2025-09-14 - 02:37:03 [6]: virtual void Calamares::JobThread::run() Starting job "Clear all temporary mounts." ( 2 / 42 ) 2025-09-14 - 02:37:03 [6]: virtual Calamares::JobResult ClearTempMountsJob::exec() Will try to umount path "/tmp/calamares-root-a0l41lry/sys/firmware/efi/efivars" 2025-09-14 - 02:37:03 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-a0l41lry/sys/firmware/efi/efivars") 2025-09-14 - 02:37:03 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-a0l41lry/sys/firmware/efi/efivars (efivarfs) unmounted 2025-09-14 - 02:37:03 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:03 [6]: .. Running ("sync") 2025-09-14 - 02:37:03 [6]: .. Will try to umount path "/tmp/calamares-root-a0l41lry/sys" 2025-09-14 - 02:37:03 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-a0l41lry/sys") 2025-09-14 - 02:37:03 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-a0l41lry/sys (sys) unmounted 2025-09-14 - 02:37:03 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:03 [6]: .. Running ("sync") 2025-09-14 - 02:37:03 [6]: .. Will try to umount path "/tmp/calamares-root-a0l41lry/run/udev" 2025-09-14 - 02:37:03 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-a0l41lry/run/udev") 2025-09-14 - 02:37:03 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-a0l41lry/run/udev (tmpfs) unmounted 2025-09-14 - 02:37:03 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:03 [6]: .. Running ("sync") 2025-09-14 - 02:37:03 [6]: .. Will try to umount path "/tmp/calamares-root-a0l41lry/run/live/medium" 2025-09-14 - 02:37:03 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-a0l41lry/run/live/medium") 2025-09-14 - 02:37:03 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-a0l41lry/run/live/medium (/dev/mapper/ventoy) unmounted 2025-09-14 - 02:37:03 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:03 [6]: .. Running ("sync") 2025-09-14 - 02:37:03 [6]: .. Will try to umount path "/tmp/calamares-root-a0l41lry/run" 2025-09-14 - 02:37:03 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-a0l41lry/run") 2025-09-14 - 02:37:03 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-a0l41lry/run (tmpfs) unmounted 2025-09-14 - 02:37:03 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:03 [6]: .. Running ("sync") 2025-09-14 - 02:37:03 [6]: .. Will try to umount path "/tmp/calamares-root-a0l41lry/proc" 2025-09-14 - 02:37:03 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-a0l41lry/proc") 2025-09-14 - 02:37:03 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-a0l41lry/proc (proc) unmounted 2025-09-14 - 02:37:03 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:03 [6]: .. Running ("sync") 2025-09-14 - 02:37:03 [6]: .. Will try to umount path "/tmp/calamares-root-a0l41lry/home" 2025-09-14 - 02:37:03 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-a0l41lry/home") 2025-09-14 - 02:37:03 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-a0l41lry/home (/dev/sde2) unmounted 2025-09-14 - 02:37:03 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:03 [6]: .. Running ("sync") 2025-09-14 - 02:37:03 [6]: .. Will try to umount path "/tmp/calamares-root-a0l41lry/dev" 2025-09-14 - 02:37:03 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-a0l41lry/dev") 2025-09-14 - 02:37:03 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-a0l41lry/dev (udev) unmounted 2025-09-14 - 02:37:03 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:03 [6]: .. Running ("sync") 2025-09-14 - 02:37:03 [6]: .. Will try to umount path "/tmp/calamares-root-a0l41lry" 2025-09-14 - 02:37:03 [6]: .. Running ("umount", "-lv", "/tmp/calamares-root-a0l41lry") 2025-09-14 - 02:37:03 [6]: .. Finished. Exit code: 0 output: umount: /tmp/calamares-root-a0l41lry (/dev/sdd11) unmounted 2025-09-14 - 02:37:03 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:03 [6]: .. Running ("sync") 2025-09-14 - 02:37:03 [6]: .. ClearTempMountsJob finished. Here's what was done: "Successfully unmounted /tmp/calamares-root-a0l41lry/sys/firmware/efi/efivars." "Successfully unmounted /tmp/calamares-root-a0l41lry/sys." "Successfully unmounted /tmp/calamares-root-a0l41lry/run/udev." "Successfully unmounted /tmp/calamares-root-a0l41lry/run/live/medium." "Successfully unmounted /tmp/calamares-root-a0l41lry/run." "Successfully unmounted /tmp/calamares-root-a0l41lry/proc." "Successfully unmounted /tmp/calamares-root-a0l41lry/home." "Successfully unmounted /tmp/calamares-root-a0l41lry/dev." "Successfully unmounted /tmp/calamares-root-a0l41lry." 2025-09-14 - 02:37:03 [6]: virtual void Calamares::JobThread::run() Starting job "Clear mounts for partitioning operations on /dev/sdd" ( 3 / 42 ) 2025-09-14 - 02:37:04 [2]: QStringList getLVMVolumes() WARNING: this system does not seem to have LVM2 tools. 2025-09-14 - 02:37:04 [2]: QStringList getPVGroups(const QString&) WARNING: this system does not seem to have LVM2 tools. 2025-09-14 - 02:37:04 [6]: QStringList getPartitionsForDevice(const QString&) Reading from "/proc/partitions" looking for "sdd" 2025-09-14 - 02:37:04 [6]: virtual Calamares::JobResult ClearMountsJob::exec() ClearMountsJob finished. Here's what was done: 2025-09-14 - 02:37:04 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:04 [6]: .. Running ("sync") 2025-09-14 - 02:37:04 [6]: virtual void Calamares::JobThread::run() Starting job "Clear mounts for partitioning operations on /dev/sde" ( 4 / 42 ) 2025-09-14 - 02:37:04 [2]: QStringList getLVMVolumes() WARNING: this system does not seem to have LVM2 tools. 2025-09-14 - 02:37:04 [2]: QStringList getPVGroups(const QString&) WARNING: this system does not seem to have LVM2 tools. 2025-09-14 - 02:37:04 [6]: QStringList getPartitionsForDevice(const QString&) Reading from "/proc/partitions" looking for "sde" 2025-09-14 - 02:37:04 [6]: virtual Calamares::JobResult ClearMountsJob::exec() ClearMountsJob finished. Here's what was done: "Successfully unmounted /dev/sde1." 2025-09-14 - 02:37:04 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:04 [6]: .. Running ("sync") 2025-09-14 - 02:37:04 [6]: virtual void Calamares::JobThread::run() Starting job "Format partition /dev/sde1 (file system: fat32, size: 1952 MiB) on Teclast 1TB A850." ( 5 / 42 ) 2025-09-14 - 02:37:06 [6]: virtual void Calamares::JobThread::run() Starting job "Set flags on partition /dev/sde1." ( 6 / 42 ) 2025-09-14 - 02:37:06 [6]: virtual Calamares::JobResult SetPartFlagsJob::exec() Setting flags on "/dev/sde" partition "/dev/sde1" "boot" 2025-09-14 - 02:37:07 [6]: virtual void Calamares::JobThread::run() Starting job "Set filesystem label on /dev/sde1." ( 7 / 42 ) 2025-09-14 - 02:37:07 [6]: virtual void Calamares::JobThread::run() Starting job "Set partition information" ( 8 / 42 ) 2025-09-14 - 02:37:07 [6]: QVariantList FillGlobalStorageJob::createPartitionList() const Building partition information map 2025-09-14 - 02:37:07 [6]: .. partitions on "/dev/sda" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sda1" "/dev/sda1" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$cbca1bda" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. partitions on "/dev/sdc" 2025-09-14 - 02:37:07 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdc1" "/dev/sdc1" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$224f32bf" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdc2" "/dev/sdc2" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$6646772b" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$ee86d6ca" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdc3" "/dev/sdc3" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$18cbc7a8" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$4215e0e5" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdc4" "/dev/sdc4" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$e92eb7d3" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$3184b70b" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdc5" "/dev/sdc5" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$150f4a20" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$9b0b876f" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. partitions on "/dev/sdd" 2025-09-14 - 02:37:07 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdd1" "/dev/sdd1" partlabel : "" partition-uuid (partuuid) : "PartUUID$950c4a7e" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$bc9310c3" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdd2" "/dev/sdd2" partlabel : "" partition-uuid (partuuid) : "PartUUID$438f4240" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$5f9f2b0f" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdd3" "/dev/sdd3" partlabel : "" partition-uuid (partuuid) : "PartUUID$4199627b" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$cb9e3e71" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdd4" "/dev/sdd4" partlabel : "" partition-uuid (partuuid) : "PartUUID$327a2669" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$7a2c01ef" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdd5" "/dev/sdd5" partlabel : "" partition-uuid (partuuid) : "PartUUID$825fa5b0" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$fa187ac5" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdd6" "/dev/sdd6" partlabel : "debian" partition-uuid (partuuid) : "PartUUID$98733cb0" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$3712440a" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdd7" "/dev/sdd7" partlabel : "Basic data partition" partition-uuid (partuuid) : "PartUUID$44d62ea5" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "" fs: : "ntfs" fsName : "ntfs" filesystem-uuid (uuid) : "FSUUID$993c8ecf" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdd8" "/dev/sdd8" partlabel : "" partition-uuid (partuuid) : "PartUUID$5c12da87" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$29218581" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdd11" "/dev/sdd11" partlabel : "" partition-uuid (partuuid) : "PartUUID$3dfa60da" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$ec75de1d" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdd9" "/dev/sdd9" partlabel : "" partition-uuid (partuuid) : "PartUUID$9a92b1bb" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$28a60eaa" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sdd10" "/dev/sdd10" partlabel : "Microsoft reserved partition" partition-uuid (partuuid) : "PartUUID$25bbbc1d" parttype : "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. partitions on "/dev/sde" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sde1" "/dev/sde1" partlabel : "" partition-uuid (partuuid) : "PartUUID$db0ce0c" parttype : "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" partattrs : "0" mountPoint: : "/boot/efi" fs: : "fat32" fsName : "fat32" filesystem-uuid (uuid) : "FSUUID$d7f5bff4" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sde2" "/dev/sde2" partlabel : "" partition-uuid (partuuid) : "PartUUID$cb9bcf69" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "/home" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$b4029e62" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "/dev/sde3" "/dev/sde3" partlabel : "" partition-uuid (partuuid) : "PartUUID$a085630c" parttype : "0FC63DAF-8483-4772-8E79-3D69D8477DE4" partattrs : "0" mountPoint: : "" fs: : "ext4" fsName : "ext4" filesystem-uuid (uuid) : "FSUUID$95188f26" claimed : "false" 2025-09-14 - 02:37:07 [6]: .. mapping for "" "unallocated" partlabel : "" partition-uuid (partuuid) : "PartUUID$af8c2c21" parttype : "" partattrs : "0" mountPoint: : "" fs: : "unknown" fsName : "unknown" filesystem-uuid (uuid) : "FSUUID$299f0a4f" claimed : "false" 2025-09-14 - 02:37:07 [6]: virtual Calamares::JobResult FillGlobalStorageJob::exec() Saving partition information map to GlobalStorage["partitions"] 2025-09-14 - 02:37:07 [6]: virtual Calamares::JobResult FillGlobalStorageJob::exec() FillGlobalStorageJob writing empty bootLoader value 2025-09-14 - 02:37:07 [6]: virtual void Calamares::JobThread::run() Starting job "Manage auto-mount settings" ( 9 / 42 ) 2025-09-14 - 02:37:07 [6]: virtual Calamares::JobResult AutoMountManagementJob::exec() Restore automount settings 2025-09-14 - 02:37:07 [6]: .. 2 reply () 2025-09-14 - 02:37:07 [6]: .. 2 reply (QVariant(bool, false)) 2025-09-14 - 02:37:07 [6]: virtual void Calamares::JobThread::run() Starting job "mount" ( 10 / 42 ) 2025-09-14 - 02:37:07 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/mount/main.py" 2025-09-14 - 02:37:07 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 02:37:07 [6]: .. Job description from pretty_name "mount" = "Mounting partitions." 2025-09-14 - 02:37:07 [6]: .. Running ("mount", "-t", "ext4", "/dev/sdd11", "/tmp/calamares-root-4ytl4yub/") 2025-09-14 - 02:37:07 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:07 [6]: .. Running ("sync") 2025-09-14 - 02:37:07 [6]: .. Running ("mount", "-t", "vfat", "/dev/sde1", "/tmp/calamares-root-4ytl4yub/boot/efi") 2025-09-14 - 02:37:07 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:07 [6]: .. Running ("sync") 2025-09-14 - 02:37:07 [6]: .. Running ("mount", "-o", "bind", "/dev", "/tmp/calamares-root-4ytl4yub/dev") 2025-09-14 - 02:37:07 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:07 [6]: .. Running ("sync") 2025-09-14 - 02:37:07 [6]: .. Running ("mount", "-t", "ext4", "/dev/sde2", "/tmp/calamares-root-4ytl4yub/home") 2025-09-14 - 02:37:07 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:07 [6]: .. Running ("sync") 2025-09-14 - 02:37:07 [6]: .. Running ("mount", "-t", "proc", "proc", "/tmp/calamares-root-4ytl4yub/proc") 2025-09-14 - 02:37:07 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:07 [6]: .. Running ("sync") 2025-09-14 - 02:37:07 [6]: .. Running ("mount", "-t", "tmpfs", "tmpfs", "/tmp/calamares-root-4ytl4yub/run") 2025-09-14 - 02:37:07 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:07 [6]: .. Running ("sync") 2025-09-14 - 02:37:07 [6]: .. Running ("mount", "-o", "bind", "/run/udev", "/tmp/calamares-root-4ytl4yub/run/udev") 2025-09-14 - 02:37:07 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:07 [6]: .. Running ("sync") 2025-09-14 - 02:37:07 [6]: .. Running ("mount", "-t", "sysfs", "sys", "/tmp/calamares-root-4ytl4yub/sys") 2025-09-14 - 02:37:07 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:07 [6]: .. Running ("sync") 2025-09-14 - 02:37:07 [6]: .. Running ("mount", "-t", "efivarfs", "efivarfs", "/tmp/calamares-root-4ytl4yub/sys/firmware/efi/efivars") 2025-09-14 - 02:37:07 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:07 [6]: .. Running ("sync") 2025-09-14 - 02:37:08 [6]: virtual void Calamares::JobThread::run() Starting job "unpackfs" ( 11 / 42 ) 2025-09-14 - 02:37:08 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/unpackfs/main.py" 2025-09-14 - 02:37:08 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 02:37:08 [6]: .. Job description from pretty_name "unpackfs" = "Filling up filesystems." 2025-09-14 - 02:37:08 [6]: .. Running ("mount", "-t", "squashfs", "-o", "loop", "/run/live/medium/live/filesystem.squashfs", "/tmp/tmp6w1qf4xb/filesystem") 2025-09-14 - 02:37:08 [6]: .. Finished. Exit code: 0 output: mount: /tmp/tmp6w1qf4xb/filesystem: WARNING: source write-protected, mounted read-only. 2025-09-14 - 02:37:08 [6]: .. Running ("udevadm", "settle") 2025-09-14 - 02:37:08 [6]: .. Running ("sync") 2025-09-14 - 02:37:08 [6]: .. Running ("unsquashfs", "-l", "/run/live/medium/live/filesystem.squashfs") 2025-09-14 - 02:37:09 [6]: .. Running ("rsync", "-aHAXr", "--filter=-x trusted.overlay.*", "--exclude", "/proc/", "--exclude", "/sys/", "--exclude", "/dev/", "--exclude", "/run/", "--exclude", "/run/udev/", "--exclude", "/sys/firmware/efi/efivars/", "--progress", "/tmp/tmp6w1qf4xb/filesystem/", "/tmp/calamares-root-4ytl4yub") 2025-09-14 - 02:37:43 [6]: virtual void Calamares::JobThread::run() Starting job " Run command '/usr/sbin/sources-media'." ( 12 / 42 ) 2025-09-14 - 02:37:43 [6]: .. Running ("/bin/sh", "-c", "/usr/sbin/sources-media") 2025-09-14 - 02:37:52 [6]: .. Finished. Exit code: 0 output: Get:1 file:/run/live/medium bookworm InRelease Ign:1 file:/run/live/medium bookworm InRelease Ign:2 https://deb.debian.org/debian bookworm InRelease Ign:3 https://security.debian.org/debian-security bookworm-security InRelease Ign:4 https://packages.mozilla.org/apt mozilla InRelease Ign:5 http://repo.peppermintos.com/packages bookworm InRelease Ign:6 http://www.deb-multimedia.org bookworm InRelease Ign:7 https://deb.debian.org/debian bookworm-updates InRelease Get:8 file:/run/live/medium bookworm Release [1544 B] Get:8 file:/run/live/medium bookworm Release [1544 B] Get:9 file:/run/live/medium bookworm Release.gpg Ign:9 file:/run/live/medium bookworm Release.gpg Ign:2 https://deb.debian.org/debian bookworm InRelease Ign:3 https://security.debian.org/debian-security bookworm-security InRelease Ign:4 https://packages.mozilla.org/apt mozilla InRelease Ign:5 http://repo.peppermintos.com/packages bookworm InRelease Ign:7 https://deb.debian.org/debian bookworm-updates InRelease Ign:6 http://www.deb-multimedia.org bookworm InRelease Ign:2 https://deb.debian.org/debian bookworm InRelease Ign:3 https://security.debian.org/debian-security bookworm-security InRelease Ign:4 https://packages.mozilla.org/apt mozilla InRelease Ign:5 http://repo.peppermintos.com/packages bookworm InRelease Ign:7 https://deb.debian.org/debian bookworm-updates InRelease Ign:6 http://www.deb-multimedia.org bookworm InRelease Err:2 https://deb.debian.org/debian bookworm InRelease Temporary failure resolving 'deb.debian.org' Err:3 https://security.debian.org/debian-security bookworm-security InRelease Temporary failure resolving 'security.debian.org' Err:4 https://packages.mozilla.org/apt mozilla InRelease Temporary failure resolving 'packages.mozilla.org' Err:6 http://www.deb-multimedia.org bookworm InRelease Temporary failure resolving 'www.deb-multimedia.org' Err:7 https://deb.debian.org/debian bookworm-updates InRelease Temporary failure resolving 'deb.debian.org' Err:5 http://repo.peppermintos.com/packages bookworm InRelease Temporary failure resolving 'repo.peppermintos.com' Reading package lists... W: Invalid 'Date' entry in Release file /var/lib/apt/lists/_run_live_medium_dists_bookworm_Release W: Failed to fetch https://deb.debian.org/debian/dists/bookworm/InRelease Temporary failure resolving 'deb.debian.org' W: Failed to fetch https://security.debian.org/debian-security/dists/bookworm-security/InRelease Temporary failure resolving 'security.debian.org' W: Failed to fetch https://deb.debian.org/debian/dists/bookworm-updates/InRelease Temporary failure resolving 'deb.debian.org' W: Failed to fetch https://packages.mozilla.org/apt/dists/mozilla/InRelease Temporary failure resolving 'packages.mozilla.org' W: Failed to fetch http://www.deb-multimedia.org/dists/bookworm/InRelease Temporary failure resolving 'www.deb-multimedia.org' W: Failed to fetch http://repo.peppermintos.com/packages/dists/bookworm/InRelease Temporary failure resolving 'repo.peppermintos.com' W: Some index files failed to download. They have been ignored, or old ones used instead. rmdir: failed to remove '/tmp/calamares-root-4ytl4yub/run/live/medium': Device or resource busy rmdir: failed to remove '/tmp/calamares-root-4ytl4yub/run/live': Directory not empty 2025-09-14 - 02:37:52 [6]: virtual void Calamares::JobThread::run() Starting job "Generate machine-id." ( 13 / 42 ) 2025-09-14 - 02:37:52 [2]: Calamares::JobResult MachineId::createEntropy(EntropyGeneration, const QString&, const QString&) WARNING: Host system entropy does not exist at "/var/lib/urandom/random-seed" 2025-09-14 - 02:37:52 [6]: .. Running ("systemd-machine-id-setup") 2025-09-14 - 02:37:53 [6]: .. Finished. Exit code: 0 output: Initializing machine ID from random generator. 2025-09-14 - 02:37:53 [6]: .. Running ("ln", "-sf", "/etc/machine-id", "/var/lib/dbus/machine-id") 2025-09-14 - 02:37:53 [6]: virtual void Calamares::JobThread::run() Starting job "fstab" ( 14 / 42 ) 2025-09-14 - 02:37:53 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/fstab/main.py" 2025-09-14 - 02:37:53 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 02:37:53 [6]: .. Job description from pretty_name "fstab" = "Writing fstab." 2025-09-14 - 02:37:53 [6]: virtual void Calamares::JobThread::run() Starting job "Set timezone to Asia/Shanghai" ( 15 / 42 ) 2025-09-14 - 02:37:53 [6]: .. Running ("rm", "-f", "/etc/localtime") 2025-09-14 - 02:37:53 [6]: .. Running ("ln", "-s", "/usr/share/zoneinfo/Asia/Shanghai", "/etc/localtime") 2025-09-14 - 02:37:53 [6]: virtual void Calamares::JobThread::run() Starting job "Set keyboard model to pc105, layout to us-" ( 16 / 42 ) 2025-09-14 - 02:37:53 [6]: virtual Calamares::JobResult SetKeyboardLayoutJob::exec() Executing SetKeyboardLayoutJob 2025-09-14 - 02:37:53 [6]: bool SetKeyboardLayoutJob::writeVConsoleData(const QString&, const QString&) const Writing vconsole data to "/tmp/calamares-root-4ytl4yub/etc/vconsole.conf" 2025-09-14 - 02:37:53 [6]: QString SetKeyboardLayoutJob::findConvertedKeymap(const QString&) const Looking for converted keymap in "" 2025-09-14 - 02:37:53 [6]: QString findLegacyKeymap(const QString&, const QString&, const QString&) Looking for legacy keymap "us" "pc105" "" in QRC 2025-09-14 - 02:37:53 [6]: .. Found legacy keymap "us" with score 11 2025-09-14 - 02:37:53 [6]: .. Found legacy keymap "us-acentos" with score 11 2025-09-14 - 02:37:53 [6]: .. Found legacy keymap "dvorak" with score 11 2025-09-14 - 02:37:53 [6]: .. Found legacy keymap "dvorak" with score 11 2025-09-14 - 02:37:53 [6]: .. Written KEYMAP= "us" to vconsole.conf 0 2025-09-14 - 02:37:53 [6]: bool SetKeyboardLayoutJob::writeX11Data(const QString&) const Writing X11 configuration to "/tmp/calamares-root-4ytl4yub/etc/X11/xorg.conf.d/00-keyboard.conf" 2025-09-14 - 02:37:53 [6]: .. Written XkbLayout "us" ; XkbModel "pc105" ; XkbVariant "" to X.org file "/tmp/calamares-root-4ytl4yub/etc/X11/xorg.conf.d/00-keyboard.conf" 0 2025-09-14 - 02:37:53 [6]: bool SetKeyboardLayoutJob::writeDefaultKeyboardData(const QString&) const Writing default keyboard data to "/tmp/calamares-root-4ytl4yub/etc/default/keyboard" 2025-09-14 - 02:37:53 [6]: .. Written XKBMODEL "pc105" ; XKBLAYOUT "us" ; XKBVARIANT "" to /etc/default/keyboard file "/tmp/calamares-root-4ytl4yub/etc/default/keyboard" 0 2025-09-14 - 02:37:53 [6]: virtual void Calamares::JobThread::run() Starting job "localecfg" ( 17 / 42 ) 2025-09-14 - 02:37:53 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/localecfg/main.py" 2025-09-14 - 02:37:53 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 02:37:53 [6]: .. Job description from pretty_name "localecfg" = "Configuring locales." 2025-09-14 - 02:37:53 [6]: .. Running ("locale-gen") 2025-09-14 - 02:37:56 [6]: .. Finished. Exit code: 0 output: Generating locales (this might take a while)... en_US.UTF-8... done zh_CN.UTF-8... done Generation complete. 2025-09-14 - 02:37:56 [6]: [PYTHON JOB]: "/tmp/calamares-root-4ytl4yub/etc/locale.gen done" 2025-09-14 - 02:37:56 [6]: [PYTHON JOB]: "/tmp/calamares-root-4ytl4yub/etc/locale.conf done" 2025-09-14 - 02:37:56 [6]: [PYTHON JOB]: "/tmp/calamares-root-4ytl4yub/etc/default done" 2025-09-14 - 02:37:56 [6]: virtual void Calamares::JobThread::run() Starting job "Configure
    sudo
    users." ( 18 / 42 ) 2025-09-14 - 02:37:56 [6]: virtual void Calamares::JobThread::run() Starting job "Preparing groups." ( 19 / 42 ) 2025-09-14 - 02:37:56 [6]: virtual void Calamares::JobThread::run() Starting job "Create user vincent" ( 20 / 42 ) 2025-09-14 - 02:37:56 [6]: virtual Calamares::JobResult CreateUserJob::exec() [CREATEUSER]: creating user 2025-09-14 - 02:37:56 [6]: .. Running ("useradd", "-m", "-U", "-s", "/bin/bash", "-c", "vincent", "vincent") 2025-09-14 - 02:37:57 [6]: .. Finished. Exit code: 0 output: useradd: warning: the home directory /home/vincent already exists. useradd: Not copying any file from skel directory into it. 2025-09-14 - 02:37:57 [6]: .. Running "usermod" "-aG" "cdrom,floppy,sudo,audio,dip,video,plugdev,netdev,lpadmin,scanner,bluetooth" "vincent" 2025-09-14 - 02:37:57 [6]: .. Running ("chown", "-R", "vincent:vincent", "/home/vincent") 2025-09-14 - 02:37:58 [6]: virtual void Calamares::JobThread::run() Starting job "Set password for user vincent" ( 21 / 42 ) 2025-09-14 - 02:37:58 [6]: .. Running "usermod" "-p" "vincent" 2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run() Starting job "Set password for user root" ( 22 / 42 ) 2025-09-14 - 02:37:59 [6]: .. Running ("passwd", "-dl", "root") 2025-09-14 - 02:37:59 [6]: .. Finished. Exit code: 0 output: passwd: password changed. 2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run() Starting job "Set hostname so" ( 23 / 42 ) 2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run() Starting job "displaymanager" ( 24 / 42 ) 2025-09-14 - 02:37:59 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/displaymanager/main.py" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 02:37:59 [6]: .. Job description from __doc__ "displaymanager" = "Configure display managers." 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "slim selected but not installed" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "sddm selected but not installed" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "gdm selected but not installed" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "mdm selected but not installed" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "lxdm selected but not installed" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "kdm selected but not installed" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "Using rootMountPoint '/tmp/calamares-root-4ytl4yub'" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: ".. selected DE xfce" 2025-09-14 - 02:37:59 [2]: boost::python::api::object CalamaresPython::GlobalStoragePythonWrapper::value(const std::string&) const WARNING: Unknown GS key autoLoginUser 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "Unsetting autologin." 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "found greeter lightdm-gtk-greeter" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "lightdm-gtk-greeter configured as greeter." 2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run() Starting job "networkcfg" ( 25 / 42 ) 2025-09-14 - 02:37:59 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/networkcfg/main.py" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 02:37:59 [6]: .. Job description from pretty_name "networkcfg" = "Saving network configuration." 2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run() Starting job "hwclock" ( 26 / 42 ) 2025-09-14 - 02:37:59 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/hwclock/main.py" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 02:37:59 [6]: .. Job description from pretty_name "hwclock" = "Setting hardware clock." 2025-09-14 - 02:37:59 [6]: .. Running ("hwclock", "--systohc", "--utc") 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "Hwclock set using RTC method." 2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run() Starting job "services-systemd" ( 27 / 42 ) 2025-09-14 - 02:37:59 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/services-systemd/main.py" 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 02:37:59 [6]: .. Job description from pretty_name "services-systemd" = "Configure systemd services" 2025-09-14 - 02:37:59 [6]: .. Running ("systemctl", "enable", "fstrim.timer") 2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run() Starting job " Run command '/usr/sbin/bootloader-config'." ( 28 / 42 ) 2025-09-14 - 02:37:59 [6]: .. Running ("/bin/sh", "-c", "/usr/sbin/bootloader-config") 2025-09-14 - 02:40:26 [6]: .. Finished. Exit code: 0 output: Get:1 file:/run/live/medium bookworm InRelease Ign:1 file:/run/live/medium bookworm InRelease Get:2 file:/run/live/medium bookworm Release [1544 B] Get:2 file:/run/live/medium bookworm Release [1544 B] Get:3 file:/run/live/medium bookworm Release.gpg Ign:3 file:/run/live/medium bookworm Release.gpg Ign:4 http://www.deb-multimedia.org bookworm InRelease Get:5 https://packages.mozilla.org/apt mozilla InRelease [1522 B] Get:6 https://packages.mozilla.org/apt mozilla/main all Packages [5042 kB] Get:7 https://security.debian.org/debian-security bookworm-security InRelease [48.0 kB] Ign:4 http://www.deb-multimedia.org bookworm InRelease Get:9 https://packages.mozilla.org/apt mozilla/main amd64 Packages [95.6 kB] Get:8 https://repo.peppermintos.com/packages bookworm InRelease [17.4 kB] Get:10 https://security.debian.org/debian-security bookworm-security/non-free-firmware Sources [796 B] Get:11 https://repo.peppermintos.com/packages bookworm/main amd64 Packages [68.3 kB] Ign:4 http://www.deb-multimedia.org bookworm InRelease Get:12 https://deb.debian.org/debian bookworm InRelease [151 kB] Get:13 https://security.debian.org/debian-security bookworm-security/main Sources [151 kB] Err:4 http://www.deb-multimedia.org bookworm InRelease Connection failed [IP: 158.69.254.113 80] Get:14 https://security.debian.org/debian-security bookworm-security/main amd64 Packages [278 kB] Get:15 https://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] Get:16 https://deb.debian.org/debian bookworm/main Sources [9494 kB] Get:17 https://deb.debian.org/debian bookworm/non-free Sources [77.9 kB] Get:18 https://deb.debian.org/debian bookworm/non-free-firmware Sources [7148 B] Get:19 https://deb.debian.org/debian bookworm/contrib Sources [51.1 kB] Get:20 https://deb.debian.org/debian bookworm/main amd64 Packages [8791 kB] Get:21 https://deb.debian.org/debian bookworm/main Translation-en [6109 kB] Get:22 https://deb.debian.org/debian bookworm/contrib amd64 Packages [53.5 kB] Get:23 https://deb.debian.org/debian bookworm/contrib Translation-en [48.4 kB] Get:24 https://deb.debian.org/debian bookworm/non-free amd64 Packages [102 kB] Get:25 https://deb.debian.org/debian bookworm/non-free Translation-en [68.1 kB] Get:26 https://deb.debian.org/debian bookworm-updates/main Sources.diff/Index [21.8 kB] Ign:26 https://deb.debian.org/debian bookworm-updates/main Sources.diff/Index Get:27 https://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [21.8 kB] Ign:27 https://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index Get:28 https://deb.debian.org/debian bookworm-updates/main Translation-en.diff/Index [20.7 kB] Ign:28 https://deb.debian.org/debian bookworm-updates/main Translation-en.diff/Index Get:29 https://deb.debian.org/debian bookworm/non-free-firmware amd64 Packages [6368 B] Get:30 https://deb.debian.org/debian bookworm/non-free-firmware Translation-en [20.9 kB] Get:31 https://deb.debian.org/debian bookworm-updates/main Sources [3288 B] Get:32 https://deb.debian.org/debian bookworm-updates/main amd64 Packages [6924 B] Get:33 https://deb.debian.org/debian bookworm-updates/main Translation-en [5448 B] Get:34 https://security.debian.org/debian-security bookworm-security/main Translation-en [168 kB] Get:35 https://security.debian.org/debian-security bookworm-security/contrib amd64 Packages [896 B] Get:36 https://security.debian.org/debian-security bookworm-security/contrib Translation-en [652 B] Get:37 https://security.debian.org/debian-security bookworm-security/non-free-firmware amd64 Packages [688 B] Fetched 31.0 MB in 1min 34s (329 kB/s) Reading package lists... W: Invalid 'Date' entry in Release file /var/lib/apt/lists/_run_live_medium_dists_bookworm_Release W: Failed to fetch http://www.deb-multimedia.org/dists/bookworm/InRelease Connection failed [IP: 158.69.254.113 80] W: Some index files failed to download. They have been ignored, or old ones used instead. Running bootloader-config... * Installing grub-efi (uefi)... Reading package lists... Building dependency tree... Reading state information... grub-efi-amd64 is already the newest version (2.06-13+deb12u1). 0 upgraded, 0 newly installed, 0 to remove and 641 not upgraded. Generating grub configuration file ... Found linux image: /boot/vmlinuz-6.1.0-22-amd64 Found initrd image: /boot/initrd.img-6.1.0-22-amd64 Warning: os-prober will be executed to detect other bootable partitions. Its output will be used to detect bootable binaries on them and create new boot entries. grub-probe: error: cannot find a GRUB drive for /dev/sdb2. Check your device.map. Found Ubuntu 25.04 (25.04) on /dev/sdd1 Found Pop!_OS 22.04 LTS (22.04) on /dev/sdd2 Found AnduinOS 1.3.5 (1.3.5) on /dev/sdd3 Found Manjaro Linux (25.0.8) on /dev/sdd4 Found elementary OS 8 (8) on /dev/sdd5 Found Debian GNU/Linux 13 (trixie) on /dev/sdd6 Found Ubuntu 25.04 (25.04) on /dev/sdd8 Found Linux Mint 22.2 Zara (22.2) on /dev/sdd9 Found Winux 11 (24.04) on /dev/sde3 done 2025-09-14 - 02:40:26 [6]: virtual void Calamares::JobThread::run() Starting job "grubcfg" ( 29 / 42 ) 2025-09-14 - 02:40:26 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/grubcfg/main.py" 2025-09-14 - 02:40:26 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 02:40:26 [6]: .. Job description from pretty_name "grubcfg" = "Configure GRUB." 2025-09-14 - 02:40:26 [6]: .. Running ("sh", "-c", "which dracut") 2025-09-14 - 02:40:26 [6]: .. Target cmd: ("sh", "-c", "which dracut") Exit code: 1 (no output) 2025-09-14 - 02:40:26 [6]: .. Running ("sh", "-c", "which plymouth") 2025-09-14 - 02:40:26 [6]: .. Finished. Exit code: 0 output: /usr/bin/plymouth 2025-09-14 - 02:40:26 [6]: virtual void Calamares::JobThread::run() Starting job "bootloader" ( 30 / 42 ) 2025-09-14 - 02:40:26 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/bootloader/main.py" 2025-09-14 - 02:40:26 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 02:40:26 [6]: .. Job description from pretty_name "bootloader" = "Install bootloader." 2025-09-14 - 02:40:26 [6]: [PYTHON JOB]: "Bootloader: grub (efi)" 2025-09-14 - 02:40:26 [6]: .. Running ("grub-install", "--target=x86_64-efi", "--efi-directory=/boot/efi", "--bootloader-id=peppermint", "--force") 2025-09-14 - 02:40:49 [6]: .. Finished. Exit code: 0 output: Installing for x86_64-efi platform. Installation finished. No error reported. 2025-09-14 - 02:40:49 [6]: [PYTHON JOB]: "UEFI Fallback: True" 2025-09-14 - 02:40:49 [6]: [PYTHON JOB]: " .. installing 'bootx64.efi' fallback firmware" 2025-09-14 - 02:40:49 [6]: .. Running ("grub-mkconfig", "-o", "/boot/grub/grub.cfg") 2025-09-14 - 02:41:38 [6]: .. Finished. Exit code: 0 output: Generating grub configuration file ... Found linux image: /boot/vmlinuz-6.1.0-22-amd64 Found initrd image: /boot/initrd.img-6.1.0-22-amd64 Warning: os-prober will be executed to detect other bootable partitions. Its output will be used to detect bootable binaries on them and create new boot entries. grub-probe: error: cannot find a GRUB drive for /dev/sdb2. Check your device.map. Found Ubuntu 25.04 (25.04) on /dev/sdd1 Found Pop!_OS 22.04 LTS (22.04) on /dev/sdd2 Found AnduinOS 1.3.5 (1.3.5) on /dev/sdd3 Found Manjaro Linux (25.0.8) on /dev/sdd4 Found elementary OS 8 (8) on /dev/sdd5 Found Debian GNU/Linux 13 (trixie) on /dev/sdd6 Found Ubuntu 25.04 (25.04) on /dev/sdd8 Found Linux Mint 22.2 Zara (22.2) on /dev/sdd9 Found Winux 11 (24.04) on /dev/sde3 done 2025-09-14 - 02:41:38 [6]: virtual void Calamares::JobThread::run() Starting job "packages" ( 31 / 42 ) 2025-09-14 - 02:41:38 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec() Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/packages/main.py" 2025-09-14 - 02:41:38 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 2025-09-14 - 02:41:38 [6]: .. Job description from pretty_name "packages" = "Install packages." 2025-09-14 - 02:41:38 [6]: [PYTHON JOB]: "Install packages." 2025-09-14 - 02:41:38 [6]: .. Running ("apt-get", "--purge", "-q", "-y", "remove", "live-boot", "live-boot-doc", "live-config", "live-config-doc", "live-config-systemd", "live-config-systemd", "live-tools", "live-task-localisation", "live-task-recommended", "calamares-settings-debian", "calamares") *>*>*>()>*>*>*>*>()>(const>(const>(const>(const>(const>(const>(const>(const>(const>(const>(const>()>()>*>*>()>*>

    20250913 0243
    ...

    立即注册
    更新于:2025-09-14 02:45:43

    install linux peppermint os 2

    2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run()

    Starting job " Run command '/usr/sbin/bootloader-config'." ( 28 / 42 )

    2025-09-14 - 02:37:59 [6]: .. Running ("/bin/sh", "-c", "/usr/sbin/bootloader-config") why every time , /usr/sbin/bootloader-config use a lot time about 10min ,and before here 62% is always install failed ,but this i format ESP, is good,Yep , say chinese

    syh0304: 2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "Using rootMountPoint '/tmp/calamares-root-4ytl4yub'" 
    2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: ".. selected DE xfce" 
    2025-09-14 - 02:37:59 [2]: boost::python::api::object CalamaresPython::GlobalStoragePythonWrapper::value(const std::string&) const
        WARNING: Unknown GS key autoLoginUser 
    2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "Unsetting autologin." 
    2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "found greeter lightdm-gtk-greeter" 
    2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "lightdm-gtk-greeter configured as greeter." 
    2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run()
        Starting job "networkcfg" ( 25 / 42 ) 
    2025-09-14 - 02:37:59 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec()
        Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/networkcfg/main.py" 
    2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 
    2025-09-14 - 02:37:59 [6]:     .. Job description from pretty_name "networkcfg" = "Saving network configuration." 
    2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run()
        Starting job "hwclock" ( 26 / 42 ) 
    2025-09-14 - 02:37:59 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec()
        Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/hwclock/main.py" 
    2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 
    2025-09-14 - 02:37:59 [6]:     .. Job description from pretty_name "hwclock" = "Setting hardware clock." 
    2025-09-14 - 02:37:59 [6]:     .. Running ("hwclock", "--systohc", "--utc") 
    2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: "Hwclock set using RTC method." 
    2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run()
        Starting job "services-systemd" ( 27 / 42 ) 
    2025-09-14 - 02:37:59 [6]: virtual Calamares::JobResult Calamares::PythonJob::exec()
        Job file "/usr/lib/x86_64-linux-gnu/calamares/modules/services-systemd/main.py" 
    2025-09-14 - 02:37:59 [6]: [PYTHON JOB]: Found gettext "en_US" in "/usr/share/locale/en_US" 
    2025-09-14 - 02:37:59 [6]:     .. Job description from pretty_name "services-systemd" = "Configure systemd services" 
    2025-09-14 - 02:37:59 [6]:     .. Running ("systemctl", "enable", "fstrim.timer") 
    2025-09-14 - 02:37:59 [6]: virtual void Calamares::JobThread::run()
        Starting job " Run command '/usr/sbin/bootloader-config'." ( 28 / 42 ) 
    2025-09-14 - 02:37:59 [6]:     .. Running ("/bin/sh", "-c", "/usr/sbin/bootloader-config")   why every time , /usr/sbin/bootloader-config use a lot time  about 10min ,and before here 62% is always install failed ,but this i format ESP, is good,Yep  , say chinese
    GitHub Copilot: 你这次安装是成功的!
    之前安装失败,通常是因为 ESP(EFI 系统分区)没有正确格式化或挂载。这次你重新格式化了 ESP 分区,安装过程顺利通过了 62% 并继续进行,bootloader-config 虽然耗时较长(约10分钟),但没有报错,说明引导器已经正确安装。
    总结:这次分区和安装操作是正确的,系统可以正常启动。
    如果后续有启动或使用上的问题,可以随时问我。
    syh0304: why 70% had used 5min ,Purging configuration files for live-config-systemd (11.0.3+nmu1) ...
    2025-09-14 - 02:42:24 [6]:     .. Running ("apt-get", "--purge", "-q", "-y", "autoremove")  ,explain Running ("apt-get", "--purge", "-q", "-y", "autoremove")   say chinese
    GitHub Copilot: 70% 进度时花了5分钟,是因为正在清理系统中不再需要的配置文件和软件包。
    命令解释:
    ```bash
    apt-get --purge -q -y autoremove
    ```
    - `apt-get`:Debian/Ubuntu 系统的软件包管理工具。
    - `--purge`:彻底删除软件包,包括配置文件。
    - `-q`:安静模式,减少输出信息。
    - `-y`:自动回答“是”,无需人工确认。
    - `autoremove`:自动删除系统中不再需要的依赖包。
    中文说明:  
    这个命令会自动、彻底地清理系统中不再需要的软件和相关配置文件,所以会花一些时间,属于正常现象。
    @openvpn.net>
    

    202509014 0252 ...

    立即注册
    更新于:2025-09-14 03:34:28

    基于debian操作系统,有哪些做的比较好的操作系统介绍出来,然后发链接

    基于debian操作系统,有哪些做的比较好的操作系统介绍出来,多介绍几个,然后发链接

    20250914 0404...

    立即注册
    更新于:2025-09-14 04:08:01

    未访问到的网址

    https://mxlinux.org/...

    立即注册
    更新于:2025-09-14 05:20:29
    相关内容

    操作系统相关知识

    重装系统出现error16:inconsistent filesy解决方法

    Linux操作系统常用命令

    windows 用户变量和系统变量的差别-操作系统相关知识

    cron和crontab命令详解 crontab 每分钟、每小时、每天、每周、每月、每年定时...

    Linux crontab用法、启动关闭重启操作

    Linux(centos)系统各个目录的作用详解

    CentOS系统下各文件夹的作用

    windows操作系统相关问题整理

    Linux 操作系统相关问题整理

    怎么在WIN10的任务栏里不显示 参与创作的艺术家,唱片集等信息

    操作系统常用命令

    常用的Linux下查看服务器配置的命令

    Linux上安装rz和sz命令 yum -y install lrzsz

    用tcping检查网站开放的端口-TCPING小工具的使用和下载

    Windows下查看mysql是否启动

    怎么查看Windows的启动分区是哪一个分区呢?

    Linux操作系统安装

    Ubuntu 25.04 (Plucky Puffin) Desktop安装

    linux下多系统安装包括之前安装的Windows如何正确安装,保证多启动时多系统。

    关于ESP分区的挂载和备份中要注意的事项

    Linux下磁盘健康检查用的命令sudo smartctl -a /dev/sdd

    运行一次短时间的硬盘自检​​ sudo smartctl -t short /dev/sdd

    如何在Linux里用命令查看主版BIOS的boot启动项都有哪些

    修复WINDOWS启动报错

    修复WINDOWS启动报错之二

    修复WINDOWS启动报错之三

    linux不通过商店安装vs code

    linux desktop 现在运行速度最快的几个,并发下网址

    基于Arch,带桌面的,最受欢迎的是

    最受欢迎的Linux系统

    linux系统安装涉及的命令

    Windows操作系统相关内容

    Windows 自带“系统映像备份”(已隐藏) 这个在怎么用

    Motrix启动报错Failed to get 'downloads' path

    推荐内容

    怎样使用V2Ray代理和SSTap玩如魔兽世界/绝地求生/LOL台服/战地3/黑色沙漠/彩...

    sstap游戏代理教程 从此玩如魔兽世界/绝地求生/LOL台服/战地3/黑色沙漠/彩虹六...

    BT磁力搜索网站汇总和找不到的资源

    什么是磁力链接,您如何使用?

    Z-Library:全球最大的数字图书馆/含打不开的解决方案/镜像

    使用V2Ray的mKCP协议加速游戏

    v2rayN已停止工作

    【车险课堂】什么是无赔款优待系数ncd,你“造”吗?