Create a template service file at /etc/systemd/system/secure-tunnel@.service. The template parameter will correspond to the name
of target host:
[Unit]
Description=Setup a secure tunnel to %I
After=network.target| --- | |
| kind: Pod | |
| apiVersion: v1 | |
| metadata: | |
| name: debug-pod | |
| namespace: default | |
| annotations: | |
| debug.openshift.io/source-container: container-00 | |
| openshift.io/required-scc: privileged | |
| spec: |
| # Optimized sysctl.conf for Media Streaming Server | |
| # Hardware: 4 cores / 8 threads, 16GB RAM, 1000Mb/s NIC, HDD (not SSD/NVMe) | |
| # Last rev: v1.5.8/26092025 | |
| # | |
| # For Debian-based systems: | |
| # 1. Save this file to /etc/sysctl.conf | |
| # 2. Apply immediately with: sudo sysctl -p | |
| # | |
| # For RHEL-based systems: | |
| # 1. Save this file to /etc/sysctl.d/99-custom.conf |
| # Generated by https://www.enginyring.com/tools/sysctl.php | |
| # Optimized sysctl.conf for File Server | |
| # Hardware: 4 cores / 8 threads, 16GB RAM, 1000Mb/s NIC, HDD (not SSD/NVMe) | |
| # Last rev: v1.5.8/26092025 | |
| # | |
| # For Debian-based systems: | |
| # 1. Save this file to /etc/sysctl.conf | |
| # 2. Apply immediately with: sudo sysctl -p | |
| # | |
| # For RHEL-based systems: |
| #!/bin/python | |
| import datetime | |
| import requests | |
| from bs4 import BeautifulSoup | |
| def get_movie_titles(url): | |
| """ | |
| Fetches a webpage and extracts movie titles from whentostream.com |
| #!/bin/python | |
| import requests | |
| from bs4 import BeautifulSoup | |
| def extract_dvd_titles(): | |
| """ | |
| Extracts DVD/Blu-ray titles from dvdsreleasedates.com for the current month | |
| """ | |
| url = "https://www.dvdsreleasedates.com/digital-releases/" |
| #!/bin/python | |
| import requests | |
| from bs4 import BeautifulSoup | |
| def extract_dvd_titles(): | |
| """ | |
| Extracts DVD/Blu-ray titles from dvdsreleasedates.com for the current month | |
| """ | |
| url = "https://www.dvdsreleasedates.com" |
| #!/bin/python | |
| import requests | |
| from bs4 import BeautifulSoup | |
| def extract_movie_titles_from_url(url): | |
| """ | |
| Fetches and parses an HTML page to extract movie titles from firstshowing.net | |
| Args: |
| [all] | |
| ssh.ocpv08.rhdp.net:30265 | |
| nonexistent.host.com |
| #!/bin/zsh | |
| # Enable "Call script when done downloading" | |
| noti -t "Transmission finished download" -m "ID:${TR_TORRENT_ID}, NAME:${TR_TORRENT_NAME}, PATH:${TR_TORRENT_DIR}" -o |