summaryrefslogtreecommitdiff
path: root/public/articals/linux/media
diff options
context:
space:
mode:
authorShipwreckt <shipwreckt@mailfence.com>2024-08-28 07:46:57 +0100
committerShipwreckt <shipwreckt@mailfence.com>2024-08-28 07:46:57 +0100
commit56867c9b4ced86f7231a5ee1bbea62b0cb784574 (patch)
treedb31015f7e014f7e86eedbe5d41e8d0e1ccd1340 /public/articals/linux/media
parentc31d17cc545bf18159066b2656d3a79f6cf7025b (diff)
Changes to lang
Diffstat (limited to 'public/articals/linux/media')
-rw-r--r--public/articals/linux/media/00cd97
-rw-r--r--public/articals/linux/media/01BurningIsos29
-rw-r--r--public/articals/linux/media/02FormattingUSB83
3 files changed, 106 insertions, 103 deletions
diff --git a/public/articals/linux/media/00cd b/public/articals/linux/media/00cd
index fcb1fc4..9bda2e2 100644
--- a/public/articals/linux/media/00cd
+++ b/public/articals/linux/media/00cd
@@ -1,22 +1,23 @@
<!DOCTYPE html>
-<html lang="en">
-<head>
+<html lang="en-GB">
+ <head>
<meta charset="UTF-8">
+ <meta name="author" content="Shipwreckt">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Burning optical media in Linux</title>
<link rel="stylesheet" href="../../../styles.css">
<link rel="icon" href="../../../Images/favi.png" type="image/x-icon">
-</head>
-<body>
+ </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>
+ <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>
<h1>How To Format A USB with Linux 💿</h1>
@@ -26,49 +27,49 @@
<hr>
<h3>Warning ⚠️</h3>
<p>Once you burn an optical disk you cannot reburn it.</b>
- <p>Optical media does not have the best storage, normally under 1GiB so make sure your files align with the size of the optical media.</b>
- <hr>
- <h2>What you will need 📋</h2>
- <ul>
- <li>Optical drive capable of writing to a CD</li>
- <li>A computer with Linux 🐧🖥️</li>
- <li>The ability to read instructions and to follow them 🧠</li>
- </ul>
- <hr>
-
- <h2>Steps to burn 🔥</h2>
- <p>You will only need one program to burn media to a CD; the name of that program is <a href="https://linux.die.net/man/1/wodim">wodim</a>, and it is part of a collection of programs called <a href="https://packages.debian.org/source/sid/cdrkit">cdrkit</a>, as in thename ofe this collection of programs that allow you to do a whole variaty of things withopticall media! 
- <hr>
+ <p>Optical media does not have the best storage, normally under 1GiB so make sure your files align with the size of the optical media.</b>
+ <hr>
+ <h2>What you will need 📋</h2>
+ <ul>
+ <li>Optical drive capable of writing to a CD</li>
+ <li>A computer with Linux 🐧🖥️</li>
+ <li>The ability to read instructions and to follow them 🧠</li>
+ </ul>
+ <hr>
+
+ <h2>Steps to burn 🔥</h2>
+ <p>You will only need one program to burn media to a CD; the name of that program is <a href="https://linux.die.net/man/1/wodim">wodim</a>, and it is part of a collection of programs called <a href="https://packages.debian.org/source/sid/cdrkit">cdrkit</a>, as in thename ofe this collection of programs that allow you to do a whole variaty of things withopticall media! 
+ <hr>
- <li>1) Install cdrkit, on some Linux distrobutions cdrkit is already installed, but on my main Linux distrobution <a href="https://archlinux.org">Arch Linux</a>, it is not so check you have it installed, the package on your distro will most likely be called cdrkit.</li>
- <br>
- <div class="code-box">
- <p>sudo pacman -S cdrkit</p>
- </div>
- <br>
+ <li>1) Install cdrkit, on some Linux distrobutions cdrkit is already installed, but on my main Linux distrobution <a href="https://archlinux.org">Arch Linux</a>, it is not so check you have it installed, the package on your distro will most likely be called cdrkit.</li>
+ <br>
+ <div class="code-box">
+ <p>sudo pacman -S cdrkit</p>
+ </div>
+ <br>
- <hr>
+ <hr>
- <li>2) You want to get whatever data you want into an ISO file, so if you had a file called movies that held movies you would use the command.</li><br>
- <div class="code-box">
- <p>mkisofs -o movies.iso movies</p>
- </div>
- <p>movies.iso being the output ISO and movies being the directory with the movies in there.</p>
+ <li>2) You want to get whatever data you want into an ISO file, so if you had a file called movies that held movies you would use the command.</li><br>
+ <div class="code-box">
+ <p>mkisofs -o movies.iso movies</p>
+ </div>
+ <p>movies.iso being the output ISO and movies being the directory with the movies in there.</p>
- <hr>
+ <hr>
- <li>3) Now the last command is the actual event of burning the optical media! So insert it into your optical drive and type this command.</li><br>
- <div class="code-box">
- <p>wodim -v dev=/dev/sr0 movies.iso</p>
- </div>
- <p>movies.iso being the output ISO from the last command.</p>
+ <li>3) Now the last command is the actual event of burning the optical media! So insert it into your optical drive and type this command.</li><br>
+ <div class="code-box">
+ <p>wodim -v dev=/dev/sr0 movies.iso</p>
+ </div>
+ <p>movies.iso being the output ISO from the last command.</p>
- <hr>
+ <hr>
- <li>4) Now it is time to sit back and wait for it to burn; do not get impatient; give it time, and it will burn. When it is done, you may enject the optical media from the CD drive, and it should have all the files you desire.</li><br>
- <center>
- <hr><p>That is all the required steps to burn optical media on Linux, I hope this has helped you!</p>
- <pre text-align=center> <a href="../../linuxlist">Back</a>
+ <li>4) Now it is time to sit back and wait for it to burn; do not get impatient; give it time, and it will burn. When it is done, you may enject the optical media from the CD drive, and it should have all the files you desire.</li><br>
+ <center>
+ <hr><p>That is all the required steps to burn optical media on Linux, I hope this has helped you!</p>
+ <pre text-align=center> <a href="../../linuxlist">Back</a>
</main>
</body>
</html>
diff --git a/public/articals/linux/media/01BurningIsos b/public/articals/linux/media/01BurningIsos
index 2ec7657..04b7a3f 100644
--- a/public/articals/linux/media/01BurningIsos
+++ b/public/articals/linux/media/01BurningIsos
@@ -1,22 +1,23 @@
<!DOCTYPE html>
-<html lang="en">
-<head>
+<html lang="en-GB">
+ <head>
<meta charset="UTF-8">
+ <meta name="author" content="Shipwreckt">
<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>
+ </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>
+ <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>
<h1>How to burn an ISO to a USB stick 💾</h1>
@@ -25,7 +26,7 @@
<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>
+ <ul>
<li>A USB drive</li>
<li>A computer with Linux 🐧🖥</li>
<li>The ability to read instructions and to follow them 🧠</li>
@@ -61,7 +62,7 @@
<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>
+ <pre text-align=center> <a href="../../linuxlist">Back</a>
</main>
</body>
</html>
diff --git a/public/articals/linux/media/02FormattingUSB b/public/articals/linux/media/02FormattingUSB
index 3424aaa..f9fed53 100644
--- a/public/articals/linux/media/02FormattingUSB
+++ b/public/articals/linux/media/02FormattingUSB
@@ -1,22 +1,23 @@
<!DOCTYPE html>
-<html lang="en">
-<head>
+<html lang="en-GB">
+ <head>
<meta charset="UTF-8">
+ <meta name="author" content="Shipwreckt">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formatting USBs with Linux 🔌🔥</title>
<link rel="stylesheet" href="../../../styles.css">
<link rel="icon" href="../../../Images/favi.png" type="image/x-icon">
-</head>
-<body>
+ </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>
+ <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>
<h1>Formatting USBs With Linux 🔌🔥</h1>
@@ -24,42 +25,42 @@
<hr>
<p>Formatting a USB in Linux is easier then <a href="01BurningIsos">burning an ISO</a> and only needs a few quick commands!</p><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>
+ <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>
- <h2>Formatting the USB</h2>
- <p>1) The first thing you want to do is plug in your USB stick and identify the USB stick's name.</p>
- <div class="code-box">
- <p>lsblk</p>
- </div>
- <p>Normally the USB will be something like sdX; a tip on identifying it is by looking at the size of the USB in the table that lsblk gives you!</p><hr>
+ <h2>Formatting the USB</h2>
+ <p>1) The first thing you want to do is plug in your USB stick and identify the USB stick's name.</p>
+ <div class="code-box">
+ <p>lsblk</p>
+ </div>
+ <p>Normally the USB will be something like sdX; a tip on identifying it is by looking at the size of the USB in the table that lsblk gives you!</p><hr>
- <p>2) Now you need to use a program called <a href="https://linux.die.net/man/8/fdisk">fdisk</a> that will allow you to create a new partition table for the USB, this will format the USB.</p>
- <div class="code-box">
- <p>sudo fdisk /dev/sdX</p>
- </div>
- <p>You will need to press the following keys to make a new partition table for the USB.</p>
- <ul>
- <li>o - Creates a new DOS partition table</li>
- <li>n - New partition, press enter to all that follows</li>
- <li>w - Writes the partition table</li>
- </ul>
- <p>Give fdisk a minute to write the new partition to the USB.</p><hr>
+ <p>2) Now you need to use a program called <a href="https://linux.die.net/man/8/fdisk">fdisk</a> that will allow you to create a new partition table for the USB, this will format the USB.</p>
+ <div class="code-box">
+ <p>sudo fdisk /dev/sdX</p>
+ </div>
+ <p>You will need to press the following keys to make a new partition table for the USB.</p>
+ <ul>
+ <li>o - Creates a new DOS partition table</li>
+ <li>n - New partition, press enter to all that follows</li>
+ <li>w - Writes the partition table</li>
+ </ul>
+ <p>Give fdisk a minute to write the new partition to the USB.</p><hr>
<p>3) Now is the time to give that partition a file system. You should look into this beforehand to see what file system you want, but I will use ext4 because it was made for Linux use.</p>
- <div class="code-box">
- <p>sudo mkfs.ext4 -L "Backup-USB" /dev/sdXx</p>
- </div>
- <p>The small x represents the number of the partition; the -L flag is used to give the USB stick a name.</p><hr>
+ <div class="code-box">
+ <p>sudo mkfs.ext4 -L "Backup-USB" /dev/sdXx</p>
+ </div>
+ <p>The small x represents the number of the partition; the -L flag is used to give the USB stick a name.</p><hr>
- <h2>Finished ✅</h2>
- <p>All done! Now you have an empty USB stick you can use for all your files!</p><hr>
+ <h2>Finished ✅</h2>
+ <p>All done! Now you have an empty USB stick you can use for all your files!</p><hr>
<center>
- <pre text-align=center> <a href="../../linuxlist">Back</a>
+ <pre text-align=center> <a href="../../linuxlist">Back</a>
</main>
</body>
</html>