Append the following in the /etc/sysctl.conf file:
net.ipv6.conf.all.disable_ipv6 = 1net.ipv6.conf.default.disable_ipv6 = 1net.ipv6.conf.lo.disable_ipv6 = 1net.ipv6.conf.tun0.disable_ipv6 = 1
and run:
sudo sysctl -p
and reboot
Append the following in the /etc/sysctl.conf file:
net.ipv6.conf.all.disable_ipv6 = 1net.ipv6.conf.default.disable_ipv6 = 1net.ipv6.conf.lo.disable_ipv6 = 1net.ipv6.conf.tun0.disable_ipv6 = 1
and run:
sudo sysctl -p
and reboot
Edit /etc/pihole/pihole-FTL.conf
Change RATE_LIMIT line to:
RATE_LIMIT=0/0
then restart pi-hole:
sudo service pihole-FTL restart
You won't see random DNS resolution issues again!
Recently I had to resize a rather large 4k H.265 video file to 1080p H.265 file. This is what I used. SO much faster than using the CPU for decoding!
ffmpeg.exe -vsync 0 -hwaccel cuda -hwaccel_output_format cuda -i <input file> -resize 1920x1080 -c:v hevc_nvenc -preset fast -rc vbr -acodec copy <output file>
These are across various CPU models and configurations, so use it as a rough guideline to spec your plotter hardware.
In general,
I will update as I discover more.
| GPU | System RAM (GB) | Time (s) |
|---|---|---|
| Tesla P4 | 256 | 485 |
| GTX 1070 | 128 | 286 |
| Tesla P40 | 256 | 242 |
| RTX 3050 | 256 | 230 |
| RTX 3060 Ti | 128 | 187 |
| RTX 3070 | 128 | 167 |
| RTX 4060 Ti | 128 | 162 |
| RTX A4000 | 256 | 122 |
| RTX 3070 | 256 | 97 |
| RTX A5000 | 128 | 90 |
| RTX 3090 | 256 | 77 |
| RTX 4090 | 256 | 75 |
For those folks getting that annoying message when RDP into a Linux host running xrdp.
Create a new config file here:
$sudo nano /etc/polkit-1/localauthority/50-local.d/45-allow-colord.pkla
and put:
[Allow Colord all Users]
Identity=unix-user:*
Action=org.freedesktop.color-manager.create-device;org.freedesktop.color-manager.create-profile;org.freedesktop.color-manager.delete-device;org.freedesktop.color-manager.delete-profile;org.freedesktop.color-manager.modify-device;org.freedesktop.color-manager.modify-profile
ResultAny=no
ResultInactive=no
ResultActive=yes