-
injection - inject into runtime after the boot Windows -> WinPE env. Linux -> initramfs env.
{ "injection": [ { "image": "/linux.iso", "archive": "/archives/compressedDepressed.[zip/tar.[gz/bz2/xz/lzma]]"
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
# If you come from bash you might have to change your $PATH. | |
export PATH=$HOME/bin:/usr/local/bin:$HOME.local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/home/viper/.oh-my-zsh" | |
# export Nix | |
. /home/viper/.nix-profile/etc/profile.d/nix.sh | |
export NIX_PATH=$HOME/.nix-defexpr/channels${NIX_PATH:+:}$NIX_PATH |
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
! special | |
*.foreground: #d2d0ce | |
*.background: #11100f | |
*.cursorColor: #d2d0ce | |
! black | |
*.color0: #282a2e | |
*.color8: #373b41 | |
! red |
- list all services:
systemctl list-unit-files
- list running services status:
systemctl list-units
- list failed services:
systemctl --failed
- list available services:
systemctl --all
- start a service:
systemctl start [SERVICE_NAME]
- stop a service:
systemctl stop [SERVICE_NAME]