From b4e87293fed27ded17af6a2d623af10003ad5871 Mon Sep 17 00:00:00 2001 From: Shipwreckt Date: Sat, 24 Aug 2024 12:49:52 +0100 Subject: rewrote 01BurningIsos after acidental deletion XD --- public/articals/linux/media/01BurningIsos | 36 +++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) (limited to 'public') diff --git a/public/articals/linux/media/01BurningIsos b/public/articals/linux/media/01BurningIsos index 82cfd87..9b4fe4d 100644 --- a/public/articals/linux/media/01BurningIsos +++ b/public/articals/linux/media/01BurningIsos @@ -3,7 +3,7 @@ - Mounting USBs 🔌 + Burning an ISO 🔥💾 @@ -19,9 +19,41 @@
-

How to mount a USB in Linux 🔌

+

How to burn an ISO to a USB stick 💾

Date: 24-08-2024


+

What you will need 📋

+
+

Warning ⚠️

+

Make sure there is no valuable information on the USB stick.


+ +

How to burn an ISO to a USB 🔥💾

+

Burning an ISO onto a USB stick is very easy and only needs a few commands!

+ +

1) You need to have an ISO file. I am guessing you already have one, but if you do have one, I would suggest checking out Distrowatch.


+ +

2) Now that you have the ISO file, you need to plug in the USB stick. If it is already plugged in, just take it out and replug it in. After doing that, you need to identify the name of the USB with the following command:

+
+

lsblk

+
+

The USB name will be something like sdb or sdc; if you are unsure, check the size of the USB and the side of the device listed.


+ +

3) Now it is time to burn the ISO to the USB stick, use your USB name and your ISO name with this command!

+
+

sudo dd if=debian.iso of=/dev/sdX bs=4M status=progress oflag=sync

+

+ +

4) After waiting a bit for it to burn, you now need to eject it so you are able to use it with this command:

+
+

sudo eject /dev/sdX

+

+ +

Finished ✅

+

After following all of these steps, your USB should have the ISO image burned into it. I hope this has helped you burn a Linux or BSD distro to a USB!


  Back
-- 
cgit v1.2.3