版本:CentOS 7 1908 参考文档: https://jingyan.baidu.com/article/aa6a2c14a00ec00d4d19c446.html https://www.cnblogs.com/sxdcgaq8080/p/10076459.html#commentform ...
分类:
其他好文 时间:
2019-10-14 14:54:37
阅读次数:
122
1、使用puppet去安装nginxvinginx.ppclassnginx::install{package{"nginx"ensure=>installed,provider=>yum}}2、shell脚本,九九乘法表vishell.sh#!/bin/basha=1while[$a-le9]dob=1while[$b-le$a]doecho-n-e"$
分类:
其他好文 时间:
2019-03-14 15:07:59
阅读次数:
136
9.26shell脚本语言基本命令脚本:可运行,不需要编译#vi1.sh【编写:i(顶格)或o(换一行)】#!/bin/bash##thisisatestshellscript##Writtenbyyuanting2018-09-26echo"123456789"touchyt.txtdate:wq或:x#ll1.sh#bash1.sh#运行#./1.sh#运行#chmod77
分类:
系统相关 时间:
2018-09-26 19:06:12
阅读次数:
144
安装软件包的三种方法rpm包介绍挂载mount /dev/cdrom /mnt/用法:安装 rpm -ivh rpm升级包 rpm -Uvh rpm卸载 rpm -e 后边直接跟包名字查询安装的包 rpm -qarpm -q 包名,查询指定的包是否安装rpm -qi 查询指定的包信息rpm -ql包名,列出包安装的文件rpm -qf文件绝对路径,查看一个文件是由哪个包安装的yum工具用
分类:
系统相关 时间:
2018-05-25 22:08:09
阅读次数:
218
rpm 软件包管理器 安装编译包好的二进制包 方式 yum (shell 前端包管理器 ) 直接安装二进制包 yum 扩展源 epel (或各大高校 互联网公司 Apache公司) yum 自定义 源 (根据自身业务自制) 不同包的编译安装方式 (未编译好的) ...
分类:
系统相关 时间:
2018-03-30 21:39:57
阅读次数:
158
yum检查安装包是否需要安装,如果已经安装就不再安装,如果没有安装,就安装。
分类:
系统相关 时间:
2018-03-12 00:04:58
阅读次数:
265
[root@m01 tools]# cat nfspeizhi.shcat >>/etc/exports<<EOF /data 172.16.1.0/24(rw,sync)EOF - hosts: 172.16.1.131 #服务端 tasks: - name: yum shell: yum ins ...
分类:
其他好文 时间:
2017-09-08 10:06:48
阅读次数:
740
压缩打包常见的压缩文件windows:rar、zip、7zLinux:.zip、.gz、.bz2、.xz、.tar、.gz、.tar.bz2、.tar.xzgzip压缩工具它压缩后边直接跟文件名就可以命令:gzip-d解压的意思命令gzip-数字表示它的压缩级别,1——9,数字越大越严谨,默认保持的是6级别。命令:file查看解压缩文..
分类:
系统相关 时间:
2017-07-03 01:09:05
阅读次数:
312
以下地址 http://download.csdn.NET/detail/mimi00x/8081263 执行安装命令 rpm -i rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm 如出现 Header V3 DSA/SHA1 Signature, key ID ...
分类:
其他好文 时间:
2017-04-04 00:07:07
阅读次数:
4190
1.同步yum源的脚本#cat/data/yum_repo/rsync_yum_shell/rsync_yumrepo.sh#!/bin/bash#scriptname:rsync_yumrepo.shRsyncBin="/usr/bin/rsync"RsyncPerm=‘-avrt--delete--no-iconv--bwlimit=100000‘Centos_7_base=‘/data/yum_repo/Centos-7/Base/‘Centos_7_epel=‘/data/yum_repo..
分类:
系统相关 时间:
2015-04-02 06:44:51
阅读次数:
309