Wednesday, May 19, 2021

浏览器信息检测

 浏览器信息检测

https://fingerprintjs.com/

https://www.whatismybrowser.com/

https://browserleaks.com/

批量检测代理

https://www.proxyscan.io

https://check.dichvusocks.us/

https://www.proxychecker.ge/

https://checkerproxy.net/

http://proxy-list.org/english/checker.php

Socks检测工具    https://www.socks-proxy.net/buysocksproxy.html

提供代理下载的代理 站

https://proxyscrape.com/free-proxy-list

http://proxydb.net/?protocol=socks4&protocol=socks5

https://www.coderduck.com/free-proxy-list





Sunday, May 9, 2021

anlinux安装的一个问题

 我在anlinux选择要安装Debian,在termux输入”pkg install wget openssl-tool proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Debian/debian.sh && bash debian.sh”,但安装到最后出现这样一段代码“”................Resolving raw.githubusercontent.com... 0.0.0.0, ::

Connecting to raw.githubusercontent.com|0.0.0.0|:443... failed: Connection refused.

Connecting to raw.githubusercontent.com|::|:443... failed: Connection refused”接着输入./start-debian.sh,也报错,termux显示“bash: ./start-Debian.sh: No such file or directory”

目前在安卓上安装linux的有termux,anlinux,aidlearing,还有 linux deploy,第二个第三个与在Windows上安装linux的名字andlinux很相似。另外在安卓上运行linux的还有andronix,UserLAnd,GNURoot,WheezyX,CLI-Launcher。当然,还有Limbo PC模拟器等各种模拟器安装Linux。

Termux 镜像 图形界面(TUI)替换 转自清华论坛

Termux 镜像

图形界面(TUI)替换,先在 Termux 中执行如下命令


termux-change-repo

在图形界面引导下,使用自带方向键可上下移动。

第一步使用空格选择需要更换的仓库,之后在第二步选择 TUNA/BFSU 镜像源。确认无误后回车,镜像源会自动完成更换。


命令行替换

使用如下命令行替换官方源为 TUNA 镜像源


sed -i 's@^\(deb.*stable main\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/termux-packages-24 stable main@' $PREFIX/etc/apt/sources.list

sed -i 's@^\(deb.*games stable\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/game-packages-24 games stable@' $PREFIX/etc/apt/sources.list.d/game.list

sed -i 's@^\(deb.*science stable\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/science-packages-24 science stable@' $PREFIX/etc/apt/sources.list.d/science.list

apt update && apt upgrade。

手动修改

编辑 $PREFIX/etc/apt/sources.list 修改为如下内容


# The termux repository mirror from TUNA:

deb https://mirrors.tuna.tsinghua.edu.cn/termux/termux-packages-24 stable main

编辑 $PREFIX/etc/apt/sources.list.d/science.list 修改为如下内容


# The termux repository mirror from TUNA:

deb https://mirrors.tuna.tsinghua.edu.cn/termux/science-packages-24 science stable

编辑 $PREFIX/etc/apt/sources.list.d/game.list 修改为如下内容


# The termux repository mirror from TUNA:

deb https://mirrors.tuna.tsinghua.edu.cn/termux/game-packages-24 games stable