Search Criteria
Package Details: multios-usb-bin 0.12.1-2
Package Actions
| Git Clone URL: | https://aur.archlinux.org/multios-usb-bin.git (read-only, click to copy) |
|---|---|
| Package Base: | multios-usb-bin |
| Description: | Simple tool for creating GRUB multiboot USB with Secure Boot support. |
| Upstream URL: | https://github.com/Mexit/MultiOS-USB |
| Keywords: | bootable iso multiboot usb wim windows |
| Licenses: | GPL-3.0-or-later |
| Conflicts: | multios-usb, multios-usb-bin-git, multios-usb-git |
| Provides: | multios-usb |
| Submitter: | ebbez |
| Maintainer: | ebbez (MexIT) |
| Last Packager: | ebbez |
| Votes: | 2 |
| Popularity: | 0.33 |
| First Submitted: | 2026-04-14 19:27 (UTC) |
| Last Updated: | 2026-07-20 20:43 (UTC) |
Dependencies (10)
- bzip2 (bzip2-gitAUR)
- exfatprogs (exfatprogs-gitAUR)
- gptfdisk (gptfdisk-gitAUR)
- libarchive (libarchive-gitAUR)
- tar (tar-gitAUR, uutils-tar-gitAUR)
- util-linux (util-linux-aesAUR, util-linux-selinuxAUR)
- xz (xz-gitAUR)
- dosfstools (dosfstools-gitAUR) (optional) – FAT16/32 support
- e2fsprogs (e2fsprogs-gitAUR) (optional) – ext2/3/4 support
- ntfs-3g (ntfsprogs-plus-gitAUR, ntfsprogs-plusAUR) (optional) – NTFS support
Latest Comments
ebbez commented on 2026-07-22 15:25 (UTC)
Hi @xfs, I've tried reproducing the issue but I'm unable to. Are you the same person as the person that reported it upstream?
I've got a PKGBUILD ready with
in the prepare() function.
xfs commented on 2026-07-21 17:49 (UTC)
Installation fails on Arch Linux with GNU tar 1.35 when extracting the GRUB archive onto the FAT32 EFI partition, because tar tries to preserve file ownership. Adding
--no-same-ownerto the tar command inmultios-usb.shfixes the issue.It's already reported upstream on GitHub.
ebbez commented on 2026-07-20 20:56 (UTC) (edited on 2026-07-20 21:01 (UTC) by ebbez)
Hi @syl, thanks for your feedback. Good call on the bsdtar dependency, I didn't know it wasn't included by default in de base/base-devel pkgs. I've added
libarchiveto depends.Regarding the PGP/GPG authenticity verification: I don't believe any archives/artefacts are signed by the developer.
I'm currently not too active on the maintainership, but extra eyes are always welcome! I try to get updates within a week of them being released, but sometimes I might forget them. Mexit (the upstream author) also has Co-Maintainership here on the AUR, so can also take control whenever needed.
syl commented on 2026-06-18 17:50 (UTC) (edited on 2026-06-18 17:50 (UTC) by syl)
Hi @Ebbez, again thanks for maintaining this package! I've reviewed your PKGBUILD and wanted to share a few gentle suggestions that could help strengthen it according to Arch packaging best practices. Nothing is urgent or blocking—just things to consider for future iterations some security improvements:
Add PGP Signature Verification Currently the package downloads from GitHub releases over HTTPS without verifying the upstream release authenticity with GPG signatures. If you have access to the developer's public key (likely on GitHub or Keybase), consider adding validpgpkeys and downloading signature files alongside the sources. This protects against MITM attacks or compromised GitHub accounts.
Less important: missing bsdtar Dependency The prepare() function uses bsdtar, but this tool isn't listed in the depends array. While most systems have it by default, it would be safer to either add it explicitly or switch to the standard tar command which is guaranteed available on all Arch installations.
ebbez commented on 2026-06-18 15:06 (UTC)
@Timothee, thanks for the feedback. I have added
dosfstoolsas a hard dependency for the update to v0.11.1.Timothee commented on 2026-05-29 00:43 (UTC)
Hi, and thanks for maintaining this package.
I ran into an issue on first use:
sudo multios-usb /dev/sdcexits immediately with:mkfs.fatis provided bydosfstools, which is currently listed only as an optional dependency ("FAT support"). The catch is thatfat32is the default--fs_type, so the package is unusable out of the box (without passing any extra flag) unlessdosfstoolsis installed.Would it make sense to promote
dosfstoolsto a hard dependency (depends)? The other filesystem tools (e2fsprogs,exfatprogs,ntfs-3g) make perfect sense as optdepends, since they're only needed when their filesystem is explicitly selected — butdosfstoolsis required for the default behavior.Thanks!
syl commented on 2026-05-06 17:08 (UTC)
@ebbez, if you need bit of help from inexperienced hand, don't hesitate.
syl commented on 2026-05-06 07:41 (UTC)
thanks for bringing it to Arch ^.^y