
Welcome to the New and Updated GenericTechSupport Channel Content Library
THIS SITE IS UNDER CONSTRUCTION!








Welcome to the GTS Linux Video Archive
OpenVAS - 3/14/26
Auto Updates on Linux - 3/6/26
Create a Password Policy - 2/13/26
Troubleshoot Swap - 1/17/26
Troubleshoot NVidia - 1/10/26
Build your own OpenAI - 10/11/25
Citadel Mail Server - 9/20/25
Wine on Mint - 5/23/25
SMB Configuration - 5/1/25
How To run MINT as a Daily Driver Series
Linux With A Windows Wrapper
Linux Office Options
Linux Management
A place to Find Some Automated WINE Help
#!/bin/bash
# Install updates
sudo apt update
sudo apt upgrade -y
# Install Driver Repos
sudo add-apt-repository ppa:wine/wine-builds
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo add-apt-repository ppa:kisak/kisak-mesa
sudo add-apt-repository ppa:lutris-team/lutris
# Install Drivers
sudo apt update
sudo apt upgrade -y
sudo ubuntu-drivers autoinstall
# Install WINE Packages
sudo apt update
sudo dpkg --add-architecture i386
sudo apt install wine64
sudo apt install wine32
sudo apt install winbind
sudo apt install --install-recommends winehq-staging
sudo apt install --install-recommends winehq-staging winetricks
sudo apt install winetricks
sudo apt update
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key
echo "deb https://dl.winehq.org/wine-builds/ubuntu/ focal main" | sudo tee /etc/apt/sources.list.d/wine.list
sudo apt update
winetricks corefonts vcrun2015
winetricks dlls vcrun2013
winetricks dlls vcrun2015
sudo apt install lutris
# Install Lutris Upgrade
sudo apt update
wget -nc https://github.com/lutris/lutris/releases/download/v0.5.18/lutris0.5.18all.deb
sudo chmod +x ./lutris0.5.18all.deb
sudo apt install ./lutris0.5.18all.deb
# need a game to test with? (Unquote the next line)
# wget -nc https://empireearth.eu/download/neoee
# Install FlatPack Bottles Containerization
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
sudo flatpak install flathub com.usebottles.bottles
sudo apt install samba -y
flatpak install flathub com.github.tchx84.Flatseal
sudo apt update
# Force X86 Emulation:
export WINEARCH=win32
homedir=getent passwd $USER | cut -d: -f6
export WINEPREFIX="$homedir/.wineEE2"
export WINE="/opt/wine-staging/bin/wine"
WINEPREFIX="$homedir/.wineEE2" WINEARCH=win32 WINE="/opt/wine-staging/bin/wine" /opt/wine-staging/bin/wine wineboot winecfg
# Setup DirectX Support
homedir=getent passwd $USER | cut -d: -f6
WINEPREFIX="$homedir/.wineEE2" WINEARCH=win32 WINE="/opt/wine-staging/bin/wine" winetricks d3dx943
WINEPREFIX="$homedir/.wineEE2" WINEARCH=win32 WINE="/opt/wine-staging/bin/wine" winetricks d3dcompiler43
WINEPREFIX="$homedir/.wineEE2" WINEARCH=win32 WINE="/opt/wine-staging/bin/wine" winetricks corefonts
sudo apt install libgamemode0:i386 libgamemodeauto0:i386
sudo apt-get --reinstall install ttf-mscorefonts-installer
sudo apt update
sudo apt upgrade -y
sudo reboot now
#
Log back into it, open LUTRIS
On Lutris Launch, the Lutris Application will automatically update and download the Proton-GE Package configuration. This is a clone of the Proton package found in Steam.You will need to click on Menu and select Preferences
Choose Updates
Install (download) the Wine-Ge-8-26 Package
Check for Updates
Download Missing Media
Click on Runners
Click on and install DosBox
Click on and install WINE
Click Sources (DO NOT CLICK STEAM!!!) If you need steam install it separately.
Close Lutris (Save any changes)
Open Terminal again and enter in
sudo apt update
sudo apt upgrade -y
sudo reboot nowNOTE: Old Key error is known, it's due to the need for i386 legacy libraries to run Windows XP Games
Log back in / Open Terminal again and enter in
Click on Menu
Click on Preferences
Click on Appearance (Show Update Date)
Click on Tab for Runners
Click Carat for Proton-GEInstall Ge-Proton-10-3Wait till it finishes
Click on Carat to minimize Proton-GE
Click on Wine GE Carat
Install WINE-GE-PROTON-8-26 (NOTE: LOL is for a specific Game, See Video for details) Click on Carat for Wine GE to minimize
Click Carat for Caffe
Click Install option for Caffe 9.7
Make sure that the latest Soda version is installed.Click on DLL Components Tab
Make sure the latest DXVK is installed
Close (Save) Bottles
Reboot / Log in / Launch Terminal One last time
sudo apt update
sudo apt upgrade -y
sudo reboot now
How to Build a Free MS Exchange Alternative Mail Server on Linux Ubuntu Server
1. Install the Ubuntu version you downloaded2. Set your server to a static IP address, or use your firewall to set the DHCP reservation to a static reservation.sudo nano /etc/netplan/01-netcfg.yamlConfigure your IP address details. Save the Configuration File.
To reload it, with the new IP address, type in sudo netplan apply3. run your system updates
sudo apt update
sudo apt upgrade -y4. Install your net-tools
sudo apt install net-tools5. reboot
sudo reboot now6. log back into your system.
7. Enter in sudo s
sudo -s8. run your installation for citadel (under your sudo -s)curl https://easyinstall.citadel.org/install | bash9. Follow the video for configuration help.
10. Open a web browser on a desktop/laptop on the same network.
https://yourIPAddress
11. Log into the Citadel GUI
NOTE: Remember the username is case sensitive.12. go to Administration, and edit global settings to configure.
Build Your Own Private ChatBot
NOTE: THIS REQUIRES UBUNTU SERVER
Install All updates:
sudo apt update && sudo apt upgrade -y && sudo reboot now
Install Network Toolssudo apt install net-tools
Configure your swap file#!/usr/bin/env bash
# ============================================
# The GenericTechSupport OLLAMA Low-Resources RAM Script
# ============================================
sudo apt update
sudo apt install net-tools
sudo swapoff -a
sudo fallocate -l 32G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo 10 | sudo tee /proc/sys/vm/swappiness
echo '/swap none swap sw 0 0' | tee -a /etc/fstab
echo 'vm.swappiness=10' | tee -a /etc/sysctl.conf
echo "vm.watermarkscalefactor=200" | sudo tee -a /etc/sysctl.conf
echo "vm.dirty_ratio=30" | sudo tee -a /etc/sysctl.conf
sudo sysctl -p
#
Install your Video Card Drivers:
# AMD or Intel
sudo add-apt-repository ppa:kisak/kisak-mesa
# NVIDIA
sudo add-apt-repository ppa:graphics-drivers/ppa
# Update your Repository/Cache
sudo apt update
# Install your Graphics Card Drivers
sudo ubuntu-drivers autoinstall
# Reboot your system on completion
sudo reboot now
Install the Ollama Ai Package Manager:
#!/usr/bin/env bash
# ============================================
# The GenericTechSupport OLLAMA Install Script
# ============================================
sudo curl -fsSL https://ollama.com/install.sh | sh
#
Install the WebGUI for Access to the Ollama Package Manager:#!/usr/bin/env bash
set -e# ============================================
# The GenericTechSupport Open WebUI Install Script for Ubuntu Server
# (Remote access enabled, custom port 8143)
# ============================================# 1️⃣ Update system and install prerequisites (requires sudo)
echo "[] Installing system prerequisites..."
sudo apt update
sudo apt install -y python3 python3-venv python3-pip git curl ufw# 2️⃣ Create installation directory in home
INSTALLDIR="$HOME/open-webui"
mkdir -p "$INSTALLDIR"
cd "$INSTALL_DIR"# 3️⃣ Create Python virtual environment (user only!)
echo "[] Creating Python virtual environment..."
python3 -m venv venv# 4️⃣ Activate the venv
source venv/bin/activate# 5️⃣ Upgrade pip inside the venv
echo "[] Upgrading pip inside venv..."
pip install --upgrade pip# 6️⃣ Install Open WebUI inside the venv
echo "[] Installing Open WebUI..."
pip install open-webui# 7️⃣ Configure UFW firewall
echo "[] Configuring firewall..."
sudo ufw allow 8143/tcp # Open WebUI port
sudo ufw allow 22/tcp # SSH port
echo y | sudo ufw enable
sudo ufw reload# 8️⃣ Create user systemd service for Open WebUI
SYSTEMDDIR="$HOME/.config/systemd/user"
mkdir -p "$SYSTEMDDIR"
SERVICEFILE="$SYSTEMDDIR/openwebui.service"echo "[] Creating systemd user service at $SERVICEFILE..."
cat > "$SERVICEFILE" <<EOF
[Unit]
Description=Open WebUI (Ollama Frontend)
After=network.target[Service]
WorkingDirectory=$INSTALLDIR
ExecStart=$INSTALLDIR/venv/bin/open-webui serve --host 0.0.0.0 --port 8143
Restart=always
Environment="PATH=$INSTALLDIR/venv/bin"[Install]
WantedBy=default.target
EOF# 9️⃣ Reload user systemd and enable/start service
echo "[] Reloading user systemd daemon..."
systemctl --user daemon-reload
echo "[] Enabling and starting Open WebUI service..."
systemctl --user enable --now openwebui.service# 10️⃣ Done
SERVERIP=$(hostname -I | awk '{print $1}')
echo
echo ""
echo " ✅ Open WebUI installation complete!"
echo " Web GUI is running and accessible from your LAN:"
echo " http://$SERVER_IP:8143"
echo " SSH access is enabled on port 22"
echo " To check service status: systemctl --user status openwebui"
echo " To stop the service: systemctl --user stop openwebui"
echo " To start it manually: systemctl --user start openwebui"
echo ""
Here is the list of LLM's and a Rough System Requirement to run them, choosing a lower requirement package on faster hardware will always work to your benefit.NOTE: Anything less than listed can be used as a proof of concept, but will not be very usable beyond the proof of concept stage.Slower Systems: 10th/11th Gen:
32GB DDR4, 4GB NVIDIA, GEN4 SSD 1TB.ollama pull openchat:7b
ollama pull gemma3:4b
ollama pull qwen3:latest
ollama pull phi4-mini-reasoning:latest
ollama pull deepcoder:1.5b
ollama pull exaone-deep:2.4b
ollama pull exaone-deep:latestSlower Systems: 11th/12th Gen:
48GB DDR4, 4GB NVIDIA, GEN4 SSD 1TB (Text and Image)ollama pull llava:7b
ollama pull granite3.2-vision:latestFast Home Desktop (Think Gaming Machines)
13th/Ultra Gen:
64GB DDR5, 8GB NVIDIA, GEN5 SSD 2TBollama pull ccebelenski/cwm-q6_k:latest
ollama pull gemma3:12b
ollama pull comethrusws/sage-reasoning:14b
ollama pull gpt-oss:20b
ollama pull magistral:latest
ollama pull qwen3-coder:30b
ollama pull gemma3n:latest
ollama pull deepcoder:14b
ollama pull exaone-deep:latest
ollama pull exaone-deep:32bUTRA FAST SERVERS:
Dual Socket Epic
1TB DDR5 ECC, 72GB+ NVIDIA, GEN5 SERVER Grade SSD 10TB
(WARNING!!!) THESE WILL NEVER RUN ON YOUR DESKTOP!
ollama pull gpt-oss:120b
ollama pull llama4:latest
ollama pull qwen3:235b
ollama pull llama3.1:405b
ollama pull deepseek-v3.1:latest
ollama pull qwen3:235b
ollama pull qwen3-coder:480b
ollama pull llama4:128x17b
To install the LLM Package:Command:
ollama pull package name as shown aboveFor instance:
ollama pull openchat:7b
Open a Web browser on a different machine on your network:Enter in:
http://YourServerIP:8143Create A Local Account:
You can use any email address,
you can also use any password, or name. This is a local system.
The Server does not have SMTP, so whatever you make the email address is your username, but it doesn't matter as long as it is in an email format.
WARNING:
In some cases the WebGui fails to start on system startup.
You can manually fix this with:
systemctl --user daemon-reload && systemctl --user enable --now openwebui.service
Troubleshooting NVIDIA Driver issues
Purge old NVIDIA Drivers
sudo apt remove --purge 'nvidia-*'sudo apt autoremove --purge
sudo apt autoclean
Confirm the drivers are purgeddpkg -l | grep -i nvidia
Confirm Card Details:lspci -k | grep -EA3 "VGA|3D|Display'
Add the NVIDIA Driver Repository:sudo add-apt-repository ppa:graphics-drivers/ppa
OPTION 1:
Use the Generic Drivers:sudo ubuntu-drivers autoinstall
OPTION 2
Use the Open Source Driver:sudo apt install nvidia-driver-580-open
OPTION 3
Use the Official NVIDIA Driver:sudo apt install nvidia-driver-535
Confirm your NVIDIA Driver Software is installed:sudo apt install nvidia-prime
sudo apt install nvidia-settings
Select your Prime Video Card: (Default Video card for Laptops)sudo prime-select nvidia
Set your Video Card cooling to manual: (NOTE: REQUIRED ON MAC)sudo nvidia-xconfig
sudo nvidia-xconfig --cool-bits=4
Disable EPA Limit on Cooling, to automatic cooling (Increases gaming performance)sudo nvidia-settings -a "[gpu:0]/GPUFanControlState=1"
SPECIAL NOTE:Open the settings console in the GUI and set your minimal fan speed to 63% to idle the fans, this will reduce heat by 10-15c and increase performance. Disable all the power save functions, remove the minimal settings, set card to performance. (see video for additional details)
Trouble shooting "Swappiness"
Display Memory Usage Statistics
free -h -m -t
Display All Memory Info
cat /proc/meminfo
Display Usable Memory Info from Cat (total memory and available memory)grep -E 'memtotal|memavailable' /proc/meminfo
Display Usable Memory Info from Cat (total memory and available memory, include slab, which is the buffer memory, what your swap uses)grep -E 'memtotal|memavailable|slab|shmem' /proc/meminfo
Troubleshoot memory usage with vmstat 2 52 being the number of times to run the check, over a course of 5 seconds. You can adjust this...vmstat 2 5
Display your RAM statistics for installed memorysudo lshw -class memory
See Physical memory errorssudo dmidecode -t memory
Bring up a terminal session similar to memory on Windows Task Manager.sudo apt install htop && htop
Creating a Password Policy on Debian Based Linux
Set the minimum length to 14 characters
sudo sed -i 's/^#minlen.*/minlen = 14/' /etc/pam.d/common-password
Set the minimum amount of characters you need to change in the password when it expires.
sudo sed -i 's/^#minclass.*/minclass = 4/' /etc/pam.d/common-password
Set the repeatable characters, this is for things like FFFF in a password, or Changing the password where a letter can only be in a single place up to 3 changes.sudo sed -i 's/^#maxrepeat.*/maxrepeat = 3/' /etc/pam.d/common-password
Set your current users password to expire in 180 days
sudo change --maxdays 180 $(whoami)
Notify you 14 days before the password expires that you need to change it.sudo change -W 14 $(whoami)
Enable Automatic Updates on Debian Based Linux
Commands in this video:
install the Automatic Update Packagesudo apt install unattended-upgrades -yConfigure the Package at the Kernel (Low) level.sudo dpkg-reconfigure --priority=low unattended-upgradesOptional:
In my experience using automatic updates works great on linux, but you may run into driver related issues. To try to circumvent any issues, pause the updates on the video card, printer drivers, or other configurations that may have been a pain to setup.Lookup the NVIDIA version installed.dpkg -l | grep nvidia-driverNow let's hold that driver version so updates don't apply.sudo apt-mark hold nvidia-driver-550NOT SHOWN IN VIDEO:
In some scenarios where there may be associated or pre-req's needed to run applications and you want to pause everything you can use a wild card to pause the configuration.For instance in NVIDIA..sudo apt-mark hold nvidia-driver-*Setting a wild card will pause all packages, and not just the driver.
Welcome to the OpenVAS WIKI
Installing OpenVAS
sudo apt update
sudo apt install open-vm-tools -y
sudo apt install open-vm-tools-desktop -y
sudo apt install openvas
sudo gvm-setup
sudo gvm-check-setup
sudo gvm-stop
sudo gvm-start
Fixing Sync Issues with CVE's
sudo gvm-stop
sudo greenbone-feed-sync
sudo greenbone-nvt-sync
sudo greenbone-scapdata-sync
sudo greenbone-certdata-sync
sudo runuser --user _gvm greenbone-nvt-sync
sudo reboot now
Sync now works and says "current" but the data doesn't populateNOTE: This sync can take 5+ hours to complete
Check the log file to see if the sync is still waiting on data by entering in the following command
sudo gvm-start tail -f /var/log/gvm/gvmd.log
If you see this error:
osp _ scanner _ feed _ version: No feed version available yet.
OSPd OpenVAS is still startingMeaning: Feed has not yet finished processing database information (Wait longer)
If you have waited Days and still nothing, you will need to confirm you are not blocking the feed with your firewall. The output varies as to what location it comes from, in my setup it was in Denmark, but it can come from a variety of places. Run the final set of commands to force replication if you find it was being blocked.
sudo gvm-stop
sudo gvmd --rebuild-gvmd-data=all
sudo Greenbone-Feed-Sync
sudo greenbone-scapdata-sync --refresh
sudo greenbone-scapdata-sync --refresh-private
sudo reboot now
LINUX TIPS
Install Snap:
sudo apt install snapd
--------------------------------------------
Search a snap:
sudo snap search snap name
--------------------------------------------
Install a snap:
sudo snap install package Name
--------------------------------------------
Remove a snap:
sudo snap remove Package Name
--------------------------------------------
Install Flatpak:
sudo apt install flatpak
--------------------------------------------
Search for a flatpak:
sudo flatpak search flatpak name
--------------------------------------------
install a flatpak:
sudo flatpak install flatpak name
--------------------------------------------
Remove a flatpak:
sudo flatpak remove flatpak Name
--------------------------------------------
Install Discord:
sudo apt install discord
--------------------------------------------
Install VLC:
sudo apt install vlc
--------------------------------------------
Install slack:
sudo apt install slack
--------------------------------------------
Install Teams for Linux:
sudo snap install teams-for-linux
--------------------------------------------
Install VmWare Tools:
(GUI)
sudo apt install open-vm-tools-desktop
(CLI)
sudo apt install open-vm-tools
--------------------------------------------
Install Evolution Mail (O365)
sudo apt install evolution
sudo apt install evolution-ews
--------------------------------------------
Install Updates:
sudo apt update -y
sudo apt upgrade -y
--------------------------------------------
Install Apt Packages:
sudo apt install package Name
--------------------------------------------
Search Package names with Apt:
sudo apt search package type
(for instance: sudo apt search google)
--------------------------------------------
remove an apt:
sudo apt remove package name
--------------------------------------------
(NOTE: apt replaces apt-get, if you are on older builds you may need to use apt-get)
Install XRDP on MINT, ZORIN, UBUNTU, KALI, etcsudo apt install xrdp
sudo systemctl enable xrdp
sudo ufw allow 3389
sudo reboot now
INCREASE YOUR SWAP FILE (NON-ENCRYPTED HOME)Make Page file 8GB (NOTE, you can make this 4GB, or 16GB, or modify whatever number you want of GB)
---------------------------------------------
sudo swapoff -a
---------------------------------------------
sudo fallocate -l 8G /swapfile
---------------------------------------------
sudo chmod 600 /swapfile
---------------------------------------------
sudo mkswap /swapfile
---------------------------------------------
sudo swapon /swapfile
---------------------------------------------
sudo swapon --show
---------------------------------------------
Install STEAM on Linuxsudo apt-get update
sudo apt-get upgrade -y
sudo apt-get dist-upgrade -y
sudo do-release-upgrade -y
sudo apt-get install steam -y
Allow RDP into MINTsudo apt update
sudo apt upgrade -y
sudo apt install xrdp
sudo systemctl enable xrdp
sudo ufw allow 3389
sudo reboot bow
Install Kodisudo apt install software-properties-commonsudo sh -c "echo 'deb http://ppa.launchpad.net/team-xbmc/ppa/ubuntu trusty main' >> /etc/apt/sources.list.d/team-xbmc-xbmc-stable-trusty.list"sudo apt-key adv --keyserver http://keyserver.ubuntu.com --recv-keys 189701DA570C56B9488EF60A6D975C4791E7EE5Esudo apt install kodisudo apt update
Install JellyFinhttps://repo.jellyfin.org/install-debuntu.sh | sudo bash
Plex (Requires SNAP)How to Install Snap:
sudo mv /etc/apt/preferences.d/nosnap.pref ~/Documents/nosnap.backupsudo apt install snapdsudo reboot nowInstall Plex Desktopsudo apt install plex-desktop
How to Install MadSonic (Broken Package)sudo apt install openjdk-8-jre
Download the Deb Package from the link above
cd Downloads
ls
sudo dpkg -i (Name of the madsonic package).debURL: http://localhost:4040
How to Install EMBYDownload the Deb Package from the link above
cd Downloads
ls
sudo dpkg -i (Name of the emby Package).deb
Open a browser
http://localhost:8096
How to Install UMSsudo apt-get install openjdk-8-jre
Download the gz file with the above link
cd to the Downloads locations
sudo tar -xvf ums-SOFTWARENAME.tar.gz -C /opt
cd to the opt folder
sudo mv /opt/ums-SOFTWARENAME /opt/ums
sudo ln -s /opt/ums /opt/ums
cd /opt/ums
ls
sudo ./UMS.sh
Configure by prompts when it pops up
http://localhost:/8080
How to Install STREMIOflatpak install flathub com.stremio.Stremio
flatpak run com.stremio.Stremio
How to install SNAP on Linux MINTsudo apt update
sudo mv /etc/apt/preferences.d/nosnap.pref ~/Documents/nosnap.backup
sudo apt update
sudo apt install snapd
sudo apt update
sudo snap install snap-store
sudo reboot now
WINDOWS TIPS
WMI Server Cheat Sheet
Windows Desktop OS WMIAny Windows Desktop OS – Version 1
select * from Win32OperatingSystem WHERE ProductType = "1"
Any Windows Desktop OS – Version 2 (better for Win7 sometimes)
select * from Win32OperatingSystem WHERE (ProductType <> "2") AND (ProductType <> "3")
Any Windows Desktop OS – 32-bit
select * from Win32OperatingSystem WHERE ProductType = "1" AND NOT OSArchitecture = "64-bit"
Any Windows Desktop OS – 64-bit
select * from Win32OperatingSystem WHERE ProductType = "1" AND OSArchitecture = "64-bit"
Windows Desktop XP Edition WMIWindows XP
select * from Win32OperatingSystem WHERE (Version like "5.1%" or Version like "5.2%") AND ProductType="1"
Windows XP – 32-bit
select * from Win32OperatingSystem WHERE (Version like "5.1%" or Version like "5.2%") AND ProductType="1" AND NOT OSArchitecture = "64-bit"
Windows XP – 64-bit (Excluses IA64 Chip)
select * from Win32_OperatingSystem WHERE (Version like "5.1%" or Version like "5.2%") AND ProductType="1" AND OSArchitecture = "64-bit"
Windows Desktop Vista Edition WMIWindows Vista
select * from Win32OperatingSystem WHERE Version like "6.0%" AND ProductType="1"
Windows Vista – 32-bit
select * from Win32OperatingSystem WHERE Version like "6.0%" AND ProductType="1" AND NOT OSArchitecture = "64-bit"
Windows Vista – 64-bit
select * from Win32_OperatingSystem WHERE Version like "6.0%" AND ProductType="1" AND OSArchitecture = "64-bit"
Windows Desktop 7 Edition WMIWindows 7
select * from Win32OperatingSystem WHERE Version like "6.1%" AND ProductType="1"
Windows 7 – 32-bit
select * from Win32OperatingSystem WHERE Version like "6.1%" AND ProductType="1" AND NOT OSArchitecture = "64-bit"
Windows 7 – 64-bit
select * from Win32_OperatingSystem WHERE Version like "6.1%" AND ProductType="1" AND OSArchitecture = "64-bit"
Windows Desktop 8 Edition WMIWindows 8
select * from Win32OperatingSystem WHERE Version like "6.2%" AND ProductType="1"
Windows 8 – 32-bit
select * from Win32OperatingSystem WHERE Version like "6.2%" AND ProductType="1" AND NOT OSArchitecture = "64-bit"
Windows 8 – 64-bit
select * from Win32_OperatingSystem WHERE Version like "6.2%" AND ProductType="1" AND OSArchitecture = "64-bit"
Windows Desktop 8.1 Edition WMIWindows 8.1
select * from Win32OperatingSystem WHERE Version like "6.3%" AND ProductType="1"
Windows 8.1 – 32-bit
select * from Win32OperatingSystem WHERE Version like "6.3%" AND ProductType="1" AND NOT OSArchitecture = "64-bit"
Windows 8.1 – 64-bit
select * from Win32_OperatingSystem WHERE Version like "6.3%" AND ProductType="1" AND OSArchitecture = "64-bit"
Windows Desktop 10 Edition WMIWindows 10
select * from Win32OperatingSystem WHERE Version like "10.0.1%" AND ProductType="1"
Windows 10 – 32-bit
select * from Win32OperatingSystem WHERE Version like "10.0.1%" AND ProductType="1" AND NOT OSArchitecture = "64-bit"
Windows 10 – 64-bit
select * from Win32_OperatingSystem WHERE Version like "10.0.1%" AND ProductType="1" AND OSArchitecture = "64-bit"
Windows Desktop 11 Edition WMIWindows 11
select * from Win32_OperatingSystem WHERE Version like "10.0.2%" AND ProductType="1"
Windows Server OS WMIAny Windows Server OS
select * from Win32OperatingSystem where (ProductType = "2") OR (ProductType = "3")
Any Windows Server OS – 32-bit
select * from Win32OperatingSystem where (ProductType = "2") OR (ProductType = "3") AND NOT OSArchitecture = "64-bit"
Any Windows Server OS – 64-bit
select * from Win32OperatingSystem where (ProductType = "2") OR (ProductType = "3") AND OSArchitecture = "64-bit"
Any Windows Server – Domain Controller
select * from Win32OperatingSystem where (ProductType = "2")
Any Windows Server – Domain Controller – 32-bit
select * from Win32OperatingSystem where (ProductType = "2") AND NOT OSArchitecture = "64-bit"
Any Windows Server – Domain Controller – 64-bit
select * from Win32OperatingSystem where (ProductType = "2") AND OSArchitecture = "64-bit"
Any Windows Server – Non-Domain Controller
select * from Win32OperatingSystem where (ProductType = "3")
Any Windows Server – Non- Domain Controller – 32-bit
select * from Win32OperatingSystem where (ProductType = "3") AND NOT OSArchitecture = "64-bit"
Any Windows Server – Non-Domain Controller – 64-bit
select * from Win32_OperatingSystem where (ProductType = "3") AND OSArchitecture = "64-bit"
Windows Server 2003 WMIWindows Server 2003 – DC
select * from Win32OperatingSystem WHERE Version like "5.2%" AND ProductType="2"
Windows Server 2003 – non-DC
select * from Win32OperatingSystem WHERE Version like "5.2%" AND ProductType="3"
Windows Server 2003 – 32-bit – DC
select * from Win32OperatingSystem WHERE Version like "5.2%" AND ProductType="2" AND NOT OSArchitecture = "64-bit"
Windows Server 2003 – 32-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "5.2%" AND ProductType="3" AND NOT OSArchitecture = "64-bit"
Windows Server 2003 – 64-bit – DC
select * from Win32OperatingSystem WHERE Version like "5.2%" AND ProductType="2" AND OSArchitecture = "64-bit"
Windows Server 2003 – 64-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "5.2%" AND ProductType="3" AND OSArchitecture = "64-bit"
Windows Server 2003R2 WMIWindows Server 2003 R2 – DC
select * from Win32OperatingSystem WHERE Version like "5.2.3%" AND ProductType="2"
Windows Server 2003 R2 – non-DC
select * from Win32OperatingSystem WHERE Version like "5.2.3%" AND ProductType="3"
Windows Server 2003 R2 – 32-bit – DC
select * from Win32OperatingSystem WHERE Version like "5.2.3%" AND ProductType="2" AND NOT OSArchitecture = "64-bit"
Windows Server 2003 R2 – 32-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "5.2.3%" AND ProductType="3" AND NOT OSArchitecture = "64-bit"
Windows Server 2003 R2 – 64-bit – DC
select * from Win32OperatingSystem WHERE Version like "5.2.3%" AND ProductType="2" AND OSArchitecture = "64-bit"
Windows Server 2003 R2 – 64-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "5.2.3%" AND ProductType="3" AND OSArchitecture = "64-bit"
Windows Server 2008 WMIWindows Server 2008 – DC
select * from Win32OperatingSystem WHERE Version like "6.0%" AND ProductType="2"
Windows Server 2008 – non-DC
select * from Win32OperatingSystem WHERE Version like "6.0%" AND ProductType="3"
Windows Server 2008 – 32-bit – DC
select * from Win32OperatingSystem WHERE Version like "6.0%" AND ProductType="2" AND NOT OSArchitecture = "64-bit"
Windows Server 2008 – 32-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "6.0%" AND ProductType="3" AND NOT OSArchitecture = "64-bit"
Windows Server 2008 – 64-bit – DC
select * from Win32OperatingSystem WHERE Version like "6.0%" AND ProductType="2" AND OSArchitecture = "64-bit"
Windows Server 2008 – 64-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "6.0%" AND ProductType="3" AND OSArchitecture = "64-bit"
Windows Server 2008R2 WMIWindows Server 2008 R2 – 64-bit – DC
select * from Win32OperatingSystem WHERE Version like "6.1%" AND ProductType="2"
Windows Server 2008 R2 – 64-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "6.1%" AND ProductType="3"
Windows Server 2012 WMIWindows Server 2012 – 64-bit – DC
select * from Win32OperatingSystem WHERE Version like "6.2%" AND ProductType="2"
Windows Server 2012 – 64-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "6.2%" AND ProductType="3"
Windows Server 2012R2 WMIWindows Server 2012 R2 – 64-bit – DC
select * from Win32OperatingSystem WHERE Version like "6.3%" AND ProductType="2"
Windows Server 2012 R2 – 64-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "6.3%" AND ProductType="3"
Windows Server 2016 WMIWindows Server 2016 – 64-bit – DC
select * from Win32OperatingSystem WHERE Version like "10.0.14%" AND ProductType="2"
Windows Server 2016 – 64-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "10.0.14%" AND ProductType="3"
Windows Server 2019 WMIWindows Server 2019 – 64-bit – DC
select * from Win32OperatingSystem WHERE Version like "10.0.17%" AND ProductType="2"
Windows Server 2019 – 64-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "10.0.17%" AND ProductType="3"
Windows Server 2022 WMIWindows Server 2022 – 64-bit – DC
select * from Win32OperatingSystem WHERE Version like "10.0.20%" AND ProductType="2"
Windows Server 2022 – 64-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "10.0.20%" AND ProductType="3"
Windows Server 2025 WMIWindows Server 2025 – 64-bit – DC
select * from Win32OperatingSystem WHERE Version like "10.0.26%" AND ProductType="2"
Windows Server 2025 – 64-bit – non-DC
select * from Win32OperatingSystem WHERE Version like "10.0.26%" AND ProductType="3"
List of Gaming Gear, Tips, And Software
List of Linux Emulators
XBOX: sudo apt install xemu
PS3: sudo snap install rpcs3-emu
Genesis: sudo apt install higan -y
Wii: sudo snap install dolphin-emulator --edge
SNES: sudo apt install zsnes
N64: sudo apt install mupen64plus-qt
PS2: sudo apt install pcsx2
Gameboy Advanced: sudo snap install visualboyadvance-m --beta
MAME: sudo apt install software-properties-common apt-transport-https -ysudo apt install retroarch -y
Controller Configuration Tools
Wii-MOTE: sudo apt install libcwiid1 lswm wmgui wminputsudo echo "uinput" shift period shift period /etc/modulessudo modprobe uinput
Welcome to the GTS Windows Video Archive
Direct Download SOFTWARE LINKS
LINUX ISO
LINUX SERVER ISO
LINUX DEBS
LINUX UNIVERSAL APPLICATION MANAGERS
WINDOWS ISO
WINDOWS SERVER ISO
WINDOWS BOOTLEGS ISO
WINDOWS FREEWARE
WINDOWS THEME-WARE