Skip to main content

Linux Changed How I Use My Computer (And It Can Change Yours Too)

 As a Computer Science student in Pakistan, I always thought Windows was the only option. It came pre-installed, supported Microsoft apps, and felt familiar. But when I started programming seriously, I ran into problems — crashes, slow updates, and lack of control.

That’s when I discovered Linux — specifically Ubuntu.
It was a game-changer.


What Is Linux?

Linux is a free, open-source operating system kernel used in distributions like Ubuntu, Debian, Fedora, and Arch. Unlike Windows or macOS, Linux gives you full control over your system.

You can customize, automate, and optimize everything — and best of all, it’s free.


Why I Use Linux (And Why You Should Too)

1. It’s Perfect for Programmers

Whether you're coding in C++, Python, or Java, Linux supports all major compilers and libraries out of the box.

I installed g++, set up Python environments, and even compiled my own code faster than on Windows.

bashCopyEditsudo apt install g++

The terminal is powerful — and once you learn basic commands, you’ll feel like a real developer.

2. Open Source = Full Freedom

No more forced updates, bloatware, or system restarts during exams. I can customize my desktop, use only the apps I want, and fully control resources.

I can even check the source code of tools I use — something impossible on Windows.

3. It’s Fast and Lightweight

Linux runs smoothly even on old hardware. My laptop felt like a new machine after installing Ubuntu.

No more background processes eating up RAM — just clean, focused computing.

4. It’s More Secure

Linux is less vulnerable to viruses and malware, especially because software is installed through official repositories.

I haven’t used an antivirus in months — and I’m still safe.


What You Can Do with Linux as a Student

  • Write and compile C++ and Python programs
  • Set up Git and GitHub for version control
  • Run Ubuntu alongside Windows using dual boot

Comments

Popular posts from this blog

Introduction

Name: Muhammad Tabassat DOB: 10 june 2004 Muhammad Tabassat

Download individual YouTube video/audio or entire playlists via the Ubuntu terminal

1. First of all Install yt-dlp in ubuntu terminal bash sudo apt update sudo apt install yt-dlp If it's not found or outdated, use Python: pip install -U yt-dlp 2. Install FFmpeg (for MP3 conversion) sudo apt install ffmpeg 3. Download audio of a single video link: yt-dlp -x --audio-format mp3 "Add video link" yt-dlp -x --audio-format mp3 "Add video link" for example yt-dlp -x --audio-format mp3 " https://youtu.be/GVbg-sblIg4?si=tccCB6nw-PiQwCbB " 4. Download audio of playlist link: yt-dlp -x --audio-format mp3 "Add playlist link" yt-dlp -x --audio-format mp3 "Add playlist link" 5. Download videos of playlist link: yt-dlp -o "%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s" "Add playlist link" yt-dlp -o "%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s" "Add playlist link" 6. Download single video link: yt-dlp "link" yt-dl...

How to Share Your Local WordPress Website with Ngrok on Ubuntu

 How to Share Your Local WordPress Website with Ngrok on Ubuntu Are you running a WordPress website locally using Local WP (formerly Local by Flywheel) and want to access it from another device or share it with a client or friend over the internet? Using ngrok , a powerful tunneling tool, you can expose your local site securely to the world in just a few commands. 🚀 What is Ngrok? ngrok is a tool that creates a secure tunnel from the public internet to your local machine. This is especially useful when: You want to test your local WordPress site on a mobile device You need someone to preview your project remotely You're demoing your work in real time 🧱 Prerequisites A working local WordPress site running in Local WP Ubuntu (tested on Ubuntu 22.04 and similar) Internet connection Terminal access 🔧 Step 1: Install Ngrok on Ubuntu Open your terminal and paste the following command: curl -s https://ngrok-agent.s3.amazonaws.com/ngrok.asc | sud...