- Clean pkg cache
- Remove unused packages (orphans)
- Clean cache in /home
- remove old config files
- Find and Remove
- duplicates
- empty files
- empty directories
- broken symlinks
# export applications | |
scoop export | sls '([A-Za-z0-9\-\_]+)' |% { | |
$_.matches.groups[1].value } > apps.txt | |
# export used buckets | |
$buckets = scoop export | sls '\[([A-Za-z0-9\-\_]+)\]' |% { | |
$_.matches.groups[1].value } | select -unique | |
<# or all installed buckets | |
$buckets = scoop bucket list |
$LazyLoadProfile = [PowerShell]::Create() | |
[void]$LazyLoadProfile.AddScript(@' | |
Import-Module posh-git | |
'@) | |
$LazyLoadProfileRunspace = [RunspaceFactory]::CreateRunspace() | |
$LazyLoadProfile.Runspace = $LazyLoadProfileRunspace | |
$LazyLoadProfileRunspace.Open() | |
[void]$LazyLoadProfile.BeginInvoke() |
» sudo systemctl daemon-reload
System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down
==============================================
Edit*
- Open
/etc/wsl.conf
with any editor:
# Raname current branch Locally and Remote | |
function Rename-GitBranch { | |
[CmdletBinding()] | |
param( | |
[Parameter(mandatory=$true)][String] $OldName, | |
[Parameter(mandatory=$true)][String] $NewName, | |
[String] $UpstreamName = 'origin' | |
) | |
# Rename the local branch to the new name |
In your WSL instance, re-install OpenSSH server as follows.
sudo apt remove --purge openssh-server
sudo apt install openssh-server
Edit /etc/ssh/sshd_config (e.g. sudo vi /etc/ssh/sshd_config
) and add the following lines to the bottom of the file. Ensure you replace WSL_ACCOUNT_NAME with your WSL2 account name.
This downloads standalone MSVC compiler, linker & other tools, also headers/libraries from Windows SDK into portable folder, without installing Visual Studio. Has bare minimum components - no UWP/Store/WindowsRT stuff, just files & tools for native desktop app development.
Run py.exe portable-msvc.py
and it will download output into msvc
folder. By default it will download latest available MSVC & Windows SDK - currently v14.40.33807 and v10.0.26100.0.
You can list available versions with py.exe portable-msvc.py --show-versions
and then pass versions you want with --msvc-version
and --sdk-version
arguments.
To use cl.exe/link.exe first run setup_TARGET.bat
- after that PATH/INCLUDE/LIB env variables will be updated to use all the tools as usual. You can also use clang-cl.exe with these includes & libraries.
To use clang-cl.exe without running setup.bat, pass extra /winsysroot msvc
argument (msvc is folder name where output is stored).
# Use the official Ubuntu 20.04 image as the base | |
FROM ubuntu:20.04 | |
# Set environment variables to avoid interactive installation | |
ENV DEBIAN_FRONTEND=noninteractive | |
# Update package list and install Squid | |
RUN apt-get update && \ | |
apt-get install -y squid |
local wezterm = require 'wezterm' | |
local act = wezterm.action | |
local config = wezterm.config_builder() | |
config.use_dead_keys = false | |
-- https://github.com/wez/wezterm/discussions/5102 | |
config.enable_kitty_keyboard = true | |
config.allow_win32_input_mode = false |