Install the default kernel:
sudo apt install linux-generic- Find entrance from
/boot/grub/grub.cfg- Get the $menuentry_id_option:
| @echo off & setlocal enableextensions | |
| title Reset AnyDesk | |
| reg query HKEY_USERS\S-1-5-19 >NUL || (echo Please Run as administrator.& pause >NUL&exit) | |
| chcp 437 | |
| call :stop_any | |
| del /f "%ALLUSERSPROFILE%\AnyDesk\service.conf" | |
| del /f "%APPDATA%\AnyDesk\service.conf" | |
| copy /y "%APPDATA%\AnyDesk\user.conf" "%temp%\" | |
| rd /s /q "%temp%\thumbnails" 2>NUL | |
| xcopy /c /e /h /r /y /i /k "%APPDATA%\AnyDesk\thumbnails" "%temp%\thumbnails" |
| UEsDBBQAAAAIABNQjFGCf/GfLgAAACwAAAAHAAAAUHJvLmtleTMqdncpCXQOKDAp9woMzEo1MTVOrHAzTjTLME7VNs1LK8owTjQpcU8tcuLlAgBQSwECFAAUAAAACAATUIxRgn/xny4AAAAsAAAABwAAAAAAAAAAAAAAAAAAAAAAUHJvLmtleVBLBQYAAAAAAQABADUAAABTAAAAAAA= |
| Product | |
| GVLK | |
| Office 2013 Professional Plus | |
| YC7DK-G2NP3-2QQC3-J6H88-GVGXT | |
| Office 2013 Standard |
| # Put this in nrpe.cfg on the remote host you're monitoring. | |
| command[check_load]=/usr/local/nagios/libexec/check_load -w 5,4,3 -c 10,8,6 | |
| command[check_memory]=/usr/local/nagios/libexec/check_mem.pl -f -w 5 -c 2 | |
| command[check_disk]=/usr/local/nagios/libexec/check_disk -w 20% -c 10% -p / | |
| command[check_swap]=/usr/local/nagios/libexec/check_swap -w 20% -c 10% | |
| command[check_zombie_procs]=/usr/local/nagios/libexec/check_procs -w 5 -c 10 -s Z | |
| command[check_total_procs]=/usr/local/nagios/libexec/check_procs -w 150 -c 200 | |
| command[check_users]=/usr/local/nagios/libexec/check_users -w 5 -c 10 |
| #!/bin/bash | |
| # IMPORTANT: Make sure your VM's network security rules allows access over TCP Port 80. | |
| # This is required to pass the HTTP challenge. | |
| # Download: curl -o setup.sh <raw URL of this gist> | |
| # Enable execution: sudo chmod +x setup.sh | |
| # Run: ./setup.sh -d "yourdomain.tld" -e "[email protected]" | |
| while getopts d:e: option |
| #/bin/bash | |
| # Set Params | |
| k=YOUR_AWS_KEYS | |
| s=YOU_AWS_SECRETE | |
| r=YOUR_REGION | |
| # Assign EIP ID | |
| eip_id=eipalloc-XXXXXXX | |
| # Install awscli |
| ######################################################################## | |
| # Installing and Configuring Apache & Nginx with Multiple PHP Versions # | |
| # Apache will run on port 8080 and will be behind Nginx # | |
| # Nginx will serve as a reverse proxy for Apache Sites # | |
| # Nginx will act as the primary web and caching server # | |
| ######################################################################## | |
| # Update Packages | |
| sudo apt update && sudo apt upgrade -y |
| version: '3' | |
| services: | |
| mysql56: | |
| image: mysql:5.6 | |
| restart: unless-stopped | |
| container_name: mysql56-container | |
| ports: | |
| - "127.0.0.1:3356:3306" | |
| environment: | |
| MYSQL_ROOT_PASSWORD: rootPassword |