Linux:
vconfig add en0 3
ip addr add 192.168.126.5/24 dev en0.3
ip link set up en0.3
macOS:
ifconfig vlan0 create
Linux:
vconfig add en0 3
ip addr add 192.168.126.5/24 dev en0.3
ip link set up en0.3
macOS:
ifconfig vlan0 create
ssh-keygen -t ed25519 -C "name[at]domain[dot]tld" | |
>> keyfile ie /home/user/.ssh/github | |
>> passphrase and confirm | |
https://github.com/settings/ssh/new | |
cat /home/user/.ssh/github | |
>> authentication key | |
eval "$(ssh-agent -s)" | |
ssh-add ~/.ssh/github | |
ssh -vT [email protected] |
REM Change 192.168.1.7 to KMS Server IP or Host | |
REM Change ProgramFiles to ProgramFiles(x86) If install x86 version . Default are x64 | |
@echo off | |
Title Converter Office 2019 Retail to Volume And Active Through Server | |
set LICPATH=%ProgramFiles%\Microsoft Office\root\Licenses16 | |
set LICPATH1=%ProgramFiles%\Microsoft Office\Office16 | |
cscript slmgr.vbs /ilc "%LICPATH%\ProPlusVL_KMS_Client-ppd.xrm-ms" | |
cscript slmgr.vbs /ilc "%LICPATH%\ProPlusVL_KMS_Client-ul.xrm-ms" |
#!/bin/bash | |
# url: https://github.com/notthebee/macos_usb | |
git clone "https://github.com/corpnewt/gibMacOS" | |
./gibMacOS/gibMacOS.command -v 11 | |
mv gibMacOS/macOS\ Downloads/publicrelease/*/*.pkg . | |
7z e -txar InstallAssistant.pkg SharedSupport.dmg | |
7z e SharedSupport.dmg 4.* 5.* | |
mv 4.* 4.hfs |
wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz |
#!/bin/bash | |
die(){ | |
echo -e "\n$1" | |
echo -e "\nUsage: $0 /path/to/windows.iso /path/to/usb [gpt|mbr] [full|quick]\n" | |
exit | |
} | |
[ "$(id -u)" != "0" ] && die "You must be root to run this script" | |
[ -f "$1" ] && iso="$1" || die "Error: File $1 does not exist" | |
[ -e "$2" ] && usb="$2" || die "Error: Drive $2 not present" | |
[[ ${3,,} = "mbr" ]] && { mode=1; echo "Mode: MBR"; } || { mode=0; echo "Mode: GPT"; } |
#!/bin/bash | |
die(){ | |
echo -e "\n$1" | |
echo -e "\nUsage: $0 /path/to/windows.iso /path/to/output.img [gpt|mbr]\n" | |
exit | |
} | |
[ "$(id -u)" != "0" ] && die "You must be root to run this script" | |
[ -f "$1" ] && iso="$1" || die "Error: $1 does not exist" | |
[ ! -f "$2" ] && img="$2" || die "Error: $2 already exists" | |
[[ ${3,,} = "mbr" ]] && { mode=1; echo "Mode: MBR"; } || { mode=0; echo "Mode: GPT"; } |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>WinImage 9.0 KeyGen</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body style="text-align: center;"> | |
<h1>WinImage 9.0 KeyGen</h1> |
#!/usr/bin/ruby -w | |
=begin | |
* gtf.rb Copyright (c) 2008, Paul Lutus | |
* Released under the GPL | |
* This Ruby program is largely based on: | |
* ------------------------------------------------------------- | |
* gtf.c Generate mode timings using the GTF Timing Standard | |
* |
sysprep /generalize /oobe /shutdown /unattend:unattend.xml | |
https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/capture-images-of-hard-disk-partitions-using-dism | |
dism /Capture-Image /ImageFile:filename.wim /CaptureDir:C:\ /Name:"Image name" |