Files
Linux/存储/问题记录/设备或资源繁忙.md
offends 6165fb97a5
All checks were successful
continuous-integration/drone Build is passing
first commit
2025-12-13 17:57:17 +08:00

23 lines
284 B
Markdown

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