first commit
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2025-12-13 17:57:17 +08:00
commit 6165fb97a5
109 changed files with 9251 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
> 本文作者:丁辉
# 设备或资源繁忙
## 块设备资源繁忙
> mkfs.xfs: cannot open /dev/sdb: Device or resource busy
解决办法
1. 列出所有逻辑设备
```bash
dmsetup ls
```
2. 移除占用
```bash
dmsetup remove ${逻辑设备}
```