Win11 create local user
Create a new local user without ms account login in Windows 11: In cmd: start ms-cxh:localonly
Consistency
Create a new local user without ms account login in Windows 11: In cmd: start ms-cxh:localonly
«Select certificate» pop-up problem in OpenVPN Connect client, how to disable this message? When i trying to connect to VPN server i got the next message: Select Certificate This profile doesn’t include a client certificate. Continue connecting without a certificate … Read More »
Go to https://one.dash.cloudflare.com/networks/tunnels Networks -> Tunnels -> Create a tunnel Select your tunnel type: Cloudflared Enter the name of your tunnel. Done. Choose your environment and architecture. Then you will get a generated command to install your cloudflared service on … Read More »
How to install debian Installation of UserLAnd and then Linux distribution 1. Need to download and install application UserLAnd from https://userland.tech/ or from https://github.com/CypherpunkArmory/UserLAnd or from Google Play Market 2. Select OS for install it to your Android device. You … Read More »
After installing VMWARE v17.5.x and starting the virtual machine, i received next error: “The processor does not support XSAVE. This virtual machine cannot be turned on.»
To upload a large files to google drive from linux console you can use rclone https://rclone.org/drive/ after install you need config gdrive: >rclone config for fix problem with google blocking app you need first start rclone on your local pc … Read More »
Ошибка частая на серверах vultr (RHL centos/almalinux/rocky linux) Adding ISPsystem gpg key… Some errors with repository Как оказалось, все банально, неободимо было отключить файервол, который почему-то не пускал в репозитории ispmanager’а
iptables List all running rules To view the current firewall rules: iptables -L -v Disable and flush iptables To disable the firewall temporarily, flush all rules. sudo iptables -P INPUT ACCEPT sudo iptables -P OUTPUT ACCEPT sudo iptables -P FORWARD … Read More »
Many virtualization applications depend on hardware virtualization extensions that are available on most modern processors. It includes Intel VT-x and AMD-V. Only one software component can use this hardware at a time. The hardware cannot be shared between virtualization applications.
gdown.sh — google drive download large files from linux bash #!/bin/bash # usage: gdown fileid /path/to/filename fileid=$1 filename=$2 curl -sLc /tmp/gdcookie "https://drive.google.com/uc?export=download&id=${fileid}" > /dev/null curl -sLb /tmp/gdcookie "https://drive.google.com/uc?export=download&confirm=`awk ‘/download/ {print $NF}’ /tmp/gdcookie`&id=${fileid}" —create-dirs -o ${filename} rm -f /tmp/gdcookie