File: README.Debian

package info (click to toggle)
soapyremote 0.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 504 kB
  • sloc: cpp: 6,740; makefile: 13
file content (18 lines) | stat: -rw-r--r-- 678 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Network performance
===================

The SoapyRemote server and client will use large socket buffer sizes if possible
to improve performance and prevent data loss. These are larger than the default
limits configured in the Linux kernel so you need to raise the limits to make
full use of them. You can do this with:

    sudo sysctl -w net.core.rmem_max=104857600
    sudo sysctl -w net.core.wmem_max=104857600

Alternatively you can create a file /etc/sysctl.d/soapyremote.conf (it is
important that it ends in .conf) with the following contents:

    net.core.rmem_max=104857600
    net.core.wmem_max=104857600

This will configure the limits automatically on every boot.