summaryrefslogtreecommitdiff
path: root/public/articals/linux/media/01BurningIsos
blob: 9b4fe4daafc85be83e93e1621a62f9ec52dab08f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Burning an ISO 🔥💾</title>
    <link rel="stylesheet" href="../../../styles.css">
    <link rel="icon" href="../../../Images/favi.png" type="image/x-icon">
</head>
<body>
    <header>
        <nav>
            <ul>
                <li><a href="../../../index.html">Home</a></li>
                <li><a href="../../../links.html">Links</a></li>
                <li><a href="../../../projects.html">Projects</a></li>
                <li><a href="../../../contact.html">Contact</a></li>
            </ul>
        </nav>
    </header>
    <main class="description">
      <h1>How to burn an ISO to a USB stick 💾</h1>
      <h3>Date: 24-08-2024</h3>
      <hr>
      <h2>What you will need 📋</h2>
            <ul>
        <li>A USB drive</li>
        <li>A computer with Linux  🐧🖥</li>
        <li>The ability to read instructions and to follow them 🧠</li>
      </ul><hr>
      <h3>Warning ⚠️</h3>
      <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>
      <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>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>
      <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>
      <div class=code-box>
        <p>sudo eject /dev/sdX</p>
      </div><hr>

      <h2>Finished ✅</h2>
      <p>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!</p>
      <hr>
      <center>
      <pre text-align=center>  <a href="../../linuxlist">Back</a>
    </main>
</body>
</html>