Nr. | Titel | Erscheinung | Autor | Rating |
---|---|---|---|---|
001 | und der Super-Papagei | 1979-10-12 | Robert Arthur | |
002 | und der Phantomsee | 1979-10-13 | William Arden | |
003 | und der Karpatenhund | 1979-10-14 | M. V. Carey | |
004 | und die schwarze Katze | 1979-10-15 | William Arden | |
005 | und der Fluch des Rubins | 1979-10-16 | Robert Arthur | |
006 | und der sprechende Totenkopf | 1979-10-17 | Robert Arthur |
This file contains hidden or 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
@echo off | |
:: BatchGotAdmin | |
:------------------------------------- | |
REM --> Check for permissions | |
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" | |
REM --> If error flag set, we do not have admin. | |
if '%errorlevel%' NEQ '0' ( | |
echo Requesting administrative privileges... |
This file contains hidden or 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
docker pull ixsystems/truecommand | |
docker run --detach -v "[hostdirectory]:/data" -p [portnumber]:80 -p [sslportnumber]:443 ixsystems/truecommand |
This file contains hidden or 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/bash | |
cd /opt | |
mv observium observium_old | |
wget -Oobservium-community-latest.tar.gz https://www.observium.org/observium-community-latest.tar.gz | |
tar zxvf observium-community-latest.tar.gz | |
mv /opt/observium_old/rrd observium/ | |
mv /opt/observium_old/logs observium/ | |
mv /opt/observium_old/config.php observium/ | |
/opt/observium/discovery.php -u |
This file contains hidden or 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
@echo off | |
IF "%~1" == "" GOTO noinput | |
@ping -n 1 %1 | find "TTL" | |
if ERRORLEVEL 1 ( | |
echo offline | |
) else ( | |
echo okay | |
) | |
GOTO end |
This file contains hidden or 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
#user nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; |
This file contains hidden or 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
# File: /etc/apache2/conf-available/markdown.conf | |
# | |
# Copyright (c) 2018 Shane F. Carr | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |
This file contains hidden or 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/bash | |
for i in {a..r}; do | |
echo "Disk sd$i" $SN $MD | |
smartctl -H /dev/sd$i | grep -v "smartctl " | grep -v "Copyright " | grep -v "=== START" | |
done | |
This file contains hidden or 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
import math | |
class HumidityCalculator: | |
def calculate_absolute_humidity( | |
self, | |
relative_humidity: float, | |
temperature: float, | |
temperature_in_fahrenheit: bool = False, | |
is_relative_humidity_in_percent: bool = True | |
) -> float: |
This is a guide for Installing and Configuring QEMU Guest Agent for TrueNAS 13. It is based on the QEMU Guest Agent and VirtIO Console driver from FreeBSD 13.
Due to the TrueNAS kernel lacking certain FreeBSD drivers, it's necessary to download the FreeBSD 13 kernel, extract the VirtIO Console driver and integrate it into the TrueNAS system. This ensures TrueNAS compatibility with virtualized environments.
Required packages for this guide:
- VirtIO Console driver: Man Page