DEV Community

Cover image for Day 01: Getting Started with Linux
Harsh Pandhe
Harsh Pandhe

Posted on

Day 01: Getting Started with Linux

Welcome to Day 1 of our 5-day Linux series! Today, we’ll take our first baby steps into the wonderful world of Linux. If you’ve never used it before, don’t worry—this guide is as beginner-friendly as finding memes on the internet. Let’s get started!


What is Linux?

Linux is like the quiet genius in your friend group. It’s been around since 1991, thanks to Linus Torvalds, and powers everything from servers and smartphones to fridges (yes, even your smart fridge might be running Linux). Think of it as the invisible engine behind tech magic.

Linus Torvalds

Why Should You Care About Linux?

  • It’s Free: Who doesn’t love free stuff?
  • It’s Secure: Linux laughs in the face of most viruses.
  • It’s Flexible: Want to customize it? Go ahead and make it as unique as your Spotify playlists.
  • It’s Supported by Nerds Worldwide: Got a problem? There’s a Linux forum for that.

Popular Linux Distros (a.k.a. Flavors)

Linux comes in various "flavors" (distributions or distros). Imagine it’s ice cream, but instead of chocolate or vanilla, you have Ubuntu or Fedora. Here are some tasty options:

Linux Distros

For Beginners:

  • Ubuntu: Easy to use. The "vanilla" of Linux (but way cooler).
  • Linux Mint: If Ubuntu is vanilla, Mint is vanilla with sprinkles.

For Developers and Pros:

  • Fedora: Packed with cutting-edge features. Developers love it.
  • Arch Linux: The black coffee of Linux. Great if you like full control.

For Servers:

  • CentOS/Rocky Linux: Stable and serious, like a business suit.
  • Debian: Reliable and solid, like your go-to hoodie.

How to Try Linux Without Freaking Out

Here are some easy ways to dip your toes into Linux without committing:

Option 1: Dual Boot

This lets you run Linux and your current OS side by side. It’s like having both Netflix and Disney+ on one screen.

Option 2: Live USB

Boot Linux from a USB stick without installing it. Think of it as test-driving a car.

Option 3: Virtual Machine

Run Linux inside your current OS using tools like VirtualBox. It’s like running a video game in windowed mode.

Virtual Box

Installing Ubuntu: The Easy Way

ISO File

  1. Download the ISO File

  2. Create a Bootable USB Drive

    • Use tools like Rufus (Windows) or Etcher (Linux/Mac). It’s as easy as burning a music CD (if you remember those).
  3. Boot from USB

    • Restart your computer and choose to boot from the USB drive. You might need to fiddle with BIOS/UEFI settings, but don’t worry, there are plenty of guides online.
  4. Follow the Wizard

    • Pick your time zone, keyboard layout, and create a user account. Just click through like you’re signing up for a new app.
  5. Done!

    • Restart and say hello to Linux. High-five yourself; you did it!

High5


First Steps in Linux

Now that you’re inside Linux, what’s next? Here’s a quick roadmap:

1. Explore the Desktop Environment

If you’re using Ubuntu, you’ll see the GNOME desktop. Play around! Click things! It’s like Windows, but cooler and free.

2. Open the Terminal (Don’t Panic)

  • The terminal is like Linux’s command center. Open it with Ctrl + Alt + T and type ls to see a list of files. Boom, you’re a hacker now.

3. Install Some Cool Software

Want to install Chrome? Or VLC? Use this command (replace <package_name> with what you want):

sudo apt install <package_name>
Enter fullscreen mode Exit fullscreen mode
  • Example: sudo apt install vlc for the VLC media player.

4. Join the Linux Community

Linux users are like your nerdy best friends who actually want to help. Check out:

Linux.org


Conclusion

Congrats, you just unlocked the first level of the Linux adventure! It’s secure, flexible, and free, and now you know the basics to get started. Who knows? By next week, you might even call yourself a Linux user.

What’s Coming Next?

Tomorrow, we’ll tackle Basic Linux Commands—your ultimate cheat sheet for navigating the Linux world. Stay tuned for Day 2 of this series. See you there!

Top comments (0)