Jump to content

Linux: Difference between revisions

218 bytes added ,  8 February 2022
Line 783: Line 783:
# Copy your binary to <code>/usr/local/bin</code>
# Copy your binary to <code>/usr/local/bin</code>
# Copy your man page to <code>/usr/local/share/man/man1/</code>
# Copy your man page to <code>/usr/local/share/man/man1/</code>
==Network Troubleshooting==
On one of my OptiPlex5060 servers, the network adapter would reset on git ssh clones.<br>
This was resolved by disabling TCP Segmentation Offload:
<pre>
sudo ethtool -K eno1 tso off
</pre>