今天给大家分析亚马逊联盟玩法
关键点:
需要个人网站或者博客
步骤:去美亚申请Affiliate
收款方式:
美国银行卡
支票邮寄100美元起付
Amazon礼品卡
WorldFirst账户/ P卡
参考: http://www.guxiaobei.com/how-to-register-amazon-affiliate-and-play-well.html
如果喜欢请转发或者点赞,谢谢!
2020年1月3日星期五
2019年12月1日星期日
pixelXL root加破解电信教程
原来给老爸用的pixelXL手机电池不行了,给他买了华为新手机,旧的拿来给我联手,可惜今天换电池时候翻车了,屏幕被搞碎,先不管,记录下破解电信步骤,不废话。
这个方法是参考网上各位神仙写的,没有花里胡哨的废话,完全原创,亲测有效
pixel XL root教程
用到的工具:链接:https://pan.baidu.com/s/1TtZGTlLaXGMgadIFWKQb2w
提取码:grix
下载 https://github.com/topjohnwu/Magisk/releases/ : Magisk-v20.1
下载 https://dl.twrp.me/sailfish/ (此地址下载的不是img格式,自己另外找了一个img格式的twrp.img)
手机移除锁屏密码
把1中文件放入手机根目录
把2中文件放入d:/adb
进入刷机界面:cmd界面输入:adb reboot fastboot
手机进入twrp recovery:在cmd界面输入:fastboot boot twrp.img
进入临时recovery,在主界面选项点击【Install】
找到之前放在手机内存里的Magisk V-XX.zip 并点击,接着点击Install Image
滑动 Swipe to confirm Flash,等待系统自动完成
重启系统 reboot system,接着点击Do Not Install 这一步很重要
重启下载Root Explorer打开根目录验证是否root成功
破解电信教程
参考: https://tieba.baidu.com/p/5666986960?share=9105&fr=share&see_lz=0&sfc=copy&client_type=2&client_version=9.4.8.0&st=1524714141&unique=C1FF2FC2F12BF43C9E62C4918B0688A2&red_tag=2896050863
必须按照以上方法先root
下载破解的modem
备份本机modem(使用apk)(参考: http://www.gandalf.site/2018/11/google-pixel-4g.html和 http://bbs.gfan.com/android-9279925-1-1.html)
cmd界面输入:adb reboot fastboot
fastboot flash modem_a modem (就3中的modem)
fastboot flash modem_b modem (就3中的modem)
fastboot erase userdata
fastboot erase frp
这个方法是参考网上各位神仙写的,没有花里胡哨的废话,完全原创,亲测有效
pixel XL root教程
用到的工具:链接:https://pan.baidu.com/s/1TtZGTlLaXGMgadIFWKQb2w
提取码:grix
下载 https://github.com/topjohnwu/Magisk/releases/ : Magisk-v20.1
下载 https://dl.twrp.me/sailfish/ (此地址下载的不是img格式,自己另外找了一个img格式的twrp.img)
手机移除锁屏密码
把1中文件放入手机根目录
把2中文件放入d:/adb
进入刷机界面:cmd界面输入:adb reboot fastboot
手机进入twrp recovery:在cmd界面输入:fastboot boot twrp.img
进入临时recovery,在主界面选项点击【Install】
找到之前放在手机内存里的Magisk V-XX.zip 并点击,接着点击Install Image
滑动 Swipe to confirm Flash,等待系统自动完成
重启系统 reboot system,接着点击Do Not Install 这一步很重要
重启下载Root Explorer打开根目录验证是否root成功
破解电信教程
参考: https://tieba.baidu.com/p/5666986960?share=9105&fr=share&see_lz=0&sfc=copy&client_type=2&client_version=9.4.8.0&st=1524714141&unique=C1FF2FC2F12BF43C9E62C4918B0688A2&red_tag=2896050863
必须按照以上方法先root
下载破解的modem
备份本机modem(使用apk)(参考: http://www.gandalf.site/2018/11/google-pixel-4g.html和 http://bbs.gfan.com/android-9279925-1-1.html)
cmd界面输入:adb reboot fastboot
fastboot flash modem_a modem (就3中的modem)
fastboot flash modem_b modem (就3中的modem)
fastboot erase userdata
fastboot erase frp
2017年2月1日星期三
2016年6月28日星期二
ssh: connect to host localhost port 22: Connection refused 问题解决
ssh: connect to host localhost port 22: Connection refused 问题解决
问题描述:centos7 服务器出现ssh经常掉线,git拉取代码,上传出现ssh: connect to host localhost port 22: Connection refused 错误,同时还会报“Write failed: Broken pipe” 错误。
解决:思路如下:
首先【service sshd status】检查ssh服务启动没。
然后【netstat -nlap | grep ":22"】检查端口启动没。
接着【telnet 127.0.0.1 22】看看本地能连上不。
然后看看防火墙有没有启动,以及有没有开放sshd的tcp22端口。老版本的命令是【service iptables status】,请自行搜索新版本命令。
最后去客户机上ping一下这台服务器看看能否ping通,如果禁ping那就只能做【telnet 服务器IP 22】了。
如果都通了,还要去服务器上检查一下sshd是否设置了开机启动。老版本的命令是【chkconfig --lish | grep sshd】,请自行搜索新版本命令。如果都是off那就【chkconfig sshd on】。
最后检测出来是ip地址冲突导致,因为ping到windows系统是一般是128,linux系统一般是64
参考:
https://www.zhihu.com/question/47897094/answer/108152381?group_id=731288531665682432#comment-146036784
问题描述:centos7 服务器出现ssh经常掉线,git拉取代码,上传出现ssh: connect to host localhost port 22: Connection refused 错误,同时还会报“Write failed: Broken pipe” 错误。
解决:思路如下:
首先【service sshd status】检查ssh服务启动没。
然后【netstat -nlap | grep ":22"】检查端口启动没。
接着【telnet 127.0.0.1 22】看看本地能连上不。
然后看看防火墙有没有启动,以及有没有开放sshd的tcp22端口。老版本的命令是【service iptables status】,请自行搜索新版本命令。
最后去客户机上ping一下这台服务器看看能否ping通,如果禁ping那就只能做【telnet 服务器IP 22】了。
如果都通了,还要去服务器上检查一下sshd是否设置了开机启动。老版本的命令是【chkconfig --lish | grep sshd】,请自行搜索新版本命令。如果都是off那就【chkconfig sshd on】。
最后检测出来是ip地址冲突导致,因为ping到windows系统是一般是128,linux系统一般是64
参考:
https://www.zhihu.com/question/47897094/answer/108152381?group_id=731288531665682432#comment-146036784
2016年6月16日星期四
2015年12月30日星期三
查看ubuntu是32位还是64位系统
查看ubuntu是32位还是64位系统
checkout Ubuntu OS is 32bit or 64bit?
function1:click top right and see "about this computer"
function2:In terminal enter: $uname -a
function3:In terminal enter: $getconf LONG_BIT
information:
http://webcache.googleusercontent.com/search?q=cache:Avc0R8X3NGEJ:https://blog.linuxeye.com/303.html+&cd=2&hl=zh-TW&ct=clnk&gl=us
checkout Ubuntu OS is 32bit or 64bit?
function1:click top right and see "about this computer"
function2:In terminal enter: $uname -a
function3:In terminal enter: $getconf LONG_BIT
information:
http://webcache.googleusercontent.com/search?q=cache:Avc0R8X3NGEJ:https://blog.linuxeye.com/303.html+&cd=2&hl=zh-TW&ct=clnk&gl=us
2015年6月30日星期二
Linux分区指南
Linux分区指南
常用分区
/boot 内核启动文件
/
/home 用户所在目录。大小取决于有多少用户
/user 存放软件
/var/log 系统日志
/tmp 临时文件
/bin 存放标准系统实用程序
/dev 存放设备文件
/opt 存放可选安装软件
/sbin 存放标准文件管理系统
实例分区
120G固态硬盘,用于安装服务器
|
目录
|
容量
|
分区类型
|
|
/boot
|
200M
|
primary
|
|
/
|
60g
|
primary
|
|
/home
|
27.8g
|
primary
|
|
Swap
|
32g
|
logical
|
订阅:
博文 (Atom)

