自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 rsync + inotify实时同步文件

rsync是linux系统下的数据镜像备份工具,支持本地复制,或者与其他SSH、rsync主机同步inotify可以用来监控文件系统操作,如创建、删除、读取、写入等#!/bin/bash## this script is used for sync local files to the rsync server in real time## written by landzf## date: 2021/02/04yum -y install inotify-toolsmkdir -p /et

2021-02-20 11:37:50 99

原创 iptables和firewalld配置NAT服务

外网网卡:ens32 1.2.3.135/24内网网卡(NAT):ens34 2.3.4.254/24ens35 3.4.5.254/24iptables:echo "net.ipv4.ip_forward = 1" >> /etc/sysctl.confsysctl -piptables -Fiptables -P INPUT ACCEPTiptables -P FORWARD ACCEPTiptables -P OUTPUT ACCEPTip...

2021-01-24 00:25:42 214

原创 无人值守自动安装Linux操作系统配置

脚本内容如下#!/bin/bash## Install packagesyum -y install httpd httpd-devel tftp-server xinetd dhcp* syslinux syslinux-develsed -i '/disable/s/yes/no/g' /etc/xinetd.d/tftp## mount source software mirrormount /dev/sr0 /medialn -s /var/lib/tftpboot /mk

2020-06-08 23:38:58 202

原创 docker自动化导入镜像并上传到仓库

脚本内容如下#!/bin/bash## Enter docker image file pathfile_path=your_image_dir## Enter your host iphost_ip=your_ip## Filter docker image filesimage_files=$(ls $file_path |grep .tar)for file in $image_files{ ## Get the json file in docker image fil

2020-06-05 15:40:18 270

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除