User Tools

Site Tools


proxmox

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
proxmox [2025/08/21 15:16] w5gedproxmox [2025/10/01 13:42] (current) w5ged
Line 90: Line 90:
     *.*;auth,authpriv.none UDP @IPADDRESS:1514     *.*;auth,authpriv.none UDP @IPADDRESS:1514
   > sudo service rsyslog restart   > sudo service rsyslog restart
- 
  
 ==== Mumble Server ==== ==== Mumble Server ====
Line 98: Line 97:
       users=100       users=100
       welcometext="<br />Welcome to the CTSD <b>Murmur</b> server.<br /><br />By accessing and using this information system, you acknowledge and consent to the following:<br />   You are accessing a <b>U.S. Government information system</b>, which includes:<br />   (1) this computer<br />   (2) this computer network<br />   (3) all computers connected to this network including end user systems<br />   (4) all devices and storage media attached to this network or to any computer on this network<br />   (5) cloud and remote information services.<br /><br />This information system is provided for U.S. Government-authorized use only.<br />You have no reasonable expectation of privacy regarding any communication transmitted through or data stored on this information system.<br />At any time, and for any lawful purpose, the U.S. Government may monitor, intercept, search, and seize any communication or data transiting, stored on, or traveling to or from this information system.<br />You are NOT authorized to process classified information on this information system.<br />Unauthorized or improper use of this system may result in suspension or loss of access privileges, disciplinary action, and civil and/or criminal penalties.<br />"       welcometext="<br />Welcome to the CTSD <b>Murmur</b> server.<br /><br />By accessing and using this information system, you acknowledge and consent to the following:<br />   You are accessing a <b>U.S. Government information system</b>, which includes:<br />   (1) this computer<br />   (2) this computer network<br />   (3) all computers connected to this network including end user systems<br />   (4) all devices and storage media attached to this network or to any computer on this network<br />   (5) cloud and remote information services.<br /><br />This information system is provided for U.S. Government-authorized use only.<br />You have no reasonable expectation of privacy regarding any communication transmitted through or data stored on this information system.<br />At any time, and for any lawful purpose, the U.S. Government may monitor, intercept, search, and seize any communication or data transiting, stored on, or traveling to or from this information system.<br />You are NOT authorized to process classified information on this information system.<br />Unauthorized or improper use of this system may result in suspension or loss of access privileges, disciplinary action, and civil and/or criminal penalties.<br />"
 +
 +==== OctoPrint ====
 +  > sudo apt install net-tools iputils-ping openssh-server
 +  > sudo adduser octo
 +  > sudo usermod -aG sudo octo
 +  > sudo usermod -a -G tty octo
 +  > sudo usermod -a -G dialout octo
 +  Logout, Login as octo
 +  > cd ~
 +  > sudo apt update
 +  > sudo apt install python3 python3-pip python3-dev python3-setuptools python3-venv git libyaml-dev build-essential libffi-dev libssl-dev
 +  > mkdir OctoPrint && cd OctoPrint
 +  > python3 -m venv venv
 +  > source venv/bin/activate
 +  > pip install --upgrade pip wheel
 +  > pip install octoprint
 +  > sudo nano /etc/systemd/system/octoprint.service 
 +     [Unit]
 +     Description=The snappy web interface for your 3D printer
 +     After=network-online.target
 +     Wants=network-online.target
 +     
 +     [Service]
 +     Environment="LC_ALL=C.UTF-8"
 +     Environment="LANG=C.UTF-8"
 +     Type=exec
 +     User=octo
 +     ExecStart=/home/octo/OctoPrint/venv/bin/octoprint
 +     
 +     [Install]
 +     WantedBy=multi-user.target
 +  > sudo systemctl enable octoprint.service  
 +  
      
 ===== Windows VMs ===== ===== Windows VMs =====
proxmox.1755789385.txt.gz · Last modified: by w5ged