Difference between revisions of "Gpubox"

(→‎Specific VM Configurations: add ufw rule for port 11434)
 
(2 intermediate revisions by 2 users not shown)
Line 25: Line 25:
$ ipmitool -H ipmi-compute-2-171.local  -U ADMIN -P pwd dcmi power reading
$ ipmitool -H ipmi-compute-2-171.local  -U ADMIN -P pwd dcmi power reading
[shows electrical power presently being consumed by system]
[shows electrical power presently being consumed by system]
</pre>
Soft shutdown (all this is necessary or it will just reboot):
<pre>
#!/bin/bash
IPMICOMMAND="ipmitool -U ADMIN -P $(cat ipmipass) -H ipmi-compute-2-171"
$IPMICOMMAND power soft
timeout 15 bash -c "while $IPMICOMMAND power status | grep on ; do
        sleep 0.5
      done"
$IPMICOMMAND power off
</pre>
</pre>


Line 33: Line 44:
* Hostname gpubox
* Hostname gpubox
* Proxmox web ui available at: https://gpubox.local:8006
* Proxmox web ui available at: https://gpubox.local:8006
* apt install earlyoom && sudo systemctl enable --now earlyoom  # prevent system crashes due to running out of RAM


== GPU Passthrough Configuration ==
== GPU Passthrough Configuration ==
Line 183: Line 195:
=== ai-conductor ===
=== ai-conductor ===
* TBD
* TBD
=== if you're using a 1080 Ti or 1080 ===
<pre>sudo apt purge "*nvidia*"
sudo apt autoremove --purge
</pre>
then reboot.


== Key Commands ==
== Key Commands ==