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

推荐订阅源

Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
MyScale Blog
MyScale Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
P
Proofpoint News Feed
人人都是产品经理
人人都是产品经理
Last Week in AI
Last Week in AI
罗磊的独立博客
G
Google Developers Blog
Y
Y Combinator Blog
博客园 - 【当耐特】
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
美团技术团队
宝玉的分享
宝玉的分享
Jina AI
Jina AI
小众软件
小众软件
T
Tailwind CSS Blog
A
About on SuperTechFans

Proxmox Support Forum

[SOLVED] - Github Auth for Mirrors-Kernel Repo? [Automation] Mass migration tool for MS Win11/Server Proxmox GUI hang - not response is it possible to reject or quarantine spam based on conditions I set ? The PVENode task list in PVE9 is partially obscured due to the terminal font being too large. About 100% error reporting due to pveproxy.service hooks Kubernetes overlay networking breaks when upgrading from PVE 9.1 to PVE 9.2.3 Zentraler Speicher No space left on device Combine datastore and direct file archival to tape Kernel panic VFS: Unable to mount root fs on unknown-block (0,0) sobald ein 7.x Kernel verwendet wird. How to migrate disk of a VM from one ZFS to another Windows Server 2025 fails to boot after PVE 9.2 / Linux 7.0 Kernel upgrade Cannot Install Proxmox on T610 Poweredge with H700 PERC card sdn Config. gateway not reachable How to safely change domain/FQDN? Welche Filterquote erreicht ihr? NFS Share status unknown on 2 of 5 nodes Can't connect to PVE9 consoles [solved] Can't connect to PVE9 consoles [solved] [SOLVED] - Use secondary network for PVE commands Created cluster, one node storage gone BUG: proxmox mail gateway FROM = null bypass spam filtering Moving existing PBS from VMWare workstation to PVE cluster Does eBGP SDN fabric support external peering? Bug: PDM 1.1 not recognizing valid license status Proxmox GUI hang - not response PVE crashes unexpectedly Proxmox Backup Server 4.2 released! Advice
Kernel Panic on reboot from ZFS
invalid@exam · 2026-06-02 · via Proxmox Support Forum

I'm having an issue and can't get my server to boot back to the prompt. Any reboot gives the error

[31.621178] PANIC: zfs: rt={spa=(zfspoolname) vdev_guid=1903510110132383870 ms_id=471 ms_allocatable}: removing nonexistent segment from range tree (offset=76c079f6000 size =300000)

I have tried booting into recovery which works fine, I can view the 3 different zfs pools I have, and none of them show errors and all show online. Could someone offer any insight on this?

cwt

Renowned Member

Looks like a corrupted ZFS space map.

Try in recovery mode:

Code:

zpool import
zpool import -N -o readonly=on zfspoolname
zpool status -v
zpool events -v
dmesg -T | grep -iE 'zfs|nvme|ata|error|timeout|reset|checksum|panic'

If read-only works you should immediately backup your data with zfs send/receive on a new pool.

After that you can try:

Code:

echo 1 > /sys/module/zfs/parameters/zfs_recover
zpool import -N -f zfspoolname
zpool scrub zfspoolname

A hardware check (SMART, RAM, cable, etc.) is also advisable.

Thanks for your reply! I went through those steps, none of the commands hung so that was a good sign, no errors on the pool and it was online. I'm now running the scrub. It's about 30TB of data so I'll report back once that is done.

Looks like a corrupted ZFS space map.

Try in recovery mode:

Code:

zpool import
zpool import -N -o readonly=on zfspoolname
zpool status -v
zpool events -v
dmesg -T | grep -iE 'zfs|nvme|ata|error|timeout|reset|checksum|panic'

If read-only works you should immediately backup your data with zfs send/receive on a new pool.

After that you can try:

Code:

echo 1 > /sys/module/zfs/parameters/zfs_recover
zpool import -N -f zfspoolname
zpool scrub zfspoolname

A hardware check (SMART, RAM, cable, etc.) is also advisable.

Alright I did the scrub, it didn't find anything but a single error, I removed that file, tried to reboot and the same error occurred when trying to boot. It's like 30TB of stuff so I don't have anywhere to move it to. Anyway to fix this specific error?

cwt

Renowned Member

A scrub only verifies data integrity and checksums. It does not repair corrupted allocation metadata, metaslabs, space maps, or range trees.

The panic you’re seeing (“removing nonexistent segment from range tree”) suggests an inconsistency in ZFS’ internal allocation structures rather than a problem with a specific file. The file error found during the scrub may be completely unrelated.

The fact that recovery mode still works is actually encouraging. Before attempting any further writes, I would try importing the pool read-only:

zpool import -N -o readonly=on

If that succeeds, run:

zpool status -v
zpool events -v

and note your exact OpenZFS version.

I would avoid deleting snapshots, running another scrub, resilvering, or making any other changes until you understand what’s causing the panic. If the issue is a metadata inconsistency, additional writes may make recovery harder.

Which OpenZFS version are you running, and does the pool import successfully in read-only mode?