User Tools

Site Tools


linux:mintstick

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
linux:mintstick [2024/12/27 20:32] – [Grub] Wulf Rajeklinux: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 'MINTSTICK' /dev/sdX1 mkfs.vfat -F 32 -n 'MINTSTICK' /dev/sdX1
 +</code>
 +
 +alt:
 +<code>
 +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 < /path/to/isofile.iso
 +cd ~
 +umount /mnt
 </code> </code>
  
linux/mintstick.1735331547.txt.gz · Last modified: 2024/12/27 20:32 by Wulf Rajek