Posts

Showing posts from 2025

Windows 11 IoT Enterprise 25H2 and FIX

  Windows 11 IoT Enterprise 25H2 (Not LTSC) Build - 26200.6584 (Sep 2025) These ISOs contain below editions, Windows 11 Enterprise Windows 11 IoT Enterprise Windows 11 IoT Enterprise Subscription IoT Enterprise ISO is available only in English language. Language Arch Link English x64 en-us_windows_11_iot_enterprise_version_25h2_x64_dvd_67098cd6.iso info Note for IoT Enterprise (GAC) - Not LTSC When installing Windows IoT Enterprise (GAC): If your system has an  OEM license  in the motherboard (Pro or higher), And the key used in Setup is  OEM , then Windows Setup will apply the OEM key from the motherboard during the final stage. What this means You can install  IoT Enterprise  with its features (including relaxed hardware requirements on Windows 11 24H2, etc.). After installation, the system will show Pro edition, not IoT Enterprise. This happens because IoT Enterprise (GAC) is distributed only with an OEM key. This behavior is normal and cannot be avoided...

Proxmox - For stubborn clusters (quorum challenges)

  Here are concrete command-only options you can use to address the cluster not ready no quorum error, with inline comments to explain intent. These are standard steps from Proxmox cluster management practices. Step-by-step commands (no-URL references included) Check current cluster status and node list Purpose: confirm quorum state and identify node IDs/names. Commands: pvecm status shows total votes, quorum, and node list pvecm nodes lists node IDs and names in the cluster Interpretation: ensure enough online voters exist to reach quorum before attempting join or delnode operations. Verify network connectivity and time synchronization Purpose: ensure all cluster nodes can communicate and have synchronized clocks. Commands: ping -c 3 <other-node-IP> or ping -c 3 <hostname> timedatectl status systemctl status corosync Notes: adjust firewalls to allow cluster ports if needed (1024-65535 ranges, depending on your setup)....

Reset Login and Password for Web on ZimaOS

  To reset a forgotten ZimaOS web login, connect a keyboard and monitor, power on your device, and press Alt + F2 to enter the command line. Log in as root, then run the command passwd-root to set a new password. Another method is to connect the ZimaCube to a monitor and keyboard and run the user reset command rm -fr /var/lib/casaos/db/user.db followed by a restart to initialize ZimaOS and create a new account. [ 1 , 2 , 3 ] Method 1: Using the Command Line Interface (CLI) This method is ideal if you have direct access to your Zima device with a keyboard and monitor. [ 1 ] This video demonstrates how to reset the password using the command line interface: https://www.youtube.com/watch?v=m0Rsu9h7Z44 Connect hardware: Connect a monitor and keyboard to your Zima device. [ 1 ] Enter Setup Mode: Power on the device and press Alt + F2 to access the command line. [ 1 , 2 ] Log in as Root: At the prompt, type root and press Enter. You may not need a password for the first login. [ ...

Proxmox 9 iso location on btrfs

  Proxmox 9 iso location on btrfs    After a default installation of Proxmox 9 with BTRFS, the ISO files are stored in the /var/lib/pve/local-btrfs/template/iso directory. This location is automatically configured by the installer to explicitly use a BTRFS subvolume for storage.   How Proxmox structures storage on BTRFS The Proxmox installer automatically creates a subvolume at /var/lib/pve/local-btrfs . It also modifies the storage configuration file, /etc/pve/storage.cfg , to define a local-btrfs storage entry. This new local-btrfs storage is configured to handle ISOs, VM templates, backups, and disk images.   What to do if you can't see the ISOs If you have copied ISOs to the server but can't see them in the Proxmox web interface, you may have put them in the wrong place. The easiest way to manage ISOs is through the web interface itself, but if you want to use the command line, follow these steps: Log into the Proxmox server via SSH or the console. M...

The error "Failed to update AutoStart - VMware Workstation

  The error "Failed to update AutoStart configuration. Ensure that the vmAutoStart.xml file exists and you have permissions to write this file" typically indicates an issue with file permissions or the existence of the vmAutoStart.xml file, which is crucial for VMware's AutoStart feature. [ 1 , 2 ] Step-by-Step Fix: Verify vmAutoStart.xml Existence and Location: Locate the file: The vmAutoStart.xml file is usually located in C:\ProgramData\VMware\hostd for VMware vSphere Hypervisor (ESXi) or in C:\ProgramData\VMware\VMware Workstation for VMware Workstation. Check for existence: Navigate to the appropriate directory and confirm that vmAutoStart.xml is present. If it's missing, you may need to recreate it or repair your VMware installation. Check and Modify File Permissions: Identify the file: Right-click on vmAutoStart.xml (or the folder containing it, if the issue persists) and select "Properties." Access security settings: Go to the "Security...

Upgrading a VMware Workstation virtual machine (VM) network adapter from 1GbE to 10GbE

