Last active
July 13, 2026 09:45
-
-
Save rokibhasansagar/ac5694545098122b635646b877fc7f84 to your computer and use it in GitHub Desktop.
cachyos test startup at remote
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
| #!/bin/bash | |
| export selfAddr="https://gist.github.com/rokibhasansagar/ac5694545098122b635646b877fc7f84" | |
| export selfScript="xScript.sh" | |
| export selfRef=$(git ls-remote -q "${selfAddr}" HEAD | awk '{print $1}') | |
| curl -sL --retry 8 --retry-connrefused "${selfAddr}/raw/${selfRef}/${selfScript}" -O | |
| source ${selfScript} | |
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
| #!/bin/bash | |
| echo | |
| docker rmi -f $(docker images -q) &>/dev/null | |
| echo | |
| echo "::group:: Pull" | |
| docker pull fr3akyphantom/archy-base:latest | |
| docker pull fr3akyphantom/cachy-base:latest | |
| echo | |
| docker image ls | |
| echo "::endgroup::" | |
| echo "::group:: archy" | |
| docker run -t fr3akyphantom/archy-base:latest bash -c "pacman -Q 2>/dev/null" | tee archy.list | |
| echo "::endgroup::" | |
| echo "::group:: cachy" | |
| docker run -t fr3akyphantom/cachy-base:latest bash -c "pacman -Q 2>/dev/null" | tee cachy.list | |
| echo "::endgroup::" | |
| echo | |
| git diff *chy.list 2>/dev/null | |
| echo | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment