Content :
This configuration is provided AS-IS and as an example/reference for those who do not find a working configuration for themselves. It is not always kept up to date and no support is provided.
Assuming:
- Your Matrix domain:
example.org
- Your TURN domain (arbitrary):
turn.example.org
- Your Public IP:
1.2.3.4
- Your Private IP for the box hosing the services:
10.11.12.13
- A shared secret between synapse and coturn:
ThisIsASharedSecret-ChangeMe
- You want Firefox compatiblity (TURNS only is not supported)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Тест скорости записи\чтения диска Linux | |
if должна указывать на созданный файл, а of куда нибудь в пустоту на устройство /dev/null | |
dd if=/dev/zero of=/tmp/test.img bs=1M count=1024 oflag=dsync | |
Такая команда создаст файл в 1 Гб размером и выведет скорость записи. | |
dd if=/tmp/test.img of=/dev/null bs=1M count=1024 | |
нужно сбросить дисковый кэш, иначе файл будет считан за секунду, а вам выведется скорость чтения в Gb/s. Это делается такой командой: |