标签: linux linux-kernel mount
从debugfs.txt开始,mount debugfs命令是这样的:
debugfs
mount -t debugfs none /sys/kernel/debug
本声明中none的功能是什么?
none
答案 0 :(得分:2)
该参数是要安装的设备的描述。通常,这是一个类似/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