今天我尝试修复系统中的一个小错误,该错误导致我的网络速度变慢。这意味着 -/proc/sys/net/ipv4/conf/p2p-dev-wlp2s0/drop_unicast_in_l2_multicast
当我尝试以 ROOT 用户身份创建目录时(sudo -s
)它抛出了此错误:
mkdir: unable to create directory „/proc/sys/net/ipv4/conf/p2p-dev-wlp2s0”: There is no such file or directory
是否有可能修复此错误,或者我需要使用实时启动 U 盘?我也会出现该错误吗?
答案1
您不能/不应该在 中创建文件或文件夹/proc
,它是一个虚拟文件系统。要实现这一点,您需要编写一个内核模块。无论如何,问题可能是您试图drop_unicast_in_l2_multicast
在一个不存在的目录 (p2p-dev-wlp2s0) 内创建一个目录 ()。不过,我坚信那drop_unicast_in_l2_multicast
应该是一个文件。
请尝试以下操作:
sudo nano /etc/sysctl.conf
- 在新行中添加
net.ipv4.conf.all.drop_unicast_in_l2_multicast = 1
- 保存文件并重新启动计算机
您想要创建的文件应该可用。