Created
March 29, 2020 15:47
-
-
Save woile/59140efcfc73a7a8fffad6a4822fd86a to your computer and use it in GitHub Desktop.
Install debian to usb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Check wget is installed | |
| sudo apt install -y wget | |
| # Download the debian ISO image | |
| wget https://get.debian.org/cdimage/unofficial/non-free/cd-including-firmware/weekly-builds/amd64/iso-cd/firmware-testing-amd64-netinst.iso | |
| # Find your USB | |
| sudo fdisk -l | |
| # Copy the download iso to the USB you just found before (usually=/dev/sdb) | |
| sudo dd if=firmware-testing-amd64-netinst.iso of=/dev/<Your usb drive> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment