Power Consumption The power consumption seems to vary a bit between cards, some of them end up doing really well considering how old they are. Range: 75 – 92 W Average = ~84 W
Settings Core: 1100 V: 800 Mem : 2100
Average Mhs Per Watt : 0.36/Mhs Average Watts Per Mhs: 2.8 W
Profitability is about $3.68/day as of February 9, 2021
These steps should work for multiple versions of Ubuntu Server.
Thankfully enabling automatic updates in Ubuntu is super easy.
First make sure that the “unattended-upgrades” package is installed
sudo apt install unattended-upgrades
It was already installed on my Ubuntu 20.04 server instance. Next run dpkg to reconfigure and enable updates
sudo dpkg-reconfigure unattended-upgrades
You should get the following prompt.
Hit “Yes” to enable.
Your system should now automatically install updates. however, if it needs to reboot it may not. You can configure the reboot options in
sudo vi /etc/apt/apt.conf.d/50unattended-upgrades
Scroll down to the Reboot lines and uncomment
// Automatically reboot *WITHOUT CONFIRMATION* if
// the file /var/run/reboot-required is found after the upgrade
Unattended-Upgrade::Automatic-Reboot "true"; // <- Uncomment line
// If automatic reboot is enabled and needed, reboot at the specific
// time instead of immediately
// Default: "now"
Unattended-Upgrade::Automatic-Reboot-Time "02:00"; // <- Uncomment line
Save the file. Your system should now automatically install stable updates.
Disable automatic update
You can disable the automatic updates by running the dpkg command again.
sudo dpkg-reconfigure unattended-upgrades
and selecting “No”
Automatic updates should now be off.
More information can be found at the following link.
Replace 128K with the rate you would like. Rate is in Bytes, K for kilobytes M for megabytes.
More info from the man pages
--limit-rate=amount Limit the download speed to amount bytes per second. Amount may be expressed in bytes, kilobytes with the k suffix, or megabytes with the m suffix. For example, --limit-rate=20k will limit the retrieval rate to 20KB/s. This is useful when, for whatever reason, you don't want Wget to consume the entire available bandwidth. This option allows the use of decimal numbers, usually in conjunction with power suffixes; for example, --limit-rate=2.5k is a legal value. Note that Wget implements the limiting by sleeping the appropriate amount of time after a network read that took less time than specified by the rate. Eventually this strategy causes the TCP transfer to slow down to approximately the specified rate. However, it may take some time for this balance to be achieved, so don't be surprised if limiting the rate doesn't work well with very small files.
For some reason a lot of applications out there do not have a built RPM package. Fortunately, there are a bunch of applications built into snap, so we can install snap and then install Discord.
You can also use the copr repo. Visit the following link for instructions.