Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

6
  • There is no "msdos" filesystem, what they refer to as "msdos" is the partition table. You still need to create the partitions before you can mount the drive. In any event, please link the tutorial you followed, as there seem to be quite a bit of confusion and misunderstandings going on. Commented Dec 23, 2021 at 23:56
  • @polemon I added the link Commented Dec 23, 2021 at 23:59
  • OK, you need to watch the tutorial further. He shows at 3:03 how to mount the FS he partitioned at. In fact this tutorial is pretty bad, as he failed to explain that what he created on the USB drive is a FAT32 filesystem. Also, don't use mv use cp if you haven't done so. You can use the option --no-preserve to select attributes which should not be preserved, like cp --no-preserve=mode. Commented Dec 24, 2021 at 0:10
  • The FAT32 filesystem doesn't support unix permissions, so any attempt to set perms will result in an error. Did you check to see if the tar file was actually moved to the USB stick? My bet is that the mv succeeded, and the error message is only about the failure to set the file's perms after it was moved (that's how it works on Linux with GNU mv -- OpenBSD's implementation of mv may behave differently, like trying to set perms before the mv has completed. dunno). Also, as @polemon says, probably best to use cp rather than mv. You can always delete the original afterwards if needed. Commented Dec 24, 2021 at 0:44
  • 2
    mv first moves the file, then it tries to set the permissions to what they were before it was moved. the first action works, the second fails (because FAT32 doesn't support unix file permissions) Commented Dec 24, 2021 at 1:29