Create boot usb stick
Create boot usb stick from linux
Example for Debian 8 Jessie
Detecting USB Drive
Command:
$ sudo fdisk -l
Example stdout:
Device Boot Start End Sectors Size Id Type /dev/sdb1 * 2048 15667199 15665152 7,5G c W95 FAT32 (LBA)
Creating Mount Point
$ mount /dev/sdb1 /mnt
Formatting the USB
Unmount the device first to format the USB device:
$ sudo umount /dev/sdb1
FAT
$ sudo mkfs.vfat /dev/sdb1
Write iso to usb
Download iso
cd /usr/src && wget https://cdimage.debian.org/cdimage/archive/8.10.0/amd64/iso-cd/debian-8.10.0-amd64-netinst.iso
Write iso
$ sudo dd if=debian-8.10.0-amd64-netinst.iso of=/dev/sdb1 bs=4M; sync
Только авторизованные участники могут оставлять комментарии.