I was wondering if there’s another way of downloading apps besides the store and terminal?
my country has recently blocked the app store, so that’s not accessible for me and I can’t download anything from the terminal either.
I really need to download some bunch of apps and my current apps are outdated. so is there any other way to download apps?
If your internet provider has blocked the access to the repositories, you are probably out of luck. May i ask you in which country you are located, it’s interesting to hear that access to linux software repositories are blocked.
To verify if your provider has blocked access, please run the following command (simply copy/paste it into Terminal and press Enter):
OUT=~/ssl.txt
if [ -f ${OUT} ]; then rm ${OUT}; fi
flatpak remotes --columns=url | awk -F '/' '/https/ {print $3}' | sort | uniq | while read host
do
echo "Testing: ${host}"
openssl s_client -showcerts -connect ${host}:443 2>&1 </dev/null | tee -a ${OUT} | grep "Verify return code"
done
In case the connection is possible and nobody has tampered with the encryption this will output: