website

This is my amazing website!
git clone git://shipwreckt.co.uk/website
Log | Files | Refs | README | LICENSE

commit 887958e7b4c6a56163fd3688096d1407eb3ca013
parent b4e87293fed27ded17af6a2d623af10003ad5871
Author: Shipwreckt <shipwreckt@mailfence.com>
Date:   Sat, 24 Aug 2024 22:04:00 +0100

Small changes to previous commit

Diffstat:
Mpublic/articals/linux/media/01BurningIsos | 17+++++++++++------
Mpublic/index.html | 2+-
2 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/public/articals/linux/media/01BurningIsos b/public/articals/linux/media/01BurningIsos @@ -22,6 +22,8 @@ <h1>How to burn an ISO to a USB stick 💾</h1> <h3>Date: 24-08-2024</h3> <hr> + <p>Burning an ISO onto a USB stick on Linux is very easy, and you only need to use a few commands!</p> + <hr> <h2>What you will need 📋</h2> <ul> <li>A USB drive</li> @@ -32,22 +34,25 @@ <p>Make sure there is no valuable information on the USB stick.</p><hr> <h2>How to burn an ISO to a USB 🔥💾</h2> - <p>Burning an ISO onto a USB stick is very easy and only needs a few commands!</p> - <p>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 <a href="https://distrowatch.com">Distrowatch</a>.</p><hr> - <p>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:</p> + <p>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:</p> <div class=code-box> <p>lsblk</p> </div> - <p>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.</p><hr> + <p>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.</p><hr> + + <p>3) We need to make sure the USB is unmounted, and we do this with this command. Remember to use your USB name:</p> + <div class=code-box> + <p>sudo umount /dev/sdX</p> + </div><hr> - <p>3) Now it is time to burn the ISO to the USB stick, use your USB name and your ISO name with this command!</p> + <p>4) Now it is time to burn the ISO to the USB stick, use your USB name and your ISO name with this command!</p> <div class=code-box> <p>sudo dd if=debian.iso of=/dev/sdX bs=4M status=progress oflag=sync</p> </div><hr> - <p>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:</p> + <p>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:</p> <div class=code-box> <p>sudo eject /dev/sdX</p> </div><hr> diff --git a/public/index.html b/public/index.html @@ -39,7 +39,7 @@ <section class="posts"> <h2>Articles</h2> <ul> - <li>23-08-2024 - <a href="articals/linuxlist">Articles about Linux</a></li> + <li>24-08-2024 - <a href="articals/linuxlist">Articles about Linux</a></li> <li>15-08-2024 - <a href="articals/programminglist">Articles about Programming</a></li> <li>08-08-2024 - <a href="articals/internetlist">Articles about the Internet</a></li> <li>07-08-2024 - <a href="articals/neovimlist">Neovim run through</a></li>