首页
关于
留言
邻居
壁纸
统计
Search
1
SSTap-1.0.9.7-享受游戏!(支持更多的游戏规则)
14,569 阅读
2
解决Telegram 无法私聊的方法
12,795 阅读
3
电报telegram如何设置中文汉化,最简单的方法,支持全平台
8,804 阅读
4
SolusVM主被控开心版安装教程
6,120 阅读
5
支付宝每天最少得八张集福方法
6,052 阅读
网络收集
Linux教程
谈天说地
技术分享
工具分享
登录
/
注册
Search
标签搜索
挂载硬盘
telegram
linux 加密
shell 加密
ua大全
vps网络重装
vps教程
一键网络重装
合并系统盘
linux挂载硬盘
SolusVM
SolusVM开心
SolusVM开心版
SolusVM破解版
linux
Python
Python3.7
安装Python
KMS
一键安装KMS服务脚本
梦月
累计撰写
44
篇文章
累计收到
53
条评论
首页
栏目
网络收集
Linux教程
谈天说地
技术分享
工具分享
页面
关于
留言
邻居
壁纸
统计
搜索到
44
篇与
梦月
的结果
2021-12-17
linux 关闭ipv6
session effective; 重启就失效了sysctl -w net.ipv6.conf.all.disable_ipv6=1sysctl -w net.ipv6.conf.default.disable_ipv6=1sysctl -w net.ipv6.conf.lo.disable_ipv6=1永久生效cat >> /etc/sysctl.conf <<EOF # permanently append these two lines; effective after reboot net.ipv6.conf.all.disable_ipv6=1 net.ipv6.conf.default.disable_ipv6=1 net.ipv6.conf.lo.disable_ipv6=1 EOF让其生效sysctl -p
2021年12月17日
61 阅读
1 评论
0 点赞
2021-12-10
centos7 开放端口
开启指定端口:firewall-cmd --zone=public --add-port=端口号/tcp --permanent开启指定端口后必须重启防火墙,重启命令systemctl restart firewalld.service查看防火墙状态systemctl status firewalld.service开启防火墙systemctl start firewalld.service禁止开机启动systemctl disable firewalld.service开启开机启动systemctl enable firewalld.service查看已开放端口firewall-cmd --list-ports
2021年12月10日
29 阅读
0 评论
0 点赞
2021-12-08
解决宝塔面板Nginx/Apache防火墙后无法启动
Nginx修复mv /www/server/panel/vhost/nginx/btwaf.conf /tmp/btwaf.conf_back mv /www/server/panel/vhost/nginx/total.conf /tmp/total.conf_backApache修复mv /www/server/panel/vhost/apache/btwaf.conf /tmp/btwaf.conf_back mv /www/server/panel/vhost/apache/total.conf /tmp/total.conf_back
2021年12月08日
26 阅读
0 评论
0 点赞
2021-12-08
CloudFlare及Nginx反代让源站获取客户端真实IP
反代节点配置反代机Nginx配置proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr;源站配置源站机从 反代机 获取IP的配置,从 X-Forwarded-For 头获取IPset_real_ip_from 0.0.0.0/0; real_ip_header X-Forwarded-For;源站从 CloudFlare 获取IP的配置,从 CF-Connecting-IP 头获取IPset_real_ip_from 0.0.0.0/0; real_ip_header CF-Connecting-IP;
2021年12月08日
15 阅读
0 评论
0 点赞
2021-07-01
Centos7解决报错libssl.so.1.1: cannot open shared object file: No such file or directory
Centos7默认提供的openssl版本是1.0.2的,某些php扩展或者其他软件依赖1.1以上版本如果过低的话就会报错libssl.so.1.1: cannot open shared object file: No such file or directory也有执行openssl version时报错和上面一致,这是由于openssl库的位置不正确或未安装1.1以上版本的问题想要升级openssl版本则需要手动进行编译,报错解决方式很简单,安装正确即可,下面说一下我以Centos7为例,说一下具体的编译安装步骤下载openssl从openssl官网下载最新的代码包 wget https://www.openssl.org/source/openssl-1.1.1e.tar.gz编译openssltar -xvf openssl-1.1.1e.tar.gz cd openssl-1.1.1e ./config shared --openssldir=/usr/local/openssl --prefix=/usr/local/openssl make && make install编译完成后,使用openssl version来查看一下当前openssl版本号时,你会发现还是1.0.2,所以这里需要做一些额外的配置工作openssl version配置echo "/usr/local/lib64/" >> /etc/ld.so.conf ldconfig再次使用openssl version验证版本就可以了如果还是不行的话,可以尝试下面的方式,依次执行(先备份老版本,再从新版本安装位置创建软连接)mv /usr/bin/openssl /usr/bin/openssl.old mv /usr/lib/openssl /usr/lib/openssl.old ln -s /usr/local/openssl/bin/openssl /usr/bin/openssl ln -s /usr/local/openssl/include/openssl /usr/include/openssl echo "/usr/local/openssl/lib" >> /etc/ld.so.conf ldconfig -v
2021年07月01日
152 阅读
1 评论
0 点赞
2021-06-28
Linux下 Cloudflare WARP 一键配置脚本
Cloudflare WARP 一键配置脚本特点:支持主流和非主流虚拟化方案:KVM、XEN、OpenVZ、LXC支持主流和非主流 CPU 架构:x86、x64、ARM64、ARM32支持主流最新 Linux 系统:Debian、Ubuntu、CentOS 等智能识别网络方案并自动匹配最佳配置方案进行部署独家优化配置方案,获得更好的 WARP 网络体验直观的进程状态、网络状态和 WARP 状态显示Cloudflare 官方 WARP Linux 客户端支持“一把梭”式极致体验SSH下:1、自动配置 WARP WireGuard 双栈全局网络bash <(curl -fsSL git.io/warp.sh) d2、自动配置 WARP WireGuard IPv4 网络bash <(curl -fsSL git.io/warp.sh) 43、自动配置 WARP WireGuard IPv6 网络bash <(curl -fsSL git.io/warp.sh) 64、开启 WARP 官方客户端 SOCKS5 代理bash <(curl -fsSL git.io/warp.sh) s55、显示功能菜单和网络状态bash <(curl -fsSL git.io/warp.sh) menu其它说明和注意事项脚本使用 wgcf 生成通用 WireGuard 配置文件,配置完成后会原样备份至~/.wgcf目录,以便下次调用。若之前自行生成过 WireGuard 配置文件,在文件名为wgcf-profile.conf的情况下在此配置文件所在目录执行脚本会优先调用。这个功能对已生成过 WARP+ 配置文件的小伙伴应该会很有用。自动配置 WARP WireGuard 双栈全局网络已做到适配目前大多数主流的系统和 IDC 网络方案,但不排除极个别的差异没考虑到,因此可能会因为入站路由规则不适用而导致 SSH 失联。若失联可以使用网页 VNC 登录到 VPS 然后执行bash <(curl -fsSL git.io/warp.sh) unwg命令关闭 WireGuard 即可恢复。手动选择 WARP WireGuard 双栈配置方案功能最初设计为自动配置失败或失联后的备用方案,当然你喜欢也可以直接用,如果需要使用可根据实际情况与需求选择,遵循“无则添加、有则置换”原则。注意确认 IP 地址是否需要修改,如需修改可以手动输入 IP。WARP 官方 Linux 客户端由于才上线不久,还处在待完善阶段,系统支持不全且稳定性一般,只建议尝鲜,不建议日常使用。WARP 官方客户端与 WARP WireGuard 网络可以同时使用,但 WARP 客户端的网络数据可能会走在 WARP WireGuard 隧道中,属于套娃行为,减速效果非常明显。WARP 官方客户端可能无法在部分 IPv6 Only VPS 上使用,可以先添加 WARP WireGuard IPv4 网络,但正如前面所说套娃减速。开源地址:https://github.com/P3TERX/warp.sh转自:https://p3terx.com/archives/cloudflare-warp-configuration-script.html
2021年06月28日
431 阅读
0 评论
0 点赞
2021-06-26
Raptoreum(RTM)Linux Ubuntu挖矿教程
我看很多人都不知道如何在Linux下使用cpuminer挖矿,所以自己度娘了一下,整合了一下资料,搞了自认为“最简单”的方法一、首先安装需要的包sudo apt-get -y install automake gcc libssl-dev libcurl4-openssl-dev make unzip screen如果安装不了的话,可以更换成阿里云apt源,在试试看二、安装jansson扩展cd ~ wget http://www.digip.org/jansson/releases/jansson-2.10.tar.gz tar zxvf jansson-2.10.tar.gz cd jansson-2.10/ ./configure make check sudo make install sudo ln -s /usr/local/lib/libjansson.so.4 /usr/lib/libjansson.so.4 sudo ldconfig三、下载挖矿软件可以去下边官方的github链接 下载Ubuntu版本的软件https://github.com/WyvernTKC/cpuminer-gr-avx2/releases懒的话,可以直接用我下载好的,一键下载解压(对应着版本运行哈)隐藏内容,请前往内页查看详情四、开始挖矿进入你挖矿软件安装的目录cd cpuminerscreen ./cpuminer-avx2 -a gr -o stratum+tcp://stratum-na.rplant.xyz:7056 -u 钱包地址 -p xcpuminer-avx2 需要看你cpu支持什么算法来选stratum-na.rplant.xyz:7056 矿池地址都按自己的修改算法的话,随便运行一个,运行成功后会提示,提示你用哪个算法好(我也不懂瞎蒙),看我截图这个RTM矿池算力排行https://miningpoolstats.stream/raptoreum{lamp/}另外,他这个挖矿软件,需要运行几十分钟进行调优测试,如果运行了没上线,那也是正常的,等一会就好了,具体可以看官方的github
2021年06月26日
534 阅读
16 评论
2 点赞
2021-06-08
Linux下查看硬盘通电时间
检测硬盘通电时间需要安装smartmontools工具:http://smartmontools.sourceforge.net/如果是CentOS直接运行:yum -y install smartmontools如果是Debian/Ubuntu:apt-get -y install smartmontools然后输入:注:用df看看硬盘名,把sda换了即可smartctl -A /dev/sda其中Power_On_Hours就是硬盘使用小时了!
2021年06月08日
187 阅读
1 评论
0 点赞
2021-06-07
宝塔绕过账号登录验证
sed -i "s|if (bind_user == 'True') {|if (bind_user == 'REMOVED') {|g" /www/server/panel/BTPanel/static/js/index.js rm -rf /www/server/panel/data/bind.pl
2021年06月07日
92 阅读
0 评论
0 点赞
2021-05-14
各大搜索引擎蜘蛛爬虫UA大全 收集整理
收集了各大搜索引擎的蜘蛛爬虫UA,以便需要时查阅百度Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)百度图片Baiduspider-image+(+http://www.baidu.com/search/spider.htm)百度最新UA如下:PC:Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)移动:Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)360搜索Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0);360网站安全检测360spider (http://webscan.360.cn)GoogleMozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)Google图片搜索Googlebot-Image/1.0Adwords移动网络AdsBot-Google-Mobile (+http://www.google.com/mobile/adsbot.html) Mozilla (iPhone; U; CPU iPhone OS 3 0 like Mac OS X) AppleWebKit (KHTML, like Gecko) Mobile Safari微软 bing,必应Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)腾讯搜搜Sosospider+(+http://help.soso.com/webspider.htm)搜搜图片 Sosoimagespider+(+http://help.soso.com/soso-image-spider.htm)雅虎英文Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)雅虎中国Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)搜狗图片 http://pic.sogou.com” “Sogou Pic Spider/3.0(+http://www.sogou.com/docs/help/webmasters.htm#07)搜狗Sogou web spider/4.0(+http://www.sogou.com/docs/help/webmasters.htm#07)网易有道Mozilla/5.0 (compatible; YoudaoBot/1.0; http://www.youdao.com/help/webmaster/spider/; )瑞典 Speedy SpiderMozilla/5.0 (Windows; U; Windows NT 5.1; en-US) Speedy Spider (http://www.entireweb.com/about/search_tech/speedy_spider/)俄罗斯 yandexMozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)宜搜 EasouSpiderMozilla/5.0 (compatible; EasouSpider; +http://www.easou.com/search/spider.html)华为赛门铁克蜘蛛HuaweiSymantecSpider/
[email protected]
+(compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR ; http://www.huaweisymantec.com/cn/IRL/spider)华为赛门铁克科技有限公司网页信誉分析系统的一个页面爬取程序,其作用是用于爬取互联网网页并进行信誉分析,从而检查该网站上的是否含有恶意代码。七牛镜像蜘蛛 qiniu-imgstg-spider-1.0监控宝Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; JianKongBao Monitor 1.1)DNSPod监控DNSPod-Monitor/2.0俄罗斯 LinkpadBotMozilla/5.0 (compatible; LinkpadBot/1.06; +http://www.linkpad.ru)英国 MJ12bot Mozilla/5.0 (compatible; MJ12bot/v1.4.0; http://www.majestic12.co.uk/bot.php?+)
2021年05月14日
175 阅读
1 评论
0 点赞
1
2
...
5