- Arch Linux
- GNU tar 1.35
- multios-usb 0.11.1-1 (from AUR)
On Arch Linux installation fails during GRUB extraction.
Command tar -xf binaries/grub-*/i386-pc.tar.xz -C "$part_efi/grub" produces many errors:
tar: i386-pc/*.mod: Cannot change ownership to uid 0, gid 0: Operation not permitted
The EFI partition is FAT32, which as far as I know does not support Unix ownership.
The installation succeeds after changing the command to:
tar --no-same-owner -xf binaries/grub-*/i386-pc.tar.xz -C "$part_efi/grub"
Maybe this option should be added upstream.
On Arch Linux installation fails during GRUB extraction.
Command
tar -xf binaries/grub-*/i386-pc.tar.xz -C "$part_efi/grub"produces many errors:tar: i386-pc/*.mod: Cannot change ownership to uid 0, gid 0: Operation not permittedThe EFI partition is FAT32, which as far as I know does not support Unix ownership.
The installation succeeds after changing the command to:
tar --no-same-owner -xf binaries/grub-*/i386-pc.tar.xz -C "$part_efi/grub"Maybe this option should be added upstream.