docker container run -it -p 80:80 nginxdocker container run -d -p 80:80 nginxThe error WslRegisterDistribution failed with error: 0x8007019e indicates that the Windows Subsystem for Linux (WSL) feature is not enabled on your Windows machine. To resolve this issue, you will need to enable WSL through the Windows features settings or by using PowerShell commands.
Here are the steps to enable WSL:
@BotFather./newbot or simply type /newbot into the chat and press Send.
| #!/bin/bash | |
| set -o errexit | |
| clear | |
| printf "\n*** This script will download a cloud image and create a Proxmox VM template from it. ***\n\n" | |
| ### HOW TO USE | |
| ### Pre-req: | |
| ### - run on a Proxmox 6 server | |
| ### - a dhcp server should be active on vmbr1 |
Run Portainer WebUI for Docker on a docker host built using Alpine (3.8) Linux
Despite documentation publicly available on Internet, Portainer is not specially well documented in regard to docker volumes and other similar stuff. Best approach is to handle ourselves the volumes mounted per container.
You need to have certificates already created to pass to the docker command line / docker composer. Easier way to have that certificates is to use selfsigned certificates. Following line creates a 10-year valid self-signed certificates:
Manual (no TTB)
This method is the traditional one and assumes you have access to some sort of external storage e.g., CIFS or USB. In this example, we'll use CIFS and mytheme.zip:
Download mytheme.zip into cifs1. To do so, refer to the standard URL https://freshtomato.org/tomatothemebase/wp-content/uploads/ + theme name + .zip
cd /cifs1
wget -O theme.zip https://freshtomato.org/tomatothemebase/wp-content/uploads/mytheme.zipYes, you can upload and test the script from VS Code on your Proxmox server using a few different methods. Here's a step-by-step guide on how to do it:
Open a terminal in VS Code: You can open an integrated terminal in VS Code by pressing Ctrl+` (backtick) or by selecting "Terminal" > "New Terminal" from the top menu.
Use SCP to upload the script: In the terminal, use the scp command to securely copy the script to your Proxmox server. Replace <script-name>.sh with the name of your script file.
scp <script-name>.sh root@192.168.0.10:/path/to/destinationThis howto describes installing entware for the Tomato open-source router firmware.
| #Requires -Version 5.1 | |
| [cmdletbinding()] | |
| param( | |
| [string]$SourcePath = "", # Path to 7z zipped disc images to be converted | |
| [string]$DestinationPath = "", # Path where you would like the CHD's to go. One folder per game. | |
| [string]$WorkingPath = "", # Path where files will be extracting temporarily for CHD creation, use fast disk if possible. Will be created in the running path if undefined | |
| [string]$CHDMANPath = "", # Path to the CHDMAN executable, will be downloaded if this isn't defined or isn't correct | |
| [switch]$CleanWorkingPath = $false, # Switch to automatically clean (delete contents) the working path dir if it is non-empty | |
| [switch]$DisableMultithreading = $false, # Option to disable multithreading logic, for low thread systems or if you don't want CHD conversion to take most of your CPU % | |
| [switch]$WritePlaylistFiles = $false # Write m3u files in the destination dir, for all CHDs present (not just new ones) |