Introduction
So you’ve decided to take the plunge into the world of deepin (formerly Deepin, back when it proudly answered to Hiweed GNU/Linux). Congratulations! You’re about to experience one of the sleekest, most user-friendly Linux distributions out there. Whether you’re a seasoned sysadmin or someone who still thinks “sudo” is a typo, this guide will walk you through every step—download, installation, post-installation tweaks—sprinkled with a dash of humor to keep the terminal blues at bay.
Why deepin?
- Eye candy galore: A polished, intuitive desktop environment that might make you question why Windows ever existed.
- Beginner-friendly: Intuitive Control Center, easy software installation via Deepin Store.
- Active community: Frequent updates, an enthusiastic forum, and developers who actually listen (yes, really!).
- Open Source: Because you deserve transparency and freedom, not a lifetime of cryptic EULAs.
System Requirements
| Component | Minimum | Recommended |
|---|---|---|
| CPU | Dual-core 1.5 GHz | Quad-core 2.0 GHz |
| RAM | 2 GB | 4 GB or more |
| Storage | 20 GB HDD/SSD | 40 GB SSD |
| Graphics | Intel HD or equivalent | Dedicated GPU (optional but fun!) |
| Internet | Required for updates | Broadband recommended |
Download the deepin ISO
- Open your web browser (yes, that same one you use to doomscroll). Navigate to the deepin Download Page.
- Choose the proper ISO. Usually 64-bit unless you have an ancient toaster of a PC.
- Click “Download” and prepare for your patience to be tested by your internet speed.
Create a Bootable USB
There are many ways to create a bootable USB. We’ll cover two popular tools:
1. Using balenaEtcher
- Download balenaEtcher from balena.io/etcher (Windows/macOS/Linux).
- Install and launch Etcher.
- Click Select image, choose the deepin ISO you downloaded.
- Insert your USB drive, Etcher will auto-detect. If it picks your hard disk instead, gently tap “Select drive” and pick the USB. Double-check!
- Click Flash! and wait while the progress bar moves. You can finally grab that coffee.
2. Using dd (for Linux users)
# Identify your USB drive (usually /dev/sdX) sudo fdisk -l # Replace /dev/sdX with your USB device sudo dd if=deepin-x.x.x-amd64.iso of=/dev/sdX bs=4M status=progress sync
Warning: Using dd improperly can wipe out your entire OS. Don’t be that person who accidentally formats the wrong drive.
BIOS/UEFI Setup
- Reboot your machine.
- Enter BIOS/UEFI by pressing F2, F10, F12, ESC or whichever key your motherboard manual recommends. (If you’re lucky, you’ll see it splash for a second.)
- In Boot menu, set your USB drive as the first boot device.
- If you have UEFI and Secure Boot enabled, either disable Secure Boot or add deepin’s key (advanced users only!).
- Save changes and exit.
Installation Steps
1. Welcome Screen
When the USB boots, you’ll see the deepin Live environment. Click Install.
2. Language Keyboard
- Select your language.
- Pick your keyboard layout. No more frantic typos!
3. Disk Partitioning
deepin offers:
- Automatic (Erase disk and install): If you want simplicity and a clean slate.
- Manual (Custom partitioning): If you enjoy living dangerously or dual-booting with Windows.
For manual partitioning:
- Create an EFI system partition (300 MB, FAT32) if using UEFI.
- Create a root partition “/” (20 GB ext4).
- Create a swap partition (size = RAM if you hibernate, otherwise half RAM).
- Optional: Create a /home partition for personal files (recommend 10 GB ).
4. User Setup
- Enter your real name (or a fun pseudonym like “Lord Kernel”).
- Pick a username (lowercase, no spaces). Sorry, “MasterChief” is taken.
- Set a strong password—no “123456” allowed.
- Choose whether to log in automatically (not recommended for multi-user machines).
5. Review Install
Deepin will display a summary. Confirm that you’re not about to nuke your family photos. Click Install and watch the progress bar crawl (grab more coffee).
First Boot Post-Installation
1. Reboot
After installation completes, remove the USB and reboot. If you still boot into the live USB, revisit BIOS and set your HDD/SSD first.
2. Welcome Wizard
deepin’s first-boot wizard will help you:
- Set system updates (enable “Auto-update” if you love fresh packages).
- Configure privacy settings.
- Choose a wallpaper (and show off to your friends).
3. Update the System
sudo apt update sudo apt full-upgrade -y
Tip: You can also use the graphical Deepin Store or Control Center → System Updates.
Essential Post-Install Tweaks
- Enable Repositories: Go to Control Center → Deepin Repository → add official mirrors.
- Install Codecs:
sudo apt install ubuntu-restricted-extras
because watching funny cat videos should be smooth.
- Enable Firewall:
sudo apt install ufw sudo ufw enable
- Backup Tool: Consider Timeshift for snapshots:
sudo apt install timeshift
- Snap/Flatpak: If you love sandboxed apps:
sudo apt install flatpak flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Customization (Because Why Not?)
Themes Icons
Control Center → Personalization → Theme. Go wild—dark mode, light mode, neon green mode (just kidding).
Dock Launcher Tweaks
- Control Center → Dock: Adjust size, position, auto-hide.
- Right-click launcher icons to pin your favorites. Bye-bye, clutter!
Keyboard Shortcuts
Control Center → Keyboard → Shortcuts. Map Super T to open Terminal instantly (because typing “terminal” is so 1990s).
Troubleshooting Common Issues
- No Wi-Fi:
- Check if
wifiis soft-blocked:rfkill list. - Install proprietary drivers: Control Center → Drivers.
- Check if
- Black Screen on Boot:
- At GRUB menu, press e, add
nomodesetafterquiet splash, and boot.
- At GRUB menu, press e, add
- Slow Updates:
- Switch mirrors: Control Center → Deepin Repository → choose a faster country mirror.
Wrapping Up
And there you have it—a deep, deep dive into installing and tweaking deepin Linux. You now possess a system that’s as smooth as butter on a warm biscuit. Remember, if you ever get stuck, the deepin community and official docs are your allies. Enjoy your new shiny desktop, and may your uptime be mythically long!
Happy Linuxing!
Official Website of deepin (formerly Deepin, before Linux Deepin, Hiweed GNU/Linux)
Leave a Reply