From abdf891a332974c112e3d047b1cc8524411b6ae0 Mon Sep 17 00:00:00 2001 From: Shipwreckt Date: Sun, 23 Feb 2025 12:55:21 +0000 Subject: Changed some file names + new article --- public/articals/linux/media/01BurningIsos.html | 69 -------------------------- 1 file changed, 69 deletions(-) delete mode 100644 public/articals/linux/media/01BurningIsos.html (limited to 'public/articals/linux/media/01BurningIsos.html') diff --git a/public/articals/linux/media/01BurningIsos.html b/public/articals/linux/media/01BurningIsos.html deleted file mode 100644 index 6bcab23..0000000 --- a/public/articals/linux/media/01BurningIsos.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - Burning an ISO 🔥💾 - - - - -
- -
-
-

How to burn an ISO to a USB stick 💾

-

Date: 24-08-2024

-
-

Burning an ISO onto a USB stick on Linux is very easy, and you only need to use a few commands!

-
-

What you will need 📋

-
-

Warning ⚠️

-

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


- -

How to burn an ISO to a USB 🔥💾

-

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. 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 size of the device listed.


- -

3) We need to make sure the USB is unmounted, and we do this with this command. Remember to use your USB name:

-
-

sudo umount /dev/sdX

-

- -

4) 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

-

- -

5) 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