Last active
April 16, 2023 19:14
-
-
Save iahim/6a3fa271bba84a93d2d5ab2e7057ac2e to your computer and use it in GitHub Desktop.
alpine linux shortcuts
This file contains 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
# add packages | |
apk update && apk upgrade | |
apk add vim curl | |
# enable service at boot | |
rc-update add apache2 | |
# start service | |
rc-service apache2 start | |
# profile shortcuts | |
vim /etc/profile.d/bash_aliases.sh | |
# if you need tput command, run: | |
apk add ncurses | |
# ENABLE repositories | |
vim /etc/apk/repositories | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment