我正在尝试用以下命令创建一个脚本:
sysctl -w net.ipv4.tcp_rmem=65536 87380 16777216
但是,我收到此错误:
net.ipv4.tcp_wmem = 65536
error: "65536" must be of the form name=value
error: "16777216" must be of the form name=value
我在网上查了一下,这个命令是有效的,但它不起作用。
答案1
您需要用引号括住该值,以便将其显示为单个“值”,例如
sysctl -w net.ipv4.tcp_rmem="65536 87380 16777216"