#https://askubuntu.com/questions/59064/how-to-run-a-checkdisk
#https://www.linode.com/docs/quick-answers/linux/how-to-use-fsck-to-fix-disk-problems/
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
# Waydroid | |
# WSl custom kernel | |
# https://gist.github.com/oleksis/eb6d2f1cd2a6946faefb139aa0e38c35 | |
# https://github.com/waydroid/waydroid/issues/217 | |
# https://www.youtube.com/watch?v=SfK4PBcFq0w | |
# Powershell shutdown & remove config | |
wsl --shutdown | |
rm /mnt/c/Users/user/.wslconfig | |
# install dependencies |
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/bash | |
# This is bash script version for Waydroid 11 + Magisk + Gapps | |
# dependencies: 7z, unzip, lzip | |
# VARS | |
WD_ARCH="x64" | |
WD_DIR="" | |
TEMP_DIR=~/testingwsa | |
MAGISK_VER=24101 |