I tried to change the tcp timestamps in Ec2 instance (which is Ubuntu 12.04). I opened up the editor and changed the value 1 from 0. And when I tried to save the file I get this error:
/proc/sys/net/ipv4/tcp_timestamps" E667: Fsync failed
I'm very new to Ubuntu. Can anyone help me in this out?
dd of? All I understand is the echo and the pipe, but I don't understand why dd was needed. Why not>instead? – Adelin Dec 27 '18 at 10:21ddis there to perform the write as root. The rest of the command pipeline does not need to be privileged, so dd is the only part that we run under sudo.If we were to run the entire shell as root, the
– Jeremy Kerr Jan 08 '19 at 01:55>redirection would be fine. But I like to minimise what is run with root privs.