pull down to refresh
0 sats \ 0 replies \ @klk 11h \ parent \ on: But what is quantum computing? (Grover's Algorithm) science
same xD
Ah ok. I automatically assumed you meant changing heatsink+fan. Then sounds like a good idea for when I renew the thermal paste. Thanks!
Maybe in the future for fun. Does it make more noise?
Currently the stock one is keeping it at ~55° C at ~60% which is pretty nice.
Average of 1.5 TH/s with 700MHz and slightly higher voltage than the default. Stock heat sink and power supply.
I honestly rather have something stable that works for the long term.
That's not the “lightning” (LN) that I had in mind when opening the post xD. I should have checked the category.
Fixed VPS Wireguard iptables:
PostUp = iptables -A FORWARD -i wg0 -j ACCEPT; iptables -A FORWARD -o wg0 -j ACCEPT; iptables -t nat -A POSTROUTING -s 10.0.0.0/24 -o eth0 -j MASQUERADE; iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 9735 -j DNAT --to-destination 10.0.0.2:9735
PostDown = iptables -D FORWARD -i wg0 -j ACCEPT; iptables -D FORWARD -o wg0 -j ACCEPT; iptables -t nat -D POSTROUTING -s 10.0.0.0/24 -o eth0 -j MASQUERADE; iptables -t nat -D PREROUTING -i eth0 -p tcp --dport 9735 -j DNAT --to-destination 10.0.0.2:9735