I get a warning as the app starts up.
Libparted warning: The driver descriptor says the physical block size is 2048 bytes, but Linux says it is 512 bytes.
What does it mean? Because of this warning, I didn't do anything with the app.
I get a warning as the app starts up.
Libparted warning: The driver descriptor says the physical block size is 2048 bytes, but Linux says it is 512 bytes.
What does it mean? Because of this warning, I didn't do anything with the app.
Check this article: gparted block size warning
WARNING: the command shown at the link above will destroy all data on the given device - the same goes for the command below.
It does mention to the same warning message. When a USB stick was used to install Ubuntu, the creation of the booteable media could change the block size of the USB device.
The solution, according to the article author is to run the following command, replacing <device_path>
, with your device path, for example /dev/sdb
:
sudo dd if=/dev/zero of=<device_path> bs=2048 count=1 # this will destroy all data on the given device