Cat files without comments! only relevant information from config files will be shown
- PHP ini files (linnes commented with ;):
cat php.ini | egrep -v "^\s*(;|$)"
- Apache, Nginx conf files (lines commented with #):
services: | |
ollama: | |
image: ollama/ollama:${OLLAMA_DOCKER_TAG-latest} | |
container_name: ollama | |
volumes: | |
- ./ollama:/root/.ollama | |
ports: | |
- "11434:11434/tcp" | |
restart: unless-stopped | |
tty: true |
#!/bin/bash | |
# backup script which backs up a whole linux installation doing incremental backups using rsync | |
# Check for root priviliges | |
if [[ $EUID -ne 0 ]]; then | |
printf "Please run as root:\nsudo %s\n" "${0}" | |
exit 1 | |
fi | |
set -o errexit |
#!/usr/bin/env sh | |
#################################################################### | |
### ____ _____ ____ ___ _ _ _ ___ _ _ _ __ __ ### | |
### | _ \| ____| __ )_ _| / \ | \ | | / _ \| \ | | | \ \ / / ### | |
### | | | | _| | _ \| | / _ \ | \| | | | | | \| | | \ V / ### | |
### | |_| | |___| |_) | | / ___ \| |\ | | |_| | |\ | |___| | ### | |
### |____/|_____|____/___/_/ \_\_| \_| \___/|_| \_|_____|_| ### | |
#################################################################### | |
####### _ _ ___ _ _ ____ _ _ _ _ _____ _ _ ######## |
#!/usr/bin/lua | |
-- SPDX-FileCopyrightText: Florian Maurer | |
-- SPDX-License-Identifier: MIT | |
local jsonc = require("jsonc") | |
local function truncate_hostname(hostname, max_length) | |
-- If the hostname is already within the maximum length, return it as is | |
if #hostname <= max_length then | |
return hostname |
https://unix.stackexchange.com/questions/722954/ssh-stuck-at-expecting-ssh2-msg-kex-ecdh-reply | |
Somehow I can connect on the second try, but never on the first try after waiting some minutes. | |
This only happens through the BGP session between the hosts, never when directly accessing the host. | |
not working: | |
debug3: kex_choose_conf: will use strict KEX ordering | |
debug1: kex: algorithm: [email protected] | |
debug1: kex: host key algorithm: ssh-ed25519 |
wget https://repo.zabbix.com/zabbix/7.0/debian/pool/main/z/zabbix-release/zabbix-release_latest+debian12_all.deb | |
dpkg -i zabbix-release_latest+debian12_all.deb | |
apt update | |
apt install zabbix-agent2 | |
#apt install zabbix-agent2-plugin-* | |
# | |
sed -i 's/Server=127.0.0.1$/Server=127.0.0.1,2001:470:746c:144::ffac:affe:affe,78.47.123.144,2a01:4f8:212:48:b144:ffac:affe:affe,2a01:4f8:191:13c8:b144:ffac:affe:affe/' /etc/zabbix/zabbix_agent2.conf |
Cat files without comments! only relevant information from config files will be shown
cat php.ini | egrep -v "^\s*(;|$)"
#!/usr/bin/lua | |
-- Install at /lib/setup-mode/rc.d/S14-migrate (chmod +x) | |
local site = require 'gluon.site' | |
local uci = require('simple-uci').cursor() | |
local util = require 'gluon.util' | |
local pretty_hostname = require 'pretty_hostname' | |
#!/bin/bash | |
set -e | |
# Check for root priviliges | |
if [[ $EUID -ne 0 ]]; then | |
printf "Please run as root:\nsudo %s\n" "${0}" | |
exit 1 | |
fi | |
# for more information look here: https://docs.conda.io/projects/conda/en/latest/user-guide/install/rpm-debian.html | |
# Install our public GPG key to trusted store |
#!/bin/bash | |
# makes a cloud-init template vm from URL | |
# call like ./make-debian-template.sh 9000 | |
# Check for root priviliges | |
if [[ $EUID -ne 0 ]]; then | |
printf "Please run as root:\nsudo %s\n" "${0}" | |
exit 1 | |
fi |