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

推荐订阅源

S
Schneier on Security
F
Fortinet All Blogs
B
Blog
GbyAI
GbyAI
P
Proofpoint News Feed
量子位
The Register - Security
The Register - Security
宝玉的分享
宝玉的分享
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
B
Blog RSS Feed
WordPress大学
WordPress大学
Recorded Future
Recorded Future
Recent Announcements
Recent Announcements
V
Vulnerabilities – Threatpost
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Secure Thoughts
雷峰网
雷峰网
Stack Overflow Blog
Stack Overflow Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Webroot Blog
Webroot Blog
AWS News Blog
AWS News Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
The GitHub Blog
The GitHub Blog
爱范儿
爱范儿
O
OpenAI News
月光博客
月光博客
H
Hacker News: Front Page
S
Security Affairs
W
WeLiveSecurity
The Hacker News
The Hacker News
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Help Net Security
Help Net Security
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
T
The Blog of Author Tim Ferriss
Spread Privacy
Spread Privacy
Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
S
Securelist
Microsoft Azure Blog
Microsoft Azure Blog
TaoSecurity Blog
TaoSecurity Blog
T
Threat Research - Cisco Blogs
M
MIT News - Artificial intelligence
A
About on SuperTechFans

辛未羊的网络日志

俄语字母与发音 阿森纳重夺英超冠军 时间敏感网络简介 愉快的2026年春节 业余无线电QSL卡片设计 愿2026年一切顺利 写字这件小事 MATLAB求解根轨迹与虚轴交点 业余无线电台执照和呼号 高中母校的回礼 业余无线电操作证考试 连收两张高速超速罚单 南宁城区FM调频广播实测 四旋翼飞行器的建模 再次入手「Smith电子学」 反馈系统的稳定性 系统的输入输出稳定性 系统的无源性 H无穷大状态观测器设计与仿真 桂林城区FM调频广播实测
电脑仰卧起坐抢救记
辛未羊 · 2025-02-25 · via 辛未羊的网络日志

前几天,我那台用了十年多的老电脑突然出了问题。按下开机键后,灯亮风扇转,但仅持续约1秒就灯灭风扇停。这个过程反复进行,机器不断开机关机,仿佛在表演仰卧起坐。我以为这台老古董真的要退休了,甚至动了购买新电脑的念头。

抱着死马当活马医的心态,我先清理了机箱内部的灰尘,更换了CPU的导热硅胶,还把内存条抽出来擦了擦金边,最后随手拍了几下机箱。没想到,经过这么一番鼓捣,电脑竟然可以开机了。本以为问题已解决,但却无法进入到Manjaro桌面系统,黑乎乎的屏幕上显示如下字符:

1
2
3
4
5
6
mount: /new_root: cannot mount; probably corrupted filesystem on /dev/sda1
dmesg(1) may have more information after failed mount system call.
ERROR: Failed to mount 'UUlD=f4fa94dd-3085-4d82-a3d3-cc4910298a92' on real root.
You are now being dropped into an emergency shell.
sh: can't access tty; job control turned off
[rootfs ~]#

提示/dev/sda1的文件系统损坏,无法挂载。这正是系统分区,所以无法正常进入到操作系统,转到紧急救援模式。

查阅资料后,我了解到可以在命令行中修复文件系统,但紧急救援模式下的Shell环境只有一些非常基础的命令。于是,我制作了一个系统启动U盘,进入BIOS,将启动项更改为U盘启动。进入到U盘中的Manjaro系统后,使用fsck命令修复了文件系统。修复完成后重启,电脑终于能够正常进入Manjaro桌面系统。我的解决方案来自Gemini,关键信息如下:

Live USB/DVD (Important Fallback): If you can't get into the emergency shell, or if fsck isn't working from there, you need a Manjaro (or other Linux) live USB/DVD. This is a bootable environment that runs from the USB drive or DVD, without touching your hard drive. You can create one on another computer. Boot from the live environment, and then:

  • Identify your partitions: Use lsblk or sudo fdisk -l to be absolutely certain you know the correct partition name (e.g., /dev/sda1).
  • Run fsck: Open a terminal in the live environment and run fsck -y /dev/sda1 (again, replacing /dev/sda1 if necessary).
  • Access your files (if needed): If fsck fixes the problem, you can mount your partition (in the live environment) and copy any critical files to a safe location (like another USB drive) before you reboot. This is a good precaution in case something goes wrong.

这台功勋老将上次做大保养还是五年多前(详见台式机翻新记),用了这么久,本以为它要彻底退休了,没想到整一整硬件和软件之后,它又复活了,太高兴了!