其他分享
首页 > 其他分享> > fsync failed -- /proc/sys/kernel/yama/ptrace_scope

fsync failed -- /proc/sys/kernel/yama/ptrace_scope

作者:互联网

1.files in /proc are not actual files, they're an interface to lower-levels of the operating system.

2.the usual way of updating things in proc is directly with a shell command。
	echo 0 > /proc/sys/kernel/yama/ptrace_scope

3.If you want this setting to be applied every time you boot, edit /etc/sysctl.d/10-ptrace.conf
	kernel.yama.ptrace_scope = 0
	apply your change
		sysctl -p /etc/sysctl.d/10-ptrace.conf


标签:kernel,sysctl,fsync,--,yama,ptrace,scope,proc
来源: https://blog.csdn.net/qq_38963393/article/details/122856131