Here’s how to create a Slackware Linux bootable USB pen drive:
- Insert the USB pen drive into your computer.
- Determine the device name of the USB pen drive:
$ lsblk
In this example, the USB pen drive is /dev/sdb
. Make sure to replace this with the device name of your USB pen drive.
- Unmount the USB pen drive:
umount /dev/sdb
- Write the Slackware Linux ISO image to the USB pen drive:
dd if=slackware.iso of=/dev/sdb bs=4M status=progress
Replace slackware.iso
with the path to the Slackware Linux ISO image.
- Wait for the
dd
command to complete. - Remove the USB pen drive from your computer.
Now you have a Slackware Linux bootable USB pen drive that you can use to install Slackware Linux on a computer. To boot from the USB pen drive, you’ll need to enter the BIOS or UEFI settings on the target computer and change the boot order to boot from USB first.