https://github.com/afimpel/upgrade-system-alpine
Upgrade to Alpine Linux
https://github.com/afimpel/upgrade-system-alpine
afimpelelnerd alpine-linux bash bash-script upgrade
Last synced: 2 months ago
JSON representation
Upgrade to Alpine Linux
- Host: GitHub
- URL: https://github.com/afimpel/upgrade-system-alpine
- Owner: afimpel
- License: gpl-3.0
- Created: 2022-05-10T23:33:22.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-10-25T04:58:20.000Z (8 months ago)
- Last Synced: 2025-10-25T06:27:55.329Z (8 months ago)
- Topics: afimpelelnerd, alpine-linux, bash, bash-script, upgrade
- Language: Shell
- Homepage:
- Size: 118 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# upgrade-system-alpine
Update to Alpine Linux, to perform a series of commands to make it more user friendly.
## Desktop
‼️ All as root. ‼️
### Version one link.
* open terminal favorite
* login as root
* copy and paste command below
```bash
wget --no-cache -O - https://raw.githubusercontent.com/afimpel/upgrade-system-alpine/main/installer-desktop.sh | sh
```
----
## terminal version
‼️ All as root. ‼️
### Version one link.
* open terminal favorite
* login as root
* copy and paste command below
```bash
wget --no-cache -O - https://raw.githubusercontent.com/afimpel/upgrade-system-alpine/main/installer.sh | sh
```
----
### version Git.
‼️ All as root. ‼️
* open terminal favorite
* login as root
* Copy and paste the commands below step by step without skipping any steps.
```bash
git clone https://github.com/afimpel/upgrade-system-alpine.git
cd upgrade-system-alpine/
cp upgrade-* /usr/bin/
cp package-up* /usr/bin/
chmod 777 /usr/bin/upgrade-system* -R
chmod 777 /usr/bin/package-up* -R
apk add sudo bash wget curl
echo "%wheel ALL=(ALL:ALL) ALL" > /etc/sudoers.d/wheel
echo "%wheel ALL=(ALL) NOPASSWD: /sbin/poweroff, /sbin/reboot, /sbin/shutdown, /usr/bin/upgrade-syste*, /usr/bin/package-update" >> /etc/sudoers.d/wheel
adduser $(getent passwd 1000 | cut -d: -f1) wheel
```
‼️ Important remember that this GIT method is for terminal use only. ‼️
----
# Terminal usage mode.
## Run
### ROOT user.
```sh
package-update
upgrade-system
upgrade-system-poweroff
upgrade-system-reboot
```
### Sudo User.
```sh
sudo package-update
sudo upgrade-system
sudo upgrade-system-poweroff
sudo upgrade-system-reboot
```