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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
I
InfoQ
D
Docker
F
Fortinet All Blogs
Y
Y Combinator Blog
Martin Fowler
Martin Fowler
月光博客
月光博客
B
Blog
Engineering at Meta
Engineering at Meta
T
Tailwind CSS Blog
罗磊的独立博客
博客园_首页
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
IT之家
IT之家
V
V2EX

Latest news

LG G6 vs. LG G5: I compared the latest OLED TV models, and it's a surprisingly tough choice I saw the 'MacBook Pro for Linux users' for the first time, and it's a legit Windows threat I tested Surfshark's new Dausos VPN protocol - here's how it compares to WireGuard How to easily encrypt your files on an Android phone - for free I'm not giving up on DJI cameras yet - not when they can upset my GoPro like this The best website builders for small businesses in 2026: Expert tested and reviewed 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 Your old iPad or Android tablet can be your new smart home panel - here's how Apple's original AirTag still tracks effectively, and you can get a 4-pack for its best price ever T-Mobile will give you an iPad for $99 when you sign up for a new line - here's how 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
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