在debugfs.txt中,挂载debugfs命令如下:
debugfs
mount -t debugfs none /sys/kernel/debug
none在这个语句中的作用是什么?
none
发布于 2015-10-13 08:00:32
这个论点是对将要安装的设备的描述。通常这是一个类似于/dev/sda1的文件名,但是对于与设备无关的挂载,您可以使用任意名称。none只是一个传统的选择,您可以很容易地使用bacon或this_is_not_the_device_you_are_looking_for。
/dev/sda1
bacon
this_is_not_the_device_you_are_looking_for
https://stackoverflow.com/questions/33097074
相似问题