分类: Linux

Linux scp命令用于Linux之间复制文件和目录

2020 年 2 月 20 日 at 上午 8:52分类:Linux

从180服务器上拷贝test文件夹下的内容到本地testTmp文件夹下

命令如下:

scp -r root@127.0.1.180:/data/www/test /data/www/testTmp

 

从180服务器上拷贝index.html文件到本地testTmp/index.html

命令如下:

scp root@127.0.1.180:/data/www/index.html /data/www/testTmp/index.html

 

grep命令几种用法

2019 年 12 月 19 日 at 下午 2:30分类:Linux

1. grep -i “abc” demo.log 搜索出含有”abc”字符串(-i:不区分大小)

2. grep -i -n “abc” demo.log 搜索出含有”abc”字符串(-i:不区分大小,-n:并打印行号)

3. grep -i -n –color “abc” demo.log 搜索出含有”abc”字符串(-i:不区分大小)-n:并打印行号,关键字”abc”颜色标记

4. grep -I -c “abc” demo.log 打印”abc”字符串(不区分大小写)显示的次数

5. grep -I -o “abc” demo.log 打印”abc”字符串(不区分大小写)但不打印整行

6. grep -A5 “abc” demo.tlog 打印”abc”字符串和它上5行的信息

7. grep -B5 “abc” demo.log 打印”abc”字符串和它下5行的信息

8. grep -C5 “abc” demo.log 打印”abc”字符串和它上5行和下5行的信息

9. grep -w “abc” demo.log 精确匹配出”abc”字符串的

10. grep -v “abc” demo.log 匹配出不包含”abc”字符串的行

11. grep -e “abc” -e “def” demo.log 同时匹配”abc”和”def”字符串

centos 系统 对应 openssl 默认版本

2018 年 1 月 23 日 at 下午 4:22分类:Linux

CentOS5.5       OpenSSL 0.9.8e    TLSv1.0

CentOS 6.0      OpenSSL 1.0.1e     TLSv1.1

CentOS 7.0      OpenSSL 1.0.1e     TLSv1.2

CentOS7.2       OpenSSL 1.0.1        TLSv1.2

centos 自动获取IP

2017 年 1 月 19 日 at 上午 10:31分类:Linux

dhclient eth0 自动分配ip给eth0

要让它随系统启动后自动获取需要修改 /etc/sysconfig/network-scripts/ifcfg-eth0

将ONBOOT=”no”改为ONBOOT=”yes”。

centos7防火墙

2016 年 8 月 29 日 at 下午 10:22分类:Linux

CentOS 7.0默认使用的是firewall作为防火墙。
systemctl start firewalld.service          #启动firewall
systemctl stop firewalld.service          #停止firewall
systemctl disable firewalld.service    #禁止firewall开机启动

 

查看Linux版本

more /etc/redhat-release

linux开通账号脚本

2015 年 7 月 24 日 at 下午 3:25分类:Linux

#!/bin/bash

if [ $# == 0 ];then
exit 1;
fi
/usr/sbin/useradd $1
echo “123456″ |/usr/bin/passwd –stdin $1 ;/usr/bin/chage -d 0 $1

统计查看文件夹内的文件个数

2014 年 3 月 12 日 at 下午 3:47分类:Linux

查看当前目录下文件的个数
ls -l | grep “^-” | wc -l

查看当前目录下文件的个数(包括子目录)
ls -lR| grep “^-” | wc -l

nginx服务器host文件路径

2013 年 8 月 26 日 at 下午 5:08分类:Linux

/usr/local/nginx/conf/vhosts

做个记录。