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
| #!/usr/bin/env bash | |
| # Usage: | |
| # sudo bash install-proxmox.sh 'user_name' 'encrypted_password' | |
| # or leave both empty to skip user creation | |
| # | |
| # To generate encrypted password: | |
| # mkpasswd 'user_password' or openssl passwd -6 'user_password' | |
| # TODO: |
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
| #!/usr/bin/env bash | |
| # Based on https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/pve/post-pve-install.sh | |
| # Original credit: | |
| # # Copyright (c) 2021-2026 tteck | |
| # # Author: tteckster | MickLesk (CanbiZ) | |
| # # License: MIT | |
| # # https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE | |
| set -euo pipefail |
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
| # /etc/profile.d/custom_prompt.sh | |
| # If not running interactively, don't do anything | |
| [[ $- != *i* ]] && return | |
| alias vi='vim' | |
| alias grep='grep --color=auto' | |
| alias df='df -h' | |
| alias dud='du -h */' | |
| alias du='du -hs' | |
| alias ping='ping -c 5' |