-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from nbhirud/alpine_02
Alpine 02
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
####################################################### | ||
|
||
# Very detailed official setup instructions: https://wiki.alpinelinux.org/wiki/Installation | ||
|
||
# Install alpine as a desktop OS: https://wiki.alpinelinux.org/wiki/Installation#setup-alpine_based_System_Disk_Install | ||
setup-alpine # Command to initiate installation to disk | ||
# choose "sys" | ||
|
||
####################################################### | ||
|
||
# Create user | ||
setup-user # uses adduser in the backend | ||
adduser -g "Nikhil Bhirud" nbhirud -s /bin/zsh -S | ||
adduser nbhirud wheel # add an existing user as admin user | ||
apk add doas # doas is a simplified and lightweight replacement for sudo | ||
|
||
|
||
|