This is a guide that I put together which is primarily aimed at Steam Deck enthusiasts and developers. I will be updating this over time as I think of more things to put in here.
This project has moved to https://git.qtechofficial.com/logan/btrfs-maintenance
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
#!/bin/sh -e | |
# Converts OpenVZ VPS to Alpine Linux | |
# WARNING: This script will wipe any data in your VPS! | |
# GPLv2; Based on https://gist.github.com/trimsj/c1fefd650b5f49ceb8f3efc1b6a1404d, which is partly based on https://gitlab.com/drizzt/vps2arch | |
server=http://images.linuxcontainers.org | |
version="3.12" | |
path=$(wget -O- ${server}/meta/1.0/index-system | \ | |
grep $version | awk '-F;' '($1=="alpine" && $3=="amd64") {print $NF}' | tail -1) |