View bootstrap.md
Reference
https://docs.cilium.io/en/stable/installation/k0s/
Bootstrap Cluster
curl -sSLf https://get.k0s.sh | sudo sh
# with ghproxy
curl -sSLf https://fetch.hikariai.net/api/v1/script/k0s-bootstrap.sh | sudo sh
View k0s-bootstrap.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
if [ -n "${DEBUG}" ]; then | |
set -x | |
fi | |
_k0s_latest() { | |
curl -sSLf "https://docs.k0sproject.io/stable.txt" |
View shadowrocket-dns-leak-config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Shadowrocket配置文件,解决DNS泄露 | |
[General] | |
bypass-system = true | |
skip-proxy = 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12, localhost, *.local, captive.apple.com | |
tun-excluded-routes = 10.0.0.0/8, 100.64.0.0/10, 127.0.0.0/8, 169.254.0.0/16, 172.16.0.0/12, 192.0.0.0/24, 192.0.2.0/24, 192.88.99.0/24, 192.168.0.0/16, 198.51.100.0/24, 203.0.113.0/24, 224.0.0.0/4, 255.255.255.255/32, 239.255.255.250/32 | |
dns-server = system | |
ipv6 = false | |
prefer-ipv6 = false | |
dns-fallback-system = false |
View auto-artifact-export.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: Update dat files | |
hosts: all | |
become: yes | |
vars: | |
- base_path: /etc/mosdns | |
- restart_daemon: yes | |
- daemon_service_name: mosdns | |
- clean_up_after: yes |
View qnap_emby_nvidia.md
Hacks
Some hacks around using NVIDIA GPU for Emby Container with QNAP
Make sure you have NVIDIA driver installed already
Check NVIDIA Driver Path
find /share/ -name "NVIDIA_GPU_DRV"
View Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG FUNCTION_DIR="/function" | |
### Production Stage ### | |
FROM python:slim-bullseye as staging-image | |
# Include global args in this stage of the build | |
ARG FUNCTION_DIR | |
# Set working directory to function root | |
WORKDIR ${FUNCTION_DIR} |
View pve-trick-sriov-vf-configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The following is a step-by-step example for enabling SR-IOV VF on Promxox 7+ with BCM57810 10G NIC | |
--- | |
References | |
https://forum.proxmox.com/threads/enabling-sr-iov-for-intel-nic-x550-t2-on-proxmox-6.56677/ | |
https://zhuanlan.zhihu.com/p/91197211 | |
https://zhuanlan.zhihu.com/p/356437308 | |
https://zhiliao.h3c.com/Theme/details/24770 | |
https://blog.csdn.net/Jackykxy/article/details/120585563 |
View ros-commands.md
RouterOS
SSH Configuration
$ ssh admin@router
[user@router] > /file print file=mykey;
[user@router] > /file set mykey contents="copy and paste contents of ~/.ssh/id_rsa.pub here";
[user@router] > /user ssh-keys import public-key-file=mykey.txt
[user@router] > /ip ssh set always-allow-password-login=yes"
View cilium_writeup.md
Cilium WriteUp
NewerOlder