每个磁盘和分区上都有某种签名和元数据/魔术字符串。你可以使用wipefs命令查看分区表签名/元数据/魔术字符串。wipefs命令可以擦除文件系统,RAID或分区表签名/元数据。
显示磁盘当前签名
- [root@localhost ~]# wipefs /dev/sda
- DEVICE OFFSET TYPE UUID LABEL
- sda 0x1fe dos
- [root@localhost ~]# wipefs /dev/sda1
- DEVICE OFFSET TYPE UUID LABEL
- sda1 0x0 xfs f15a938f-f96d-4b56-8259-76f31c20969
如何使用wipefs删除磁盘的签名
- [root@localhost ~]# wipefs -a -f /dev/sda
- /dev/sda: 2 bytes were erased at offset 0x000001fe (dos): 55 aa
也可以备份一个签名到$HOME目录下,并清空磁盘的签名:
- [root@localhost ~]# wipefs -a -f -b /dev/sda
- /dev/sda: 2 bytes were erased at offset 0x000001fe (dos): 55 aa
如何恢复签名信息:
- [root@localhost ~]# dd if=~/wipefs-sda-0x000001fe.bak of=/dev/sda seek=$((0x000001fe)) bs=1 conv=notrunc
- 2+0 records in
- 2+0 records out
- 2 bytes copied, 0.0007176 s, 2.8 kB/s
使用dd命令清空分区表、签名
再某些情况下,使用wipefs查询不到磁盘的签名,可以使用dd命令来清空分区表和签名:
这时可以使用dd明来清空签名:
- [root@localhost ~]# dd if=/dev/zero of=/dev/sda1 bs=1M count=1
- 1+0 records in
- 1+0 records out
- 1048576 bytes (1.0 MB, 1.0 MiB) copied, 0.00103757 s, 1.0 GB/s
使用下面命令可以清空MBR引导记录:
- [root@localhost ~]# dd if=/dev/zero of=/dev/sda bs=446 count=1
- 1+0 records in
- 1+0 records out
- 446 bytes copied, 0.000605243 s, 737 kB/s
总结
关于如何使用 wipefs 命令擦除磁盘上的签名的文章到此结束,如果对你有帮助点个在看支持一下吧~
原文链接:https://mp.weixin.qq.com/s/1W-e6xfOfrKwKm32TRFQZQ