(Serial port or com port? - Serial ports are often refered as COM ports. It is the same to be short. You can read abut it in the Wiki article )
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
# /etc/debian_installer | |
d-i debian-installer/language string en | |
d-i debian-installer/country string US | |
d-i debian-installer/locale string en_US.UTF-8 | |
d-i localechooser/languagelist select en | |
d-i localechooser/supported-locales multiselect en_US.UTF-8 UTF-8 | |
d-i console-setup/ask_detect boolean false | |
d-i console-setup/modelcode string pc105 | |
d-i console-setup/variant USA | |
d-i console-setup/layout USA |
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 | |
di() { | |
for deb_file in "$@"; do | |
local package_name=$(basename "$deb_file" | cut -d'_' -f1) | |
if dpkg -l | grep -q "^ii $package_name "; then | |
echo "$package_name is already installed, skipping installation." | |
else | |
dpkg -i "$deb_file" | |
fi |
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
<job id="Partially works"> | |
'filename raa.wsf | |
<script language="VBScript"> | |
'setup | |
Const ForReading = 1, ForWriting = 2, ForAppending = 8 | |
Const TristateUseDefault = -2, TristateTrue = -1, TristateFalse = 0 | |
Set oShell = createobject("WScript.Shell") | |
Set objFSO = CreateObject("Scripting.FileSystemObject") | |
Set objHTTP = CreateObject("Microsoft.XMLHTTP") |
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
<html> | |
<head> | |
<title>OutlookContacts2CiscoJabberXML.hta</title> | |
<hta:application scroll="no" windowState="normal"> | |
</head> | |
<script language="VBScript"> | |
sub Window_onLoad() | |
Window.resizeTo 550, 850 | |
crlf = chr(13) & chr(10) |
https://www.keycloak.org/docs/latest/server_installation/- Dead Linkhttps://keycloak.ch/keycloak-tutorials/tutorial-1-installing-and-running-keycloak/- Outdated- https://www.keycloak.org/downloads
- Installation on Debian 11.03
- Pre-requisite: (check/set)
timedatectl set-timezone America/Chicago
Some notes on what I was testing...
Working on getting Commodore and Amiga BBS and terminals going.
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
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
cscript wincomputerinfo.vbs |
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/bash | |
if [ ! $(whoami) = 'root' ]; then | |
echo "This script should be run as root." > /dev/stderr | |
exit 1 | |
fi | |
#set vars | |
ip=`ifconfig | awk '/inet / {print $2}' | grep -v 127.0.0.1` | |
rname=`nslookup $ip | grep name | cut -d' ' -f 3` | |
subdomain=`echo $rname | cut -d. -f 2` | |
domain=`echo $rname | cut -d. -f 3`.`echo $rname | cut -d. -f 4` |
NewerOlder