Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试获取内核模块中特定文件系统的挂载点的路径。在用户空间工具中,我可以读取 /proc/mount 来执行此操作,但从我尝试和阅读的内容来看,这在内核空间中是不可能的。
如何在内核模块中实现这一点?
您可以从 /dev/ 目录中获取它,也只需在该位置使用 grep 和 sed 即可找到正确的安装点。