Format USB - MX tool - does it work properly?  [Solved]

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.
Message
Author
User avatar
kris777
Posts: 58
Joined: Thu Mar 15, 2018 2:00 pm

Format USB - MX tool - does it work properly?

#1 Post by kris777 »

I wanted to format my pendrive to install a live USB iso with the MXlinux 23 AHS system on it... and I used the Format USB program, unfortunately, despite several attempts to format it to fat32 / ext4 and confirming that everything was OK, the pendrive remained unformatted with the files that were there before? that's why I'm asking whether the Format USB program works properly for you? Is this problem only on my laptop?

User avatar
chrispop99
Global Moderator
Posts: 3389
Joined: Tue Jan 27, 2009 2:07 pm

Re: Format USB - MX tool - does it work properly?

#2 Post by chrispop99 »

I've used it hundreds of times with zero failures, and it works 100% for me.

Are you absolutely sure you are selecting the correct drive in the dialogue?

Chris
MX Facebook Group Administrator.
Home-built desktop - Core i5 9400, 970 EVO Plus, 8GB
DELL XPS 15
Lots of test machines

User avatar
kris777
Posts: 58
Joined: Thu Mar 15, 2018 2:00 pm

Re: Format USB - MX tool - does it work properly?

#3 Post by kris777 »

I'm 100% sure, I only have one 32GB pendrive with two files related to the veracrypt program and after formatting with the Format USB program, nothing happens and the files remain on the pendrive :-)
I'll take some screenshots
Image
Image
Image
Image
Maybe there is something wrong with my system? or compatibility of Lenovo legion 5 pro with MXlinux?
Last edited by kris777 on Sun Dec 17, 2023 5:09 am, edited 4 times in total.

User avatar
linexer2016
Posts: 733
Joined: Thu Dec 15, 2016 8:15 pm

Re: Format USB - MX tool - does it work properly?

#4 Post by linexer2016 »

kris777 wrote: Sun Dec 17, 2023 4:49 am I wanted to format my pendrive to install a live USB iso with the MXlinux 23 AHS system on it... and I used the Format USB program, unfortunately, despite several attempts to format it to fat32 / ext4 and confirming that everything was OK, the pendrive remained unformatted with the files that were there before? that's why I'm asking whether the Format USB program works properly for you? Is this problem only on my laptop?
Like Chrispop, I too have used this tool with no apparent issues. Probably only used it a half dozen times but again, no issues.
Is your usb write protected by any chance?

User avatar
kris777
Posts: 58
Joined: Thu Mar 15, 2018 2:00 pm

Re: Format USB - MX tool - does it work properly?

#5 Post by kris777 »

Well, the Format USB program doesn't work on my laptop, but I saved the MXlinux 23 AHS live usb ISO file correctly without prior formatting with the program: MX live USB maker / dd option, read-only image mode
ps.
I ran this live system from USB on a laptop and it works properly...kernel version 6.5.0-1 wifi works OK with the Intel AX201 card
USB does not have write protection because it is a 32GB mini SD card inserted only in the USB adapter.

MXRobo
Posts: 1840
Joined: Thu Nov 14, 2019 12:09 pm

Re: Format USB - MX tool - does it work properly?

#6 Post by MXRobo »

I'm reaching here, and I haven't use that app from some time and used only very basic features, but I'm curious about this comment: "despite several attempts to format it to fat32 / ext4".
Shouldn't it be formatted to fat32 before using MX-Live-USB-Maker?

I realize that wouldn't have anything to do with it not formatting it though, unless trying two fomats at the same time – I said I'm reaching.
What about deleting the files first?

Maybe reinstall formatusb?

Could the USB be bad? https://www.cyberciti.biz/faq/linux-che ... ash-drive/
Probably not if you wrote to it with MX-Live-USB-Maker.

Good Luck.

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

Re: Format USB - MX tool - does it work properly?

#7 Post by dolphin_oracle »

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.
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/

User avatar
kris777
Posts: 58
Joined: Thu Mar 15, 2018 2:00 pm

Re: Format USB - MX tool - does it work properly?

#8 Post by kris777 »

For the test, I checked another known program for formatting and saving ISO. mintstick v.1.5.7 I installed the last version from the .deb file if it's important. For testing, of course, I have the same 32Gb pendrive and everything went quickly and smoothly, both formatting to FAT32 and EXT4.
http://packages.linuxmint.com/pool/main/m/mintstick/
I tested the program once again on the same 32GB USB: Format USB... unfortunately with a similar result, i.e. no possibility of formatting despite the information about the success of the operation :-)
Last edited by kris777 on Sun Dec 17, 2023 11:33 am, edited 1 time in total.

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

Re: Format USB - MX tool - does it work properly?

#9 Post by fehlix »

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.
Nope..,
reproducable with

Code: Select all

LANG=pl_PL.UTF-8 format-usb
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";
...
~~~

nirav
Posts: 44
Joined: Fri Nov 10, 2023 1:00 pm

Re: Format USB - MX tool - does it work properly?

#10 Post by nirav »

I use Ventoy for all the iso works incredibly well.
https://www.ventoy.net/en/index.html
Thank you!
Nirav :cool:

Post Reply

Return to “MX Help”