Aug. 13, 2019
This page describes how to make a live Linux into a USB memory stick.
If you have no Linux system, install KNOPPIX into a DVD media.
Download an ISO image.
Burn it onto a DVD media.
Caution: Don't burn the ISO image as a file.
Reboot your PC from the DVD.
The following list shows how to create a live Linux into a USB memory stick on a Linux.
Download an ISO image.
Attach a USB memory stick.
Open a terminal emulator. (Try Ctrl + Alt + T keys)
Confirm the device name of the USB memory stick by the lsblk(8) command.
$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 37.3G 0 disk
└─sda1 8:1 0 37.3G 0 part /
sdb 8:32 0 7.5G 0 disk
└─sdb1 8:33 0 7.5G 0 part /mnt
Unmount the USB memory stick if it is mounted.
Dump the downloaded iso image into the USB memory stick.
$ sudo dd bs=4M if=<iso_file> of=/dev/<device_name> && sync
ex) $ sudo dd bs=4M if=debian-live-9.9.0-amd64-xfce.iso of=/dev/sdb && sync
Caution: Don't append a partition number to the output device name.
Reboot your PC from the USB memory stick.