Help for Current Versions of MX
When asking for help, use Quick System Info from MX Tools. It will be properly formatted using the following steps.
1. Click on Quick System Info in MX Tools
2. Right click in your post and paste.
dolphin_oracle wrote: Sun Dec 17, 2023 10:53 am
live-usb-maker doens't care if the device is preformatted or not. especially the dd mode, which just replaces the file system anyway. you could do a dd write onto completed blank media, no filesystem at all.
for the "full featured" writes, live-usb-maker reformats the device anyway.
I suppose there could be some issue with informing the kernel of the change in format on an sd card in a usb adapter. if so, probably wouldn't happen to all users.
It's one of those issues where translated strings get processed,
and processing fails due to unexpacted strings.
Send a fix shortly to github, where
ui->comboBoxDataFormat->currentIndex()
is used instead of
ui->comboBoxDataFormat->currentText()
which provides desired format from a list
QList<QString> format_list = format_list << "vfat" << "ext4" << "exfat" << "ntfs";
...
~~~
that was my next guess!
thanks! that really shouldn't be translated. I'll take care of it.
kris777 wrote: Sun Dec 17, 2023 12:40 pm
Hurray, it works properly! this is probably an error related to the language of the MXlinux System and the Format USB program :-)
I should have handled the combo box choice better. Thanks for the report!!!