Ir al contenido principal

Entradas

  Download / How to use it? ​ Method 1 - PowerShell (Windows 8 and later) ❤️ Method 2 - Traditional (Windows 7 and later) Open PowerShell (Not CMD). To do that, right-click on the Windows start menu and select PowerShell or Terminal. Copy and paste the code below and press enter irm https://get.activated.win | iex Alternatively, you can use the following (It will be deprecated in the future.) irm https://massgrave.dev/get | iex You will see the activation options. Choose [1] HWID for Windows activation. Choose [2] Ohook for Office activation. That's all Not working ❓ ​ If you are  unable to launch MAS  using the PowerShell method, please refer to  Method 2  listed above. If MAS is launched and the script shows any errors, check for any troubleshooting steps mentioned in blue color and try to follow those. If you have any issues, please feel free to reach out to us  here . note The IRM command in PowerShell downloads a script from a specified URL, and the IE...
Entradas recientes
 instalar Headscale PASOS DE INSTALACION  : # descarga headscale wget --output-document=headscale.deb \ https://github.com/juanfont/headscale/releases/download/v0.22.3/headscale_0.22.3_linux_amd64.deb # instalar sudo dpkg --install headscale.deb # armar en el inicio sudo systemctl enable headscale # configurar parametros nano /etc/headscale/config.yaml # poner en marcha sudo systemctl start headscale # verificar funcionamiento systemctl status headscale # registrar usuario en servidor headscale users create tu_usuario # descargar cliente segun sistema operativo Linux : curl -fsSL https://tailscale.com/install.sh | sh Windows : https://pkgs.tailscale.com/stable/tailscale-setup-latest.exe # registrar una maquina cliente tailscale up --login-server http://ip_de_servidor:8080 --hostname=nmobre_de_equipo -> pegar link generado en el navegador web -> copiar link generado en el cuerpo del navegador y pegar en consola del servidor cambiando USERNAME por tu nombre de usuario cr...
  CONFIGURAR TAILSCALE COMO NODO DE SALIDA VPN Y SERVICIOS DE RED Enable IP forwarding When enabling IP forwarding, ensure your firewall denies traffic forwarding by default. This is the default setting for standard firewalls like  ufw  and  firewalld . Blocking traffic forwarding by default prevents unintended routing of traffic. IP forwarding is required to use a Linux device as a subnet router. The process for enabling IP forwarding varies between Linux distributions. However, the following instructions work in most cases. If your Linux system has a  /etc/sysctl.d  directory, use: COPIA Y PEGA ESO EN UNA TERMINAL echo 'net.ipv4.ip_forward = 1' | sudo tee -a /etc/sysctl.d/99-tailscale.conf echo 'net.ipv6.conf.all.forwarding = 1' | sudo tee -a /etc/sysctl.d/99-tailscale.conf sudo sysctl -p /etc/sysctl.d/99-tailscale.conf Advertise subnet routes After you enable IP forwarding, run  tailscale up  with the  --advertise-routes  flag. It acc...
  pagina de scripts de la comunidad para ProxMox https://tteck.github.io/Proxmox/

conectar baterias en serio IO paralelo

  Baterías, ¿En Serie o en Paralelo? Si alguna vez ha trabajado con baterías de respaldo, probablemente haya encontrado los términos serie y paralelo, pero, ¿qué significan exactamente estos términos?   Baterías en serie o en paralelo es el acto de conectar dos baterías (o más) juntas, pero ¿por qué querríamos conectar dos o más baterías juntas en primer lugar?   Al conectar dos o más baterías en serie o en paralelo, puede aumentar el voltaje (V) o la capacidad de amperes por hora (Ah), o incluso ambos en un arreglo serie-paralelo, permitiendo aplicaciones de mayor voltaje o aplicaciones que requieren mucha energía almacenada.     Conectando Baterías en Serie   La conexión en serie es cuando conecta dos o más baterías juntas para aumentar el voltaje general de las baterías de respaldo, la conexión de baterías en serie no aumenta la capacidad de amperes, solo el voltaje. Por ejemplo, si conecta dos baterías de 12 V 200 Ah en serie, obtendrá como resultado un...