Cloudflare自动拉黑恶意IP到防火墙
Iptables , Linux / 2020年7月7日

一、Cloudflare自动拉黑恶意IP 1.1找出恶意IP 利用脚本分析在一分钟单个IP访问的频率,超过一定的频率(一般来正常的访问,一分钟内应该不超过60次,你可以设置为更小),即认定为恶意IP。脚本如下: #/bin/bash #日志文件,你需要改成你自己的路径 logfile=/var/log/nginx/ last_minutes=1 #开始时间1分钟之前(这里可以修改,如果要几分钟之内...

Linux内核常见参数详解:
Linux / 2020年6月29日

一、修改最大进程数 系统允许创建的最大进程数量即是max user processes 这个参数。 我们可以使用 ulimit -u 65535 修改max user processes的值,但是只能在当前终端的这个session里面生效,重新登录后仍然是使用系统默认值。 正确的一次性修改是在/etc/security/limits.d/90-nproc.conf文件中, 该文件修改如下: * s...

实时同步 Lsyncd
Linux , 工具 / 2020年6月19日

Ubuntu # sudo apt-get update sudo apt-get install lsyncd CentOS # yum -y update yum -y install lsyncd Running these commands will install Lsyncd as well as include some examples within the following d...

Linux Debain 安装 GOGS
Linux , 工具 / 2020年4月14日

Debian 9 Stretch 64bits Created: about 6 hours ago Started: about 6 hours ago Duration: 123s master 844d2f49ce25b1f1fd29832a01b8b38810a8249a 0.11.91 Installation instructions centos-7 debian-10 debian...

Rclone 使用教程 - 挂载管理谷歌云盘、Dropbox 等网盘
Disk , Linux / 2020年3月4日

介绍 Rclone 是一款的命令行工具,支持在不同对象存储、网盘间同步、上传、下载数据。 官网网址:https://rclone.org Github 项目:https://github.com/ncw/rclone 支持的主流对象存储有: Google Drive Amazon S3 #消息称Amazon单方面禁止了 rclone 在他家存储上使用。 Openstack Swift / Rack...

debian9升级安装到python3.6 3.7
Debain , Python / 2020年3月3日

安装步骤 1.添加testing源 vim /etc/apt/sources.list deb http://mirrors.163.com/debian/ testing main 2.更新源 apt-get update 3.安装python3.6 apt-get install python3.6 python3.6-dev python3.6-distutils 4.安装pip3.6 wg...

Debian9安装MySQL
Debain , Mysql / 2019年12月23日

debian下安装软件的指令为apt-get,在使用apt-get安装MySQL之前,需要先下载MySQL官网提供的DEB包,以将MySQL的仓库添加到apt-get的源中,打开网站MySQL APT Respository: 点击Download,跳转到下载页面: MySQL-Download 右键点击 No thanks,just start my download 复制链接 打开debian...

How to Install Python 3.7 on Ubuntu 18.04
Python , Ubuntu / 2019年11月25日

Python is one of the most popular programming languages in the world. With its simple and easy to learn syntax, Python is a great choice for beginners and experienced developers. Python is quite a ver...