From 56867c9b4ced86f7231a5ee1bbea62b0cb784574 Mon Sep 17 00:00:00 2001 From: Shipwreckt Date: Wed, 28 Aug 2024 07:46:57 +0100 Subject: Changes to lang --- public/articals/linux/media/00cd | 97 +++++++++++++++-------------- public/articals/linux/media/01BurningIsos | 29 ++++----- public/articals/linux/media/02FormattingUSB | 83 ++++++++++++------------ 3 files changed, 106 insertions(+), 103 deletions(-) (limited to 'public/articals/linux/media') 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 @@ - - + + + Burning optical media in Linux - - + +
- +

How To Format A USB with Linux 💿

@@ -26,49 +27,49 @@

Warning ⚠️

Once you burn an optical disk you cannot reburn it. -

Optical media does not have the best storage, normally under 1GiB so make sure your files align with the size of the optical media. -


-

What you will need 📋

- -
- -

Steps to burn 🔥

-

You will only need one program to burn media to a CD; the name of that program is wodim, and it is part of a collection of programs called cdrkit, as in thename ofe this collection of programs that allow you to do a whole variaty of things withopticall media!  -


+

Optical media does not have the best storage, normally under 1GiB so make sure your files align with the size of the optical media. +


+

What you will need 📋

+ +
+ +

Steps to burn 🔥

+

You will only need one program to burn media to a CD; the name of that program is wodim, and it is part of a collection of programs called cdrkit, as in thename ofe this collection of programs that allow you to do a whole variaty of things withopticall media!  +


-
  • 1) Install cdrkit, on some Linux distrobutions cdrkit is already installed, but on my main Linux distrobution Arch Linux, it is not so check you have it installed, the package on your distro will most likely be called cdrkit.
  • -
    -
    -

    sudo pacman -S cdrkit

    -
    -
    +
  • 1) Install cdrkit, on some Linux distrobutions cdrkit is already installed, but on my main Linux distrobution Arch Linux, it is not so check you have it installed, the package on your distro will most likely be called cdrkit.
  • +
    +
    +

    sudo pacman -S cdrkit

    +
    +
    -
    +
    -
  • 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.

  • -
    -

    mkisofs -o movies.iso movies

    -
    -

    movies.iso being the output ISO and movies being the directory with the movies in there.

    +
  • 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.

  • +
    +

    mkisofs -o movies.iso movies

    +
    +

    movies.iso being the output ISO and movies being the directory with the movies in there.

    -
    +
    -
  • 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.

  • -
    -

    wodim -v dev=/dev/sr0 movies.iso

    -
    -

    movies.iso being the output ISO from the last command.

    +
  • 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.

  • +
    +

    wodim -v dev=/dev/sr0 movies.iso

    +
    +

    movies.iso being the output ISO from the last command.

    -
    +
    -
  • 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.

  • -
    -

    That is all the required steps to burn optical media on Linux, I hope this has helped you!

    -
      Back
    +  
  • 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.

  • +
    +

    That is all the required steps to burn optical media on Linux, I hope this has helped you!

    +
      Back
         
    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 @@ - - + + + Burning an ISO 🔥💾 - - + +
    - +

    How to burn an ISO to a USB stick 💾

    @@ -25,7 +26,7 @@

    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 📋

    -
    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 @@ - - + + + Formatting USBs with Linux 🔌🔥 - - + +
    - +

    Formatting USBs With Linux 🔌🔥

    @@ -24,42 +25,42 @@

    Formatting a USB in Linux is easier then burning an ISO and only needs a few quick commands!


    What you will need 📋

    -
    +
    -

    Formatting the USB

    -

    1) The first thing you want to do is plug in your USB stick and identify the USB stick's name.

    -
    -

    lsblk

    -
    -

    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!


    +

    Formatting the USB

    +

    1) The first thing you want to do is plug in your USB stick and identify the USB stick's name.

    +
    +

    lsblk

    +
    +

    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!


    -

    2) Now you need to use a program called fdisk that will allow you to create a new partition table for the USB, this will format the USB.

    -
    -

    sudo fdisk /dev/sdX

    -
    -

    You will need to press the following keys to make a new partition table for the USB.

    - -

    Give fdisk a minute to write the new partition to the USB.


    +

    2) Now you need to use a program called fdisk that will allow you to create a new partition table for the USB, this will format the USB.

    +
    +

    sudo fdisk /dev/sdX

    +
    +

    You will need to press the following keys to make a new partition table for the USB.

    + +

    Give fdisk a minute to write the new partition to the USB.


    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.

    -
    -

    sudo mkfs.ext4 -L "Backup-USB" /dev/sdXx

    -
    -

    The small x represents the number of the partition; the -L flag is used to give the USB stick a name.


    +
    +

    sudo mkfs.ext4 -L "Backup-USB" /dev/sdXx

    +
    +

    The small x represents the number of the partition; the -L flag is used to give the USB stick a name.


    -

    Finished ✅

    -

    All done! Now you have an empty USB stick you can use for all your files!


    +

    Finished ✅

    +

    All done! Now you have an empty USB stick you can use for all your files!


    -
      Back
    +        
      Back
         
    -- cgit v1.2.3