Remove Proxmox Subscription Notice (Tested to 6.3-3)

To remove the “You do not have a valid subscription for this server” popup message while logging in, run the command bellow. You’ll need to SSH to your Proxmox server or use the node console through the PVE web interface. * If you have issuesand need to revert changes please…

HP Procurve Fan and Temps Sensors

https://kb.paessler.com/en/topic/73833-can-i-monitor-my-hp-procurve-switch-health https://exchange.nagios.org/directory/Plugins/Hardware/Network-Gear/HP/HP-Procurve-SNMP-monitor/details Setup 1. Create a new SNMP Custom Advanced Sensor [https://www.paessler.com/manuals/prtg/snmp_custom_advanced_sensor] on the device 2. Configure the channels like in the below table: NameOIDValue…

Bluetooth A2DP - Ubuntu

Type in a terminal: sudo apt purge pulseaudio-module-bluetooth bluetooth bluez-* bluez sudo apt install blueman bluez pulseaudio-module-bluetooth pactl load-module module-bluetooth-discover Go to Blueman, connect to your device and set its audio profile to A2DP with high quality sound. Go to Sound Preferences to select the headphones as your audio device.…

Check Hard drive for bad sectors or bad blocks in linux

Step:1 Use fdisk command to identify your hard drive info # sudo fdisk -l Step:2 Scan your hard drive for Bad Sectors or Bad Blocks # sudo badblocks -v /dev/sdb > /tmp/bad-blocks.txt Just replace “/dev/sdb” with your own hard disk / partition. When we execute above command a…

SSH Tunnels

Bash script found here: https://gist.github.com/scy/6781836 * -fRun in the background before command execution. * -NDon’t execute any commands * -TDisable pseudo-tty allocation. * -S socketnameUse a control socket with name socketname * -MPut control socket in master mode * -O check, exitControl command #!/bin/bash ip="1.1.1.1"…