I am playing an old game called Counter-strike 1.6 on Steam. I am trying a tweak that helps improve latency performance. I was given a guide that is used for Microsoft Windows and after digging a bit, I think I found the Linux counterpart of the setting that is similar in Windows.
This is the original article
http://steamcommunity.com/sharedfiles/f ... =153045044
This is what I found to be the tweak I needed for Linux to have a similar effect on the article above.
https://en.wikipedia.org/wiki/Nagle%27s_algorithm
http://hackingnasdaq.blogspot.com/2010/ ... tency.html
So what I did was to backup the file first (working in /proc/sys/net/ipv4 directory):
- Code: Select all
cp tcp_low_latency /home/(user)/Documents/tcp_low_latency_backup
After backing up the said file I attemped to change the default value of "tcp_low_latency" from 0 to 1 using vi but I am getting this error
- Code: Select all
"tcp_low_latency" E667: Fsync failed
There are limited articles that about this error code and the one I read said something like "your disk is full" so I did
- Code: Select all
df /proc/sys/net/ipv4
and got
- Code: Select all
Filesystem Size Used Avail Use% Mounted on
proc 0 0 0 - /proc
From what I understand, proc is a virtual filesystem, so "I think" it should be set zero since all files in this directory resides in memory - RAM (correct me if i'm wrong)
Yes I did become root user by using su before attempting any of the steps I've done.
I'm stuck at this point. I hope someone can point me in the right direction.
Thank you.
UPDATE: Marked this thread as Solved and updated Subject title.