Ventoy.html (3506B)
1 <!DOCTYPE html> 2 <html lang="en-GB"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="author" content="Shipwreckt"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <title>Installing Ventoy</title> 8 <link rel="stylesheet" href="../../../styles.css"> 9 <link rel="icon" href="../../../Images/favi.png" type="image/x-icon"> 10 </head> 11 <body> 12 <header> 13 <nav> 14 <ul> 15 <li><a href="../../../index.html">Home</a></li> 16 <li><a href="../../../links.html">Links</a></li> 17 <li><a href="../../../projects.html">Projects</a></li> 18 <li><a href="../../../contact.html">Contact</a></li> 19 </ul> 20 </nav> 21 </header> 22 <main> 23 <h1>How to Install Ventoy with Linux 🐧🔌</h1> 24 <h3>Date: 25-08-2024</h3> 25 <hr> 26 <p>Installing Ventoy is pretty easy, just a few quick steps and you will be there!</p> 27 <hr> 28 <h2>What you will need 📋</h2> 29 <ul> 30 <li>A USB with over 10GiB</li> 31 <li>A computer with Linux 🐧🖥️</li> 32 <li>The ability to read instructions and to follow them 🧠</li> 33 </ul> 34 <hr> 35 <h3>Warning ⚠️</h3> 36 <p>If the USB has any useful data, please back it up before following this guide.</p><hr> 37 38 <h2>Installing Ventoy with Linux 🐧🔌</h2> 39 <p>1) The first thing you want to do is get a few .ISO and .IMG files. <a href="https://tails.net/install/download/index.en.html">Tails</a> is a must-have on Ventoy, and you can also have a little look on <a href=https://distrowatch.com>distrowatch</a> for other distros that peak your curiosity!</p><hr> 40 41 <p>2) Install ventoy.tar.gz from <a href="https://ventoy.net/en/index.html">https://ventoy.net/en/index.html</a>, the website tells you to install it from <a href="https://sourceforge.net/projects/ventoy/files/v1.0.99/">source forge</a>, make sure it is the linux.tar.gz file.</p><hr> 42 43 <p>3) After installing the tar.gz, you need to run the following command; this will open the compressed file, which will allow you to use Ventoy.</p> 44 <div class=code-box> 45 <p>gunzip ventoy-<version>-linux.tar.gz && tar -xvf ventoy-<version>-linux.tar</p> 46 </div><hr> 47 48 <p>4) Next you want to enter the Ventoy directory and identify what your USB name is</p> 49 <div class=code-box> 50 <p>cd ventoy-<version>/ && lsblk</p> 51 </div> 52 <p>Normally the USB with the lowest amount of storage will be your USB; to make sure, check the size of your USB compared to the devices listed under lsblk.</p><hr> 53 54 <p>5) This command will install Ventoy to the USB. Make sure your USB name is correct; it will be something like sdb. A good way to identify the USB is by running lsblk when the USB is out and then running lsblk while the USB is plugged in.</p> 55 <div class=code-box> 56 <p>sudo sh Ventoy2Disk.sh -i /dev/sdX</p> 57 </div> 58 <p>Replace the X with your device letter.</p><hr> 59 60 <p>6) The last command is just ejecting your USB</p> 61 <div class=code-box> 62 <p>sudo eject sdX</p> 63 </div><hr> 64 65 <h2>All done ✅</h2> 66 <p>After following all of these steps Ventoy should be installed on your USB stick, now the only thing to do is plug the USB in and put the ISO and IMG files into the USB, I hope this has helped you!</p> 67 68 <center> 69 <hr> 70 <pre text-align=center> <a href="../../linuxlist.html">Back 🚪</a> 71 </main> 72 </body> 73 </html> 74