峯言凬语 O ever youthful O ever weeping~
本无意与众不同,怎奈何口味太重。
首页
平水韵
颜色表
ABOUT
文章分类
友情链接
2019-08-01 |Nonni | TSI

nh016.png
当你离职时如果想彻底清除电脑硬盘里的数据,防止格式化后被人恢复,可以参考三个方法:

A:用管理员权限运行powershell或者cmd,输入命令:
cipher /w:D (D为需要擦除的磁盘分区,不会删除分区,反复用0和1读写硬盘来完整擦除数据)

B:用Eraser软件清除。

C:假如需要整个硬盘清除,建议使用Gdisk,需要刻启动盘或者用UltraISO写入U盘。

*工具包下载地址: http://tokyohot.ltd/
*清除数据后可以使用OntrackEasyRecovery等磁盘恢复工具扫一遍。

2019-08-01 |Nonni | Digi

nh017.png
Google,TikTok等锁区应用会检测手机的如下信息进行服务锁定纠正:
gsm.sim.operator.numeric
gsm.operator.numeric
gsm.sim.operator.iso-country
gsm.operator.iso-country
gsm.sim.operator.alpha
gsm.operator.alpha

其中需要修改的SIM Card信息:
gsm.sim.operator.alpha "AT&T" #修改运营商为AT&T,若使用eMobile则是"eMobile"。
gsm.sim.operator.iso-country "us" #修改SIM卡国家为US,日本则是"jp"。
gsm.sim.operator.numeric "310090" #修改为AT&T市场代码310090,若eMobile的市场代码则是"44000"

修改方法:
Android ROOT后,安装终端程序,比如Termux或者TerminalEmulator,然后运行如下命令:
su
setprop gsm.sim.operator.alpha "AT&T"
setprop gsm.sim.operator.iso-country "us"
setprop gsm.sim.operator.numeric "310090"

恢复方法:
重启手机,重新插拔SIM卡。

2019-08-01 |Nonni | TSI

1.基于virtio的KVM,CentOS7或Debian9系统,内存4GB,DebianNET.sh脚本由Vicer开发,网址:https://moeclub.org

wget -qO DebianNET.sh qiu.sh/dd && bash DebianNET.sh -dd "https://delivery.yuntu.moe/teddysun/cn_windows2019.gz"

2.Teddysun版本,15GB VHD。

wget -O- "https://delivery.yuntu.moe/teddysun/cn_windows2019.gz" | gunzip | dd of=/dev/sda

/远程桌面的默认用户名/密码/
用户: administrator
密码: Password147

3.KMS客户端安装密钥

https://docs.microsoft.com/zh-cn/windows-server/get-started/kmsclientkeys

raspberrypi4.jpg

2019-08-01 |Nonni | TSI

nh018.png
V2Ray 原生支持 Socks、HTTP、Shadowsocks、VMess 等协议。
ubuntu/debian 安装 Curl:

apt-get update -y && apt-get install curl -y

centos 安装 Curl:

yum update -y && yum install curl -y

官方:

bash <(curl -L -s https://install.direct/go.sh)

其它脚本:

bash <(curl -s -L https://git.io/v2ray.sh)

bash <(curl -s -L https://raw.githubusercontent.com/233boy/v2ray/master/install.sh)

Wordpress+v2ray_ws_tls1.3一键脚本(Centos7 VPS, 2GB RAM, 完成后访问域名,开始wordpress初始配置):

yum install -y wget && wget https://raw.githubusercontent.com/atrandys/v2ray-ws-tls/master/v2ray_ws_tls_with_wp.sh && chmod +x v2ray_ws_tls_with_wp.sh && ./v2ray_ws_tls_with_wp.sh

查看参数:

cat /etc/v2ray/myconfig.json

BBR:

wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh

启动

systemctl start v2ray
service start v2ray

停止

systemctl stop v2ray
service stop v2ray

重启

systemctl restart v2ray
service restart v2ray

V2Ray快速管理:
v2ray bbr 配置BBR
v2ray info 查看 V2Ray 配置信息
v2ray config 修改 V2Ray 配置
v2ray link 生成 V2Ray 配置文件链接
v2ray infolink 生成 V2Ray 配置信息链接
v2ray qr 生成 V2Ray 配置二维码链接
v2ray ss 修改 Shadowsocks 配置
v2ray ssinfo 查看 Shadowsocks 配置信息
v2ray ssqr 生成 Shadowsocks 配置二维码链接
v2ray status 查看 V2Ray 运行状态
v2ray start 启动 V2Ray
v2ray stop 停止 V2Ray
v2ray restart 重启 V2Ray
v2ray log 查看 V2Ray 运行日志
v2ray update 更新 V2Ray
v2ray update.sh 更新 V2Ray 管理脚本
v2ray uninstall 卸载 V2Ray

nh019.png
查看pip源:
cat /root/.pip/pip.conf
pip --version

编辑一下pip配置文件:
vi /root/.pip/pip.conf

修改成豆瓣源或者阿里源:
[global]

index-url=https://pypi.douban.com/simple

[install]

trusted-host=pypi.douban.com

强制安装requests:
pip install --ignore-installed requests

Done~