[{u'ERRORCODE': 16, u'ERRORMESSAGE': u'Linode API v3 is no longer active. Please use Linode API v4: https://www.linode.com/docs/api'}]
Make sure you're on Debian 11+ vs Debian 10-
edit firewall ipv6-name WAN6_IN | |
set default-action drop | |
set rule 10 action accept | |
set rule 10 description "Allow Established/Related" | |
set rule 10 protocol all | |
set rule 10 state established enable | |
set rule 10 state related enable | |
set rule 20 action drop |
# Assuming you got a small IPv6 block and want to delegate across multiple LAN interfaces | |
edit interfaces ethernet eth0 | |
set dhcpv6-pd pd 0 prefix-length /64 | |
set dhcpv6-pd pd 0 interface eth1 host-address ::1 | |
set dhcpv6-pd pd 0 interface eth1 prefix-id :0 | |
set dhcpv6-pd pd 0 interface eth1 service slaac | |
set dhcpv6-pd pd 0 interface eth2 host-address ::1 | |
set dhcpv6-pd pd 0 interface eth2 prefix-id :1 |
"/redfish/v1/Managers/1/Oem/Supermicro/IKVM" | |
'{"Current interface": "JAVA plug-in"}' | |
as opposed to | |
'{"Current interface": "HTML 5"}' | |
( via PATCH ) |
#!/bin/bash | |
# AZ_SAS_TOKEN='' | |
# ArtifactLocation='' | |
# ArtifactBaseName='' | |
DATE_NOW=$(date -Ru | sed 's/\\+0000/GMT/') | |
AZ_VERSION="2022-11-02" | |
AZ_BLOB_URL="https://STORAGE_ACCOUNT_HERE.blob.core.windows.net" | |
AZ_BLOB_CONTAINER="${ApplicationName}" | |
AZ_BLOB_TARGET="${AZ_BLOB_URL}/${AZ_BLOB_CONTAINER}/" |
[{u'ERRORCODE': 16, u'ERRORMESSAGE': u'Linode API v3 is no longer active. Please use Linode API v4: https://www.linode.com/docs/api'}]
Make sure you're on Debian 11+ vs Debian 10-
#!/bin/bash | |
NODE_VERSION=v18.18.2 | |
cd /tmp/ | |
wget --no-clobber https://nodejs.org/download/release/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64.tar.xz | |
sudo systemctl stop kibana | |
tar -xvf node-${NODE_VERSION}-linux-x64.tar.xz --strip-components=1 \ | |
--overwrite \ | |
--directory /usr/share/kibana/node/ | |
cat <<EOF | tee /tmp/node_version_validator.js.patch |
openssl pkcs12 -export -out example.net.p12 -inkey /etc/letsencrypt/live/example.net/privkey.pem -in /etc/letsencrypt/live/example.net/cert.pem -certfile /etc/letsencrypt/live/example.net/chain.pem -name example.net |
While investigating Startup Applications, I noticed one named "Program". Using Task Manager, I was able to add "Command line" column under the Startup tab. This showed me which application was being started. In my case, it was WinHotKey. Also, "Startup type" column, to expose where the startup configuration lives (ie: Registry).
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run
Place double quotes around the value. For example:
"C:\Program Files (x86)\WinHotKey\WinHotKey.exe"
#!bin/bash | |
function hevrist(){ | |
local MAX=3; | |
local n=0; | |
QUERY=$1; | |
function h_x(){ | |
du -shx $1/* 2>/dev/null | sort -rh | head -n 10; | |
}; | |
while [ -n ${n} ] && [ ${n} -lt ${MAX} ]; do |
load-module module-udev-detect tsched=0 |