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

推荐订阅源

人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
L
LangChain Blog
J
Java Code Geeks
MyScale Blog
MyScale Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
I
InfoQ
博客园 - 聂微东
量子位
A
About on SuperTechFans
S
SegmentFault 最新的问题
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
云风的 BLOG
云风的 BLOG
H
Help Net Security

CachyOS Forum - Latest posts

Ran into a frozen black screen issue with latest update Niri Settings GUI Not Appearing Update to Gnome 50 and I'm getting black/blank screen on NVIDIA with hybrid graphics My JBL Quantum 350 headphones dont play sound 90% of the time on linux while on windows it plays audio 99% of the time Niri/Noctalia Shell notifications Getting a black screen after alt-tabbing too many times Rog-control-center Duplicate keyboard and mouse in system settings? Games running very poorly after first session (semi-solved, still need help though!) Amdgpu random hangs (does cachy perhaps plan to carry patches for this)? A little something. The adj script that replaces GNU fmt for non-ASCII text Mouse scroll wheel issues - ratchet Can't start steam after updates of today (17 April) Balena etcher or ventoy QEMU Bridge setup - Maybe already known but I found it pretty difficult to do and needed much reading Multi-boot install: what do I do about my /boot and /boot/efi partition? Do you collect all the solutions and post them on Wiki or Forum? System update - lts headers invalid or corrupted Sick to death of updates killing my games! I messed up my stuff again and cant download any thing now. error below Got Logitech MX4 with Haptic working in CachyOS Need help with the performance button on my Acer Nitro V16 AI Bailing out, you are at your own Troubles in the Starfield What is so special about the new Linux Kernel 7? "Issue: Display brightness is locked at a low level after waking from sleep on CachyOS (latest update) Balena etcher or ventoy Help with kernel update, emergency mode Issue happening only on wayland Display not recognised - low resolution
My secondary SSD has been unmounted after trying to remov...
CachyOS_user · 2026-05-17 · via CachyOS Forum - Latest posts

I accidentally deleted the lost + found folder from my nvme thinking I could delete corrupted data, about 5% of my SSD is corrupted luckily it is not my primary. I forgot which command I used that deleted the folder. I know that after I deleted lost + found I used badblocks command to see if that would help my problem after scanning for bad blocks for about 4 hours I shut off my PC and the next time I turned on my computer my nvme has been unmounted. Does anyone know how I can mount my SSD and if I can remove the corruption from my nvme?

sverinn 2

By design, modern NVMe drives should manage bad blocks internally via wear‑leveling and spare areas. badblocks is designed for HDDs.
If you have any important data on that SSD, first of all, create a block-level copy of it with clonezilla or similar program.
Then, use nvme from package nvme-cli. You may also try SMART self‑tests (smartctl -t long)

Currently there is nothing on the SSD. I’m not sure the exact commands I can use to mount it. It was last mounted in /dev/nvme1n1

sverinn 4

Identify your drive: lsblk -d -o NAME,MODEL,SERIAL,SIZE

Format it: nvme format /dev/yourdrive1

Run TRIM: fstrim -av /dev/yourdrive1

Verify that bad blocks are fixed: sudo nvme device-self-test /dev/yourdrive1 -n 1 -s 2h

Partition the drive: cfdisk /dev/yourdrive1

Create filesystem: mke2fs -t ext4 /dev/yourdrive1n0p0

Fit the filesystem to volume size: resize2fs /dev/yourdrive1n0p0

Identify partition UUID: blkid

Edit fstab to mount the volume automatically: nano /etc/fstab
Add line: UUID=your-disk-uuid /your/mountpoint ext4 defaults 0 0

Run systemctl daemon-reload && mount -a

See if the drive is mounted and writable

I managed to mount the drive but some of the commands were saying invalid. Thanks for the help, I will keep trying with some of these commands.

You can always use the command history to see just that.