Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 454 Bytes

还原sysctl文件.md

File metadata and controls

28 lines (23 loc) · 454 Bytes

有些优化ss教程会出示如下命令行

rm -f /sbin/sysctl
ln -s /bin/true /sbin/sysctl
rm -f /sbin/modprobe
ln -s /bin/true /sbin/modprobe

其实是把 sysctlmodprobe软连删掉了。 😨

== How to restore the two files?

  • For modprobe
ln -sf /bin/kmod /sbin/modprobe
  • For sysctl
    • For centos
    yum reinstall procps
    
    • For debian
    apt-get install procps --reinstall