Upgrading a VMware Workstation virtual machine (VM) network adapter from 1GbE to 10GbE involves editing the VM's configuration file to change the virtual network adapter type from the default (or ) to . VMXNET3 is a paravirtualized network interface designed for high performance, with support for features like multi-queue and jumbo frames. [ 1 , 2 ] Note: Your virtual machine's network performance will still be limited by the speed of your host machine's physical network interface and other hardware components, such as CPU and storage. This change simply allows the virtual hardware to support higher speeds if the underlying physical hardware is capable. [ 3 ] Step 1: Shut down the virtual machine Before making any changes to a VM's configuration file, you must shut it down completely. Suspending the VM is not enough. Open VMware Workstation. Select the virtual machine you want to modify. Power off the VM by clicking VM &gt; Power &gt; Power Off . Step 2: L...

To enable Remote Desktop using .reg file, create a new text file

  To enable Remote Desktop using .reg file, create a new text file, paste the following lines, and save it with a .reg extension: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server] "fDenyTSConnections"=dword:00000000 "fSingleSessionPerUser"=dword:00000000 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services] "fAllowUnlistedUsers"=dword:00000001 "UserAuthentication"=dword:00000001 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp] "UserAuthentication"=dword:00000001 After saving the file, double-click it to merge the registry settings. This will enable Remote Desktop by setting fDenyTSConnections to 0 and also configuring Windows Firewall to allow Remote Desktop through. You will need to run the file with administrative privileges for it to work correctly. [ 1 , 2 ] AI responses may include mistakes. [1]  https://www.pr...

To change a password in the Linux terminal, the primary command used is passwd.

  To change a password in the Linux terminal, the primary command used is   passwd . To change your own password: Open a terminal. Type  passwd  and press Enter. You will be prompted to enter your current password.  Type it and press Enter.  (Note: The characters you type will not be displayed on the screen for security reasons). You will then be prompted to enter your new password.  Type it and press Enter.   Finally, you will be asked to retype your new password to confirm it.  Type it again and press Enter. To change another user's password (requires root privileges): Open a terminal. Type  sudo passwd <username>  (replace  <username>  with the actual username of the account you want to modify) and press Enter. You will be prompted for your own password (the one associated with your  sudo  privileges).  Type it and press Enter. You will then be prompted to enter the new password for the specif...

Logitech Connection Utility (Before Unify) only be used for only one mouse and one keyboard

https://support.logi.com/hc/en-hk/articles/360025141574-Logitech-Connection-Utility  Logitech Connection Utility (Before Unify) only be used for only one mouse and one keyboard

Creating a script to schedule Ubuntu software upgrades

 Step-by-Step Implementation     Create the Upgrade Script         Open your terminal and create a new file named upgrade_script.sh using your preferred text editor (e.g., nano upgrade_script.sh).         Insert the following bash script content: #!/bin/bash # --- Script to Schedule Ubuntu Software Upgrades --- # This script updates, upgrades, and cleans your Ubuntu system. # It then prompts the user for the frequency of scheduling this script using cron. # Function to perform the upgrade process perform_upgrade() {     echo "Starting Ubuntu software upgrade..."     # Update package lists     sudo apt update -y     # Upgrade packages (installs newer versions)     sudo apt upgrade -y     # Remove unnecessary packages     sudo apt autoremove -y     # Clean up downloaded package archives     sudo apt clean -y     echo "Ubuntu software up...

Cockpit

Cockpit offers a web-based interface for monitoring and managing your system remotely. To install Cockpit: Install Cockpit:  bash  sudo apt install cockpit    Enable and start Cockpit:  bash  sudo systemctl enable --now cockpit.socket    Once installed and started, you can access it via a web browser at https://<your-server-ip>:9090.  Using these packages gives you flexibility in how you manage your Ubuntu system remotely—whether you prefer secure command-line access via SSH or a more graphical interface with Cockpit.

Get IP on Proxmox with Ubuntu

  sudo apt update && sudo apt install -y qemu-guest-agent sudo systemctl start qemu-guest-agent sudo systemctl enable qemu-guest-agents sudo systemctl status qemu-guest-agent   

Windows 11 Ent. IoT KMS Key

 Windows 11 Ent. IoT KMS Key  KBN8V-HFGQ4-MGXVD-347P6-PDQGT        

how to install open vm tools ubuntu

  sudo apt install open-vm-tools open-vm-tools-desktop To install Open VM Tools on Ubuntu 22.04, you can use the apt package manager, which is the standard way to install software on Ubuntu.   Here's how you can do it: 1. Open a terminal: You can open a terminal by searching for "Terminal" in the application launcher or by using the keyboard shortcut Ctrl+Alt+T .   2. Update the package list: It's always a good practice to update the package list before installing new software. This ensures you're getting the latest versions and dependencies. Run the following command: bash sudo apt update Use code with caution. This will update the list of available packages.   3. Install Open VM Tools: For Ubuntu Desktop: If you're using a graphical desktop environment, install the open-vm-tools-desktop package, which includes features like improved graphics, mouse performance, clipboard sharing, and automatic screen resizing. bash sudo apt install open-vm-tools-deskto...