Create live USB stick on Debian
Debian distribution doesn't have USB startup disk creator software. However, you can make live USB stick based on Live-DVD ISO from command line.
sudo dd bs=4M if=///.iso of=/dev/sdX && sync
where sdX is the USB device name. Don't use trailing digits like sdb1
.
Example
sudo dd bs …