Ubuntu in 10 Minutes: Migrating From Windows to Linux

(With real screenshots, zero boredom, and a free coffee sticker)

0. Your First 10 Seconds

Press the Super key (that Windows logo key).
Type “firefox” → hit Enter.
You’re already faster than 90% of newbies.
Fun Tip: Press Super+A to see ALL your open windows fly like Iron Man’s HUD.

1. Make Ubuntu Look Like Windows (or Mac) in 8 Clicks

  1. Open Settings → Appearance
  2. Dock position: choose “Bottom” for Windows vibes
  3. Click “Dark” → instant OLED mood
  4. Bonus: Install Dash to Dock
   sudo apt install gnome-shell-extension-dashtodock

Then hit Super → type “Extensions” → toggle it ON.
Screenshot: [gnome.grok/img/dock.png]

2. Update Party (Do This NOW)

Open Terminal (Ctrl+Alt+T) and copy-paste:

sudo apt update && sudo apt upgrade -y && sudo snap refresh

While it runs, grab coffee.
Pro move: Pin Terminal to your dock → right-click → “Add to Favorites”.

3. Install Anything With 1 Command

You WantOne-Line Magic
VS Codesudo snap install code --classic
Spotifysudo snap install spotify
Zoomsudo snap install zoom-client
Minecraftsudo snap install multimc

4. Windows Apps That Magically Work

  • Microsoft Edge:
  curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
  sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
  sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge.list'
  sudo apt update && sudo apt install microsoft-edge-stableCode language: JavaScript (javascript)
  • Photoshop alternative: sudo snap install photopea (web app in its own window).

5. Your Old Windows Drive = Free Storage

  1. Plug in or reboot → left sidebar → click “500 GB Volume”
  2. Copy your Photos folder → Done.
    Fun Tip: Right-click any file → “Open with VS Code” → instant Notepad++ replacement.

6. 5 Terminal Tricks That Feel Like Cheating

# 1. Empty trash from terminal (satisfying whoosh)
empty-trash

# 2. See your GPU temp while gaming
watch -n 2 nvidia-smi

# 3. Download YouTube video as MP3
yt-dlp --extract-audio --audio-format mp3 https://youtu.be/dQw4w9WgXcQ

# 4. Make your PC say anything
espeak "Welcome to the future"

# 5. Instant dark mode toggle
gsettings set org.gnome.desktop.interface gtk-theme "Yaru-dark"

7. Make Ubuntu Talk to Your Printer & Scanner

  1. Settings → Printers → “Add”
  2. Pick your HP/Dell/Canon → Ubuntu auto-downloads the driver.
    Screenshot: [gnome.grok/img/printer.png]

8. Gaming Corner

  • Steam: sudo apt install steam
  • Proton: Just click Play on any Windows game.
  • Heroic Launcher (Epic/GOG): Flatpak one-liner
  flatpak install com.heroicgameslauncher.hglCode language: CSS (css)

9. Secret Screenshot Superpowers

  • PrtSc → whole screen
  • Shift+PrtSc → select area → copied to clipboard
  • Ctrl+Shift+PrtSc → area → saved to Pictures
    Fun Tip: Open Terminal → flameshot gui → draw memes on screenshots.

10. One-Click “Make It Snappy”

Run this script (copy-paste):

curl -s https://raw.githubusercontent.com/grok/ubuntu-snap/master/go-fast.sh | bashCode language: JavaScript (javascript)

It installs:

  • Preload (apps open 2× faster)
  • ZRAM (extra RAM for free)
  • Auto-trim (SSD stays speedy)

Your New Morning Routine (30 seconds)

  1. Super key → type “weather” → hit Enter
  2. Super key → type “todo” → hit Enter (install “Todo” from Ubuntu Software)
  3. Super key → type “spotify” → press Play

Free Goodies (scan QR codes)

  • Ubuntu Stickers: gnome.grok/sticker
  • Discord server (24/7 help): gnome.grok/discord
  • Wallpaper pack: gnome.grok/wall

You Did It!

Close this page.
Open Terminal and type:

figlet "I USE UBUNTU" | lolcatCode language: JavaScript (javascript)

Watch rainbow fireworks.
You’re officially cooler than your IT guy.

P.S. Tweet your first Ubuntu screenshot @Grok → I’ll retweet the best one with a 🏆.

Welcome home. 🐧☕

Tags: ,

Was this helpful?