Posts

Showing posts from June, 2022

Nvidia GPU mining ETH low hashrate? LHR in cause? Unlocked miner not working? This may help you!

I own a home server. A small server with a lot of old Hard disk drive, in a raid 0 configuration. On this server I have 2 PCIe x16 slots, so I added 2 GPU.  At my local computer store, I got 2 MSI Nvidia RTX 3060 ventus2x for a decent price. I wanted to use this rig to mine ethereum. When I started T-Rex miner, the stats were less than half the hashing speed I was expecting from my search on the net. I got only 21 MH/s and on the net I have seen these cards could do 48 MH/s. It is only then that I learned the existence of the LHR (Low Hashing Rate) feature in the Nvidia 30XX family. No it is not advertised clearly...   This feature is the response from Nvidia to miner that are the cause of the price increase and the unavailability of the GPU these years. By using the same power amount, but with a cutted in half hashing speed these cards are for gamers and 3d artists and other non miner use. From what I have learned, the LHR is only against Eth. In response to the LHR, s...

Proxmox can't shutdown VM [solved] (can't lock file '/run/lock/qemu-server/lock-*.conf)

 I am using proxmox 7.2-3 and I often have the following error when trying to stop, reboot or shutdown a VM from the gui.  can't lock file '/var/lock/qemu-server/lock-101.conf' I don't understand what is going on here, but it can be annoying when you can't shutdown from the VM itself. Here how I do: rm /run/lock/qemu-server/lock-[your VM ID].conf qm unlock [your VM id] qm stop [your VM id] example: rm /run/lock/qemu-server/lock-101.conf qm unlock 101 qm stop 101

proxmox pcie passthrough for GPU mining (linux guest)

 If, as me, you have a hard time to setup your proxmox server to use PCIe passthrough for your GPU, I hope this guide will help you. As today (june 23th 2022) I was able to use 2 GPU mining on a linux host. Windows host didn't work yet. I get the message can't allocate GPU RAM. So to begin, here is my hardware and software version I am working with : Proxmox 7.2-3 Almalinux 8.6 2 x MSI geforce RTX 3060 (one of the GPU is the main gpu) AMD Phenom(tm) II X4 B55 First thing first, be sure VT-d is enabled in your BIOS. Open the proxmox shell and let's play! 1. edit grub configuration file nano /etc/default/grub add to GRUB_CMDLINE_LINUX_DEFAULT: quiet video=simplefb:off pcie_acs_override=downstream,multifunction nofb nomodeset video=efifb:off video=astdrmfb textonly for Intel cpu, you also need to add: intel_iommu=on if you seek on forum and other pcie passthrough tutorial, you will notice most of them will add amd_iommu=on. This is not supported in the kernel. Maybe it ...