Create token
Use in Unifi NetworkGeekoZoid...
My personal scratch pad for technology "stuff".
Friday, March 1, 2024
Sunday, July 16, 2023
How to install Windows 11 without TPM
If you encounter this message below, it's likely you don't have a TPM module.
"This PC can't run Windows 11"
How to go around it:
Step 1: Press Shift - F10
Step 2: Type regedit
Step 3: Navigate to Computer -> HKEY_LOCAL_MACHINE -> System -> Setup
Step 4: Right click on Setup and click New -> Key. Name it "LabConfig". (Note the capitalization)
Step 5: Create new DWORD32. Name it "BypassTPMCheck". Value "1".
Step 6: Create new DWORD32. Name it "BypassSecureBootCheck". Value "1".
Step 7: Close regedit and return to installer.
Saturday, July 15, 2023
How to install Ubiquiti Network Application on Ubunutu 22.04
Get latest instructions from this post. Below are the steps I did:
Step 1: Login as root
sudo -i
apt-get update; apt-get install ca-certificates wget -y
wget https://get.glennr.nl/unifi/install/unifi-7.3.83.sh
bash unifi-7.3.83.sh
Step 5: Open web browser
https://192.168.XX.XX:8443/
Sunday, January 8, 2023
OpenVPN Server on Ubuntu 22.04 LTS Desktop VMWare Virtual Machine
Hardware & Software
- Host: Windows 11
- Host: VMWare Workstation Pro 18
- Guest: Ubuntu 22.04 LTS Desktop
- OpenVPN
VMWare Guest Configuration
- VMWare Network: Bridged
- Install Ubuntu 22.04 LTS Desktop
- In Ubuntu, set Static IP Address (e.g. 192.168.26.60/24)
OpenVPN Server Installation
- Update System
- sudo apt update
- sudo apt upgrade
- Get OpenVPN
- wget https://git.io/vpn -O openvpn-ubuntu-install.sh
- chmod -v +x openvpn-ubuntu-install.sh
- Install OpenVPN
- sudo ./openvpn-ubuntu-install.sh
- Public IP address or hostname: <your DDNS hostname>
- Protocol: UDP
- Port: 1194
- DNS: 1.1.1.1
- Client Name: phone
- Additional options in /etc/openvpn/server/server.conf
- duplicate-cn
- client-to-client
- Manage OpenVPN
- sudo systemctl stop openvpn-server@server.service
- sudo systemctl start openvpn-server@server.service
- sudo systemctl restart openvpn-server@server.service
Configure Router / Gateway
OpenVPN Client Installation
- Transfer /root/phone.ovpn to your device
- Import phone.ovpn in OpenVPN
References:
- https://www.cyberciti.biz/faq/ubuntu-20-04-lts-set-up-openvpn-server-in-5-minutes/
Tuesday, November 16, 2021
Mac Virtual Desktops
Hotkeys:
- ⌘ - ↑ : Show Mission Control
- ⌘ - ← : Go one desktop to left
- ⌘ - → : Go one desktop to right
- ⌘ - 1 : Go to desktop 1
- ⌘ - 2 : Go to desktop 2
- ⌘ - 3 : Go to desktop 3
Monday, September 27, 2021
JDK + Eclipse PDT + Brew + Php + xdebug on Mac
Steps
- Download and Install JDK - https://www.oracle.com/java/technologies/downloads/
- Download and Install Eclipse for PHP developers - https://www.eclipse.org/downloads/packages/
- Install Homebrew - curl -fsSL -o install.sh https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh
- Install php and pecl - brew install php
- Install xdebug - pecl install xdebug
- Edit php.ini - vi /usr/local/etc/php/8.0/php.ini
xdebug.mode=debug
xdebug.client_port=9000
Monday, May 17, 2021
How to install Windows 10 Pro on Intel NUC 11 Enthusiast
From: https://www.tenforums.com/installation-upgrade/148707-can-you-install-windows-10-pro-instead-windows-10-home.html
Q: So is it possible to install windows 10 pro during a clean install of windows when windows 10 home is embedded on the motherboard of a computer?
A: Yes. Create a text file containing:
[Channel]
Retail
Name the file as ei.cfg and place it in the sources folder in the install media. This will make Setup skip looking for a key in the bios and ask you which edition to install.