惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
D
Docker
J
Java Code Geeks
腾讯CDC
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
博客园 - Franky
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News

Latest news

Why I'm recommending last year's phones over 2026 models - with one exception This powerful Gemini setting made my AI results way more personal and accurate After testing this HP laptop, I get why its 'boring' design is adored by business users The best TV antenna of 2026: Expert tested How to qualify for Apple's education discount - and get a $499 MacBook Neo for school T-Mobile will give you a Samsung Galaxy Watch 8 for free - how to get yours Prolonged AI use can be hazardous to your health and work: 4 ways to stay safe Verizon will give you a free iPad or Apple Watch with your next iPhone - how the deal works The best laptops of 2026: Expert tested and reviewed I hid 4 Bluetooth trackers (including AirTags) to test their reliability - here's how Android rivals compared I stopped using my iPhone's hotspot after testing this 5G router - and that won't change The best Kindles in 2026: Expert recommended Does Best Buy price match? Everything to know about matching prices online and in-store The best WordPress hosting services of 2026: Expert tested and reviewed The best Apple Watch of 2026: Expert tested and reviewed The best TV screen cleaners of 2026: Expert recommended The best 50-inch TVs of 2026: Expert tested I traded my Sonos Era 300 for Denon's new home speaker - and see no reason to go back AI-powered website builders have come a long way - here's your best option in 2026 Amazon just slashed $250 off the Google Pixel 10 - and a Prime subscription isn't required I found the apps slowing down my PC - how to kill the biggest memory hogs These companies are actually upskilling their workers for AI - here's how they do it Verizon will give you Meta Ray-Bans for free with this Fios Internet deal - how to get yours I tried the new Gemini app for Mac - it has one major advantage over the web version How Google's updated AI Mode will ease your tab clutter when you search Why this MagSafe battery pack is our readers' favorite model right now - especially at its price T-Mobile will give you a Google Pixel 10a for free - plus an extra gift OpenAI's Codex Desktop can run your computer now - and has its own browser Want to build a startup that gets acquired? This founder shares 5 proven tips Google to pay $135M settlement to Android phone users - how to claim your share if you qualify
I switched to Alpine Linux, and it's a crazy-fast distro ...
Written by · 2026-06-11 · via Latest news
Alpine Linux
Jack Wallen/ZDNET

Follow ZDNET: Add us as a preferred source on Google.


ZDNET's key takeaways

  • Alpine Linux is a small but mighty distribution.
  • With a bit of work, it can be shaped into a lightning-fast desktop OS.
  • Alpine Linux is free to download and install.

I've used every conceivable Linux distribution, from the extremely lightweight to the overstuffed and bloated. With almost every distribution type, I can find a rock-solid use to make the most of what it offers.

Also: The best Linux laptops: Expert tested for students, hobbyists, and pros

Alpine Linux is no outlier. However, for the most part, I've used this lightweight, security-focused distribution for container deployments -- one of the most common use cases for Alpine Linux because its base image is incredibly small (between 2.67 and 5 MB - yes, megabytes). This gives Alpine Linux a minimal attack surface, which is great for containers.

But is Alpine Linux an option for the desktop? The answer to that is yes, but with a big honking asterisk.

Let me explain.

What is Alpine Linux?

Alpine Linux is a very minimal distribution, which translates to, "It doesn't ship with a desktop environment or a lot of apps/tools you're accustomed to." In fact, it doesn't ship with sudo or even bash. 

Consequently, it does take some work to make Alpine Linux a viable option for the desktop. But that doesn't preclude it from being an option, especially for those who value simplicity and security.

Also: Want to save your aging computer? Try these 5 Linux distributions

At the same time, getting Alpine Linux readied for desktop usage isn't exactly for the faint of heart. If you know what you're doing, you can have a solid desktop up and running in minutes. If you don't know what you're doing, it could take a while.

Is it time well spent? If you like a slight challenge and want to enjoy the end result of your efforts, the answer is yes. Alpine Linux as a desktop distribution is definitely worth the time spent.

Let me show you what that time involves.

Installing Alpine Linux

The installation of Alpine Linux is a text-based affair, but it's not even remotely challenging (so long as you can answer a few simple questions).

The process includes the following:

  1. Create a bootable USB drive with the downloaded Alpine Linux ISO.
  2. Boot the USB drive.
  3. When prompted, log in as root (no password).
  4. Run the command setup-alpine.
  5. Select your keyboard.
  6. Set your hostname.
  7. Set up the network connection (accept the default by hitting Enter on your keyboard).
  8. Set a root user password.
  9. Set the time zone.
  10. Select an Alpine mirror. (I suggest the official Alpine mirror, as I've run into trouble with the fastest option.)
  11. Set up a regular user account.
  12. Choose your secure shell daemon. (Hit Enter to accept OpenSSH as your default.)
  13. Partition your disk. (Because we're going to use this as a desktop, type sys for a traditional hard-disk installation.)
  14. The installation will complete in about a minute. Once it completes, reboot with the command: reboot

Also: After 30 years with Linux, I gave Windows 11 a chance - and found 9 clear problems

After it reboots, log in as the standard user you created during installation.

Installing the KDE Plasma desktop

Before installing KDE Plasma, there are a few things to take care of. First, you'll need to enable the community repository. To do this, install the nano text editor with:

doas apk add nano

Once that completes, install bash and sudo with:

doas apk add bash bash-completion sudo shadow

Reboot again.

Log back in as your standard user and then issue the command:

setup-desktop

Type plasma and hit Enter on your keyboard. This will walk through installing everything required for the KDE Plasma desktop.

Also: The most beautiful Linux distributions 

When that completes, reboot again. After the reboot completes, you'll be greeted with the KDE Plasma login screen, where you can log in as your standard user and start using the desktop.

Alpine Linux

KDE Plasma certainly is a beauty.

Screenshot by Jack Wallen/ZDNET

The first thing you'll notice is how fast Alpine Linux performs. It's crazy fast. You might also notice that, even though you have a network connection, some apps don't recognize it. That's because the NetworkManager service isn't running. To start and enable that, issue the following commands:

doas rc-service networkmanager start

doas rc-update add networkmanager default

You should now be able to use everything as expected, even KDE Discover for installing applications (such as Flatpak).

Alpine Linux

I would highly recommend installing Flatpak, so you have more options.

Screenshot by Jack Wallen/ZDNET

That's a lot of hoops to jump through, yes, but the hoops aren't all that challenging -- so long as you don't mind typing some commands. The end result is a lightning-fast desktop that can serve you very well. 

Who is Alpine Linux best suited for?

I would never recommend Alpine Linux as a desktop distribution for those with no Linux experience. But for those with even a modicum of familiarity with the open-source operating system, Alpine Linux could be a nice addition for personal use. On top of that, you'll learn a bit more about Linux along the way.

Also: I tried the latest MX Linux version on my PC, and it made the system look and feel like new

One last thing: Alpine Linux doesn't ship with a firewall (though when you install KDE Plasma, it adds a firewall GUI). You can install a firewall with a command like:

doas apk add ufw

Once you've installed the firewall, open the firewall GUI and enable it.

Have fun with Alpine Linux.

Open Source