- Restore
- Advanced Mode
- Restore an entire volume
- Pick the Source snapshot and wait for it to finish matching
- For the Destination, pick any drive (it won't be overwritten) and create a new Subvolume in it (it's just a new subdirectory which will contain the restored files)
- Change the restore method to Restore Missing Files Only
- In Files Chosen, deselect the root drive so that there are 0 files chosen
- In Options → More Choices → Windows → System, ensure Restore System State is checked. I also disabled Restore Security Information because registry hive files have very restrictive permissions by default, which makes them harder to work with while restoring.
- Restore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
SCRIPT_FILE=/root/dotnet-install.sh | |
INSTALLATION_DIR=/usr/share/dotnet | |
sudo rm -f $SCRIPT_FILE | |
echo Downloading installation script | |
sudo wget -q https://dot.net/v1/dotnet-install.sh -O $SCRIPT_FILE | |
sudo chmod o+x $SCRIPT_FILE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import xapi from 'xapi'; | |
const cameraBrightnessCheckboxWidgetId = "camera_brightness_checkbox"; | |
const brightnessModeConfiguration = xapi.Config.Cameras.Camera["1"].Brightness.Mode; | |
brightnessModeConfiguration.on(renderBrightnessCheckbox); | |
render(); | |
async function render(){ | |
return renderBrightnessCheckbox(await brightnessModeConfiguration.get()); |
- Go to
vivaldi://extensions/
- Temporarily enable Developer mode
- Drag and drop the CRX file into the Extensions page
- If the drop target does not work, try entering
vivaldi://extensions/
into the URL bar once again - Accept the confirmation prompt to install the extension
- Turn off Developer mode if it was off before you started
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET Core | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
env: | |
ProjectName: MyProjectNameHere |
- Windows
- Apache httpd 2.4.50 x64 VC16
- mod_authn_ntlm
- Your server is running Windows Server 2019.
- Your client is using PuTTY or OpenSSH Client, and you know how to connect to servers and set private keys.
- Your server user is an administrator.
- Install the OpenSSH Server feature.
- Go to Settings › Apps › Apps & features › Manage optional features.
- Select + Add a feature.
- Select OpenSSH Server, then select Install.