linux笔记

linux查看文件及这个目录大小

du -h

linux查看分区大小

 df -h

设置年月分

 date -s ‘2018-07-28 23:59:57’

输出时间某年某月某日格式

 date -d “yesterday” +%Y-%m-%d

centos更换yum源

备份

 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

下载新的CentOS-Base.repo 到/etc/yum.repos.d/

CentOS 5

    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

CentOS6

    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

CentOS 7

  wget  /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

之后生成缓存

  yum makecache

查看linux 用户

 cat /etc/passwd|grep -v nologin|grep -v halt|grep -v shutdown|awk -F":" '{ print $1"|"$3"|"$4 }'|more

通过端口查所在地址

netstat -lntp
ps -aux|grep pid

远程copy文件
scp aa.txt root@ip:路径 本地copy
scp root@ip:路径文件 路径 远程copy

远程ssh
ssh@用户名@ip
远程 sftp
sftp [email protected] get下载 put上传
get 远程文件路径
put 本地文件路径 远程路径

你可能感兴趣的:(linux笔记)