From 8bbdcbb2d0711134a68bd80ae541edbfb4f472ad Mon Sep 17 00:00:00 2001 From: Shipwreckt Date: Fri, 21 Feb 2025 19:19:17 +0000 Subject: Changed all files to .html and new post! --- public/articals/linux/media/00cd.html | 76 +++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 public/articals/linux/media/00cd.html (limited to 'public/articals/linux/media/00cd.html') diff --git a/public/articals/linux/media/00cd.html b/public/articals/linux/media/00cd.html new file mode 100644 index 0000000..91f4ee2 --- /dev/null +++ b/public/articals/linux/media/00cd.html @@ -0,0 +1,76 @@ + + + + + + + Burning optical media in Linux + + + + +
+ +
+
+

How To Format A USB with Linux 💿

+

Date: 23-08-2024

+
+

This is a quick tutorial to show you how to burn any file to a piece of optical disk media!

+
+

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!  +


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

    + +
    + +
  • 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 🚪
    +    
    + + + -- cgit v1.2.3