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

推荐订阅源

Y
Y Combinator Blog
MyScale Blog
MyScale Blog
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
V
V2EX
MongoDB | Blog
MongoDB | Blog
Microsoft Security Blog
Microsoft Security Blog
博客园 - 三生石上(FineUI控件)
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
H
Help Net Security
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
T
The Blog of Author Tim Ferriss
C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

Lobsters

CIFSwitch: a non-universal Linux local root vulnerability RIPE NCC session fixation: poaching logins with an Atlas probe GNOME 2.20 but its Web Components Agentic Search for Context Engineering – Leonie Monigatti Garnix is shutting down [not OC] akashina.tngl.sh/jjc Concerning Emacs (and Jazz) Nitpicking the shell history scene in ‘Tron: Legacy’ What's cooking on SourceHut? Q2 2026 The tenth OpenPGP email summit Package managers that package package managers Clojure on Fennel part three: parsing WordPress at 23 Finding Miscompiles for Fun, Not Profit GitHub - creusot-rs/creusot: Creusot helps you prove your Rust code is correct. Announcing Rust 1.96.0 | Rust Blog A Love Letter to Neovim sqlite AGENTS.md Am I a Bad Friend? CSS vs. JavaScript • Josh W. Comeau Erlang Ecosystem Foundation - Supporting the BEAM community A brief note about slot access cost in Common Lisp Keyboard latency probe Rethinking the GNOME clipboard issues Back to the Building Blocks’ Building Blocks Tech Notes: Theseus: translating win32 to wasm Fast is better than slow Content-addressed Rust builds (or, what kache actually caches) Intent to Prototype: Embedding API Canada’s Bill C-22 and the security cost of collecting more data
Installing SerenityOS on My Old ThinkPad T60
btxx.org via · 2026-06-28 · via Lobsters

2026-06-28

I recently had the urge to play around with SerenityOS on real hardware. Since the project is slightly catered towards older machines, I figured my ThinkPad T60 was a perfect candidate for running on bare metal.

The following is a loose guide for those interested in doing the same. Take note that I built SerenityOS on a separate device running Fedora, so the instructions below are based on that.

Initial Setup

First we need to grab all the packages required to run and build of SerenityOS image:

sudo dnf install texinfo binutils-devel curl cmake mpfr-devel libmpc-devel gmp-devel e2fsprogs ninja-build patch ccache rsync @development-tools @c-development @virtualization

Now we clone the project:

git clone https://github.com/SerenityOS/serenity.git
cd serenity

Next we build the cross-toolchain:

Meta/serenity.sh image x86_64

Then we can create our bootable image (soon to be flashed to our SSD):

cd Build/x86_64 && ninja grub-image

Now plug in your SSD of choice, find it’s destination and flash this created image to it:

sudo dd if=grub_disk_image of=/dev/sdX bs=64M status=progress && sync

Insert the recently flashed SSD into the laptop and that should be it!

BIOS Settings

Also be sure to set your default Serial ATA (SATA) settings in your BIOS to “Compatibility” and not AHCI. That tripped me up at first…

Our First Boot

Things never run perfectly the first time, do they? I booted up the T60 and was greeted with the following:

StorageManagement: Detected 1 storage devices
  Device: block3:0 (ata, 1 partitions)
    Partition: 1, block100:0 (UUID {00000000-0000-0000-0000-000000000000})
KERNEL PANIC! :^(
StorageManagement: Couldn't find a suitable device to boot

Uh oh…

I had to do some internet sleuthing to figure out what the heck was happening here. Eventually I came to the conclusion that I need to tweak the details found in the project’s Meta/grub-mbr.cfg file.

So this:

menuentry 'SerenityOS (normal)' {
 root=hd0,1
 multiboot /boot/Kernel root="lun0:0:0;part0"
}

need to be changed to:

menuentry 'SerenityOS (normal)' {
 root=hd0,1
 multiboot /boot/Kernel root="block100:0"
}

Then I needed to rebuild and reflash to the T60:

rm Build/x86_64/grub_disk_image
cd Build/x86_64
ninja grub-image

Booting Again…

It’s alive! We got a successful boot!

SerenityOS running on my ThinkPad T60
SerenityOS running on my T60. Isn't it beautiful?

Things are pretty straight forward once you understand the whole process. Hopefully this inspires you to give SerenityOS a test run as well!