zfs list
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
| autoinstall: | |
| version: 1 | |
| identity: | |
| realname: $realname | |
| username: $username | |
| password: $crypted_password | |
| hostname: $hostname | |
| active-directory: | |
| admin-name: $admin_name | |
| domain-name: $domain_name |
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
| unmapAll | |
| map ? showHelp | |
| map h scrollLeft | |
| map j scrollDown | |
| map k scrollUp | |
| map l scrollRight | |
| map gg scrollToTop | |
| map G scrollToBottom | |
| map d scrollPageDown | |
| map u scrollPageUp |
My goto arch installation steps heavily inspired by the Arch Linux wiki.
Change var noted with {{ VAR }} notation to your setup and taste.
Bear in mind that if you plan to dual boot with Windows, it'd be better to have it first installed as it ofter messes things at bootloader level
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 | |
| set -e | |
| # Download and setup my dotfiles, repo overriding possible just pass your repo as first argument | |
| repo=${1:-https://github.com/dixiedream/dotfiles.git} | |
| git clone --bare "$repo" "$HOME/.cfg" | |
| function config { |