Introduction
Welcome, intrepid explorer of the penguin realm! You’ve heard whispers of Netrunner, the Linux distribution that marries the elegance of KDE Plasma with a curated selection of productivity tools and multimedia goodies. Today, we embark on a journey to install Netrunner on your machine—no dragons slain, no labyrinths navigated, but perhaps a little BIOS tweaking and partition-resizing. Grab your wizard’s staff (or just a USB stick) and let’s dive in!
System Requirements
Before we plunge headfirst into the installation, ensure your hardware meets these minimal requirements. If you have better hardware, give yourself a gold star.
| Component | Minimum | Recommended |
|---|---|---|
| CPU | 1 GHz Single-Core | 2 GHz Dual-Core or faster |
| RAM | 2 GB | 4 GB or more |
| Storage | 15 GB free | 25 GB or more SSD |
| Graphics | KDE-Compatible GPU | Modern OpenGL 3.1 |
| USB Port | 1 × USB 2.0 (for installer) | 1 × USB 3.0 (for speed) |
1. Downloading the Netrunner ISO
Head to the official Netrunner download page:
https://www.netrunner.com/downloads/.
Choose the flavor you prefer:
- Netrunner Desktop: Rolling-release based on Debian Testing.
- Netrunner Core: Stable, leaner environment.
- Netrunner ISO Lite: Minimal setup for custom builds.
Click the appropriate link, pick a mirror near you, and save the ISO. While it downloads, maybe do a quick stretch—and a coffee refill if needed.
2. Verifying the ISO Integrity
We’re not living dangerously—always verify! Open a terminal and run:
sha256sum ~/Downloads/netrunner--amd64.iso
Compare the output hash with the one provided on the website. They must match 100%. If they don’t, that’s a sign to re-download. (No black-hat pirates here!)
3. Creating a Bootable USB Stick
You have two popular choices:
a) Using balenaEtcher (Cross-Platform)
- Download from https://www.balena.io/etcher/.
- Launch the app and select your Netrunner ISO.
- Choose target USB drive.
- Click Flash! and wait for completion.
b) Using dd (Linux/macOS)
sudo dd if=~/Downloads/netrunner--amd64.iso of=/dev/sdX bs=4M status=progress sync
Replace /dev/sdX with the correct device (use lsblk or fdisk -l to identify). One wrong letter and you could wipe your grandma’s holiday photos, so double-check!
4. Configuring BIOS/UEFI
Reboot your machine and press the BIOS/UEFI entry key (often F2, F10, Esc, or Del). Then:
- Disable Secure Boot (Netrunner isn’t signed by Microsoft).
- Enable UEFI mode (recommended) or Legacy if you must.
- Set USB as first boot device.
- Save changes and exit.
Bonus tip: If your BIOS menu looks like a 1990s DOS program, ask politely for an update from your vendor.
5. Booting the Live Environment
Your USB stick should now pop up with the Netrunner splash. Select Start Netrunner and you’ll land on a fully functional live desktop. You can test hardware (Wi-Fi, sound, GPU acceleration) before installation. It’s like dating before marriage!
6. The Installation Wizard
Double-click the Install Netrunner icon on the desktop. Let’s walk through the steps:
- Select Language: Pick your tongue—pig-latin lovers, beware, it’s not supported (yet).
- Keyboard Layout: US, UK, Dvorak, or Klingon (jk). Choose wisely.
- Time Zone: The wizard might detect automatically, but it can’t read your mind if you’re on a yacht in international waters.
-
Partitioning:
- Guided – Use Entire Disk: Wipes everything and auto-partitions. Fast but brutal.
- Manual: Create/resize partitions with GParted-like interface:
- / (root): 20 GB
- swap: equal to your RAM (or more if you hibernate)
- /home: remainder for your file hoarding
- User Setup: Enter your name, username (no spaces, please), password, and computer name (host). Consider “the-froot-loop” to amuse network admins.
- Review Install: Give everything a final glance—this is your moment of truth. Click Install and watch progress bars grow.
7. Post-Installation First Boot
Once installation finishes, remove the USB stick and reboot. You’ll be greeted by the sleek SDDM login screen. Enter your credentials and welcome to your new Netrunner desktop!
8. Initial Configuration Customization
- Update System:
sudo apt update sudo apt full-upgrade - Enable Third-Party Repos:
Open Software Sources and toggle non-free repos if you need proprietary drivers/codecs.
- Install Graphics Drivers:
- NVIDIA:
sudo apt install nvidia-driver - AMD: Should be built-in, but enable firmware-amd-graphics if required.
- NVIDIA:
- Plasma Tweaks: In System Settings → Workspace Theme → Global Themes, pick your vibe (breeze-dark is excellent for night owls).
- Widgets Panels: Right-click panel → Add Widgets. Weather, system monitor, and a chocolate-eating-counter (optional).
9. Software Management
Netrunner bundles Discover (GUI) and apt (CLI):
- Discover: Search, install, and update apps with a friendly interface.
- CLI: For purists:
sudo apt install vlc gimp libreoffice
10. Troubleshooting Tips
Boot Issues
- Black screen? Try editing the kernel line: press e in GRUB and add
nomodeset. - No Wi-Fi? Install
sudo apt install firmware-iwlwifi(for Intel) or proprietary driver.
Performance Tuning
- Enable Compositor (System Settings → Display and Monitor → Compositor).
- Use
preloadandzram-toolsto speed up your boot and virtualization.
11. Advanced: Dual Boot with Windows
- Shrink your Windows partition using Disk Management.
- Install Netrunner in the freed space (as per step 6).
- Ensure GRUB detects Windows (
sudo update-grub).
Now you can choose between your old Windows and your shiny new Netrunner at each boot. It’s like picking between cereal and donuts—both good, but only one feels fresh.
12. Resources Community
Conclusion
Congratulations! You’ve successfully navigated from ISO download to a fully customized Netrunner desktop. May your KDE Plasma be ever responsive, your repositories always up-to-date, and your sense of humor intact when things go sideways (they sometimes do—blame 0-day bugs!). Now sit back, enjoy the neon blue dolphin theme, and explore the endless possibilities of Linux.
Happy penguin-ing!
Leave a Reply