linux:mintstick
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
linux:mintstick [2023/05/29 11:55] – external edit 127.0.0.1 | linux:mintstick [2024/12/27 23:36] (current) – [Partition USB Device] Wulf Rajek | ||
---|---|---|---|
Line 33: | Line 33: | ||
#Format as fat32 | #Format as fat32 | ||
mkfs.vfat -F 32 -n ' | mkfs.vfat -F 32 -n ' | ||
+ | </ | ||
+ | |||
+ | alt: | ||
+ | < | ||
+ | apt-get install parted | ||
+ | parted --script /dev/sdX mklabel gpt | ||
+ | parted --script --align=optimal /dev/sdX mkpart ESP fat32 1MiB 100% | ||
+ | parted --script /dev/sdX set 1 boot on | ||
+ | mkfs.vfat -n MINTSTICK /dev/sdX1 | ||
+ | mount -t vfat /dev/sdX1 /mnt | ||
+ | cd /mnt | ||
+ | uniso < / | ||
+ | cd ~ | ||
+ | umount /mnt | ||
</ | </ | ||
Line 76: | Line 90: | ||
</ | </ | ||
+ | EFI installation. Does not install in MBR: | ||
+ | < | ||
+ | sudo mkdir -p /mnt/usb | ||
+ | sudo mount /dev/sdX1 /mnt/usb | ||
+ | grub-install --target=x86_64-efi --efi-directory=/ | ||
+ | </ | ||
===== Copy data ===== | ===== Copy data ===== |
linux/mintstick.1685357734.txt.gz · Last modified: 2023/05/29 11:55 by 127.0.0.1