time.google.com
time1.google.com
time2.google.com
time3.google.com
| # This setup works pretty well for OPL with a network link that travels through | |
| # two UniFi switches and connects to a Samba server running inside Docker. The | |
| # host OS is Debian with a ZFS filesystem and the container OS is also Debian. | |
| # Latest Samba (4.11+). | |
| [global] | |
| # ====================== | |
| # General Samba settings | |
| # ====================== | |
| log level = 1 |
| #!/bin/bash | |
| COUNTER=0 | |
| while [ $COUNTER -lt 10000 ]; do | |
| xdotool click 1 | |
| sleep 0.001s | |
| echo The counter is $COUNTER | |
| let COUNTER=COUNTER+1 | |
| done |