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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
B
Blog
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
博客园 - Franky
V
V2EX
IT之家
IT之家
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
F
Fortinet All Blogs
I
InfoQ
云风的 BLOG
云风的 BLOG
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog

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!