uos基础 sys-kernel-debug.mount 查看mount文件

统信桌面操作系统专业版V20(1070)

Linux uos 5.10.97-arm64-desktop

uos基础 sys-kernel-debug.mount 查看mount文件

c 复制代码
root@uos:/usr/lib/systemd/system# ls |  grep mount
clean-mount-point@.service
dev-hugepages.mount
dev-mqueue.mount
mountall-bootclean.service
mountall.service
mountdevsubfs.service
mountkernfs.service
mountnfs-bootclean.service
mountnfs.service
proc-sys-fs-binfmt_misc.automount
proc-sys-fs-binfmt_misc.mount
sys-fs-fuse-connections.mount
sys-kernel-config.mount
sys-kernel-debug.mount
systemd-remount-fs.service
umountfs.service
umountnfs.service
umountroot.service
umount.target
root@uos:/usr/lib/systemd/system# cat sys-kernel-debug.mount 
#  SPDX-License-Identifier: LGPL-2.1+
#
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

[Unit]
Description=Kernel Debug File System
Documentation=https://www.kernel.org/doc/Documentation/filesystems/debugfs.txt
Documentation=https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
DefaultDependencies=no
ConditionPathExists=/sys/kernel/debug
ConditionCapability=CAP_SYS_RAWIO
Before=sysinit.target

[Mount]
What=debugfs
Where=/sys/kernel/debug
Type=debugfs
root@uos:/usr/lib/systemd/system# 
相关推荐
何中应10 分钟前
vmware的linux虚拟机如何设置以命令行方式启动
linux·运维·服务器
江畔何人初19 分钟前
kubernet与docker的关系
linux·运维·云原生
bubuly39 分钟前
软件开发全流程注意事项:从需求到运维的全方位指南
大数据·运维·数据库
j_xxx404_2 小时前
Linux:进程程序替换
linux·运维·服务器
RisunJan2 小时前
Linux命令-lnstat(快速查找文件和目录)
linux·运维·服务器
lihui_cbdd2 小时前
Slurm 集群内存管理与限制配置
运维·服务器
历程里程碑2 小时前
Linux 17 程序地址空间
linux·运维·服务器·开发语言·数据结构·笔记·排序算法
H Journey3 小时前
Linux 下添加用户相关
linux·运维·服务器·添加用户
零基础的修炼4 小时前
Linux网络---网络层
运维·服务器·网络
Trouvaille ~4 小时前
【Linux】线程同步与互斥(三):生产者消费者模型实战
linux·运维·c++·信号量·阻塞队列·生产者消费者模型·环形队列