I hereby claim:
- I am johnarok on github.
- I am johnarok (https://keybase.io/johnarok) on keybase.
- I have a public key ASBKFFcvtZv3myg2FQGqhgQySw8pGOexcIIG5NnQYWhZAQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# Description: Boxstarter Script | |
# Author: Jess Frazelle <[email protected]> | |
# Last Updated: 2017-09-11 | |
# | |
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# | |
# Run this boxstarter by calling the following from an **elevated** command-prompt: |
@rem *** Disable Some Service *** | |
sc stop DiagTrack | |
sc stop diagnosticshub.standardcollector.service | |
sc stop dmwappushservice | |
sc stop WMPNetworkSvc | |
sc stop WSearch | |
sc config DiagTrack start= disabled | |
sc config diagnosticshub.standardcollector.service start= disabled | |
sc config dmwappushservice start= disabled |
Set-ExecutionPolicy RemoteSigned
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
Secure Boot State Query in Powershell Confirm-SecureBootUEFI
Check EFI paritions - Disk Managment diskmgmt.msc
Refindboot manager https://www.rodsbooks.com/refind/installing.html#efibootmgr
Secure boot https://blogs.technet.microsoft.com/dubaisec/2016/03/14/diving-into-secure-boot/ https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/disabling-secure-boot
config: | |
environment.DISPLAY: :0 | |
raw.idmap: both 1000 1000 | |
user.user-data: | | |
#cloud-config | |
#runcmd: | |
packages: | |
- x11-apps | |
- mesa-utils | |
description: GUI LXD profile |
Refer: https://discuss.linuxcontainers.org/t/backup-the-container-and-install-it-on-another-server/463/4
lxc publish CONTAINER_NAME/SNAPSHOT_NAME --alias my-export
lxc image export my-export .
This will create a new LXD image from your container and export it as a tarball in your current directory. You can then ship that tarball to your target host and do:
lxc image import TARBALL --alias my-export
lxc init my-export NEW-CONTAINER
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
apt-get update
apt-cache madison docker-ce
apt-get install docker-ce=18.06.3~ce~3-0~ubuntu
Main Driver: Add support for storing symlinks in tar and zip archives #92 mholt/archiver#92
os: Symlink creation should work on Windows without elevation golang/go#22874
get: Handle symlink creation and sanitize paths on Windows ipfs/kubo#4956
Don't skip tests related to symlinks on windows syncthing/syncthing#4887
Added support for non-symlink checkouts on Windows when elevated rights are missing src-d/go-git#768