我想更改 FAT USB 的卷标,fatlabel
但是当我尝试在终端中运行该命令时,它无法识别它。
root@debian:/home/a# fatlabel --help
bash: fatlabel: command not found
所以我尝试安装dosfstools
包含fatlabel
.然而它已经安装了。
root@debian:/home/a# apt-get install dosfstools
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
dosfstools is already the newest version (4.2-1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
两者man fatlabel
以及在线联机帮助页https://manpages.debian.org/bullseye/dosfstools/fatlabel.8.en.html明确说明这fatlabel
是调用命令的正确名称。我该如何恢复该命令?
答案1
该命令位于 中/sbin
,因此可能您PATH
不包含该目录(如果您更改为root
使用,则会发生这种情况su
)。
快速解决方法是给出其完整路径:
/sbin/fatlabel --help
您可以使用以下命令找到给定包的命令的安装位置dpkg -L
:
dpkg -L dosfstools | grep bin/