- 博客(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关注的人