day31 Linux的查找替换,网络相关常用网络命令

查找命令:
~ grep - 搜索字符串(支持正则表达式)
~ find - 搜索文件
-name - 根据名字搜索 - find / -name "*.html"
-size - 根据大小搜索 - -10M / +10M
-type - 根据类型搜索 - d / f / l / s
-atime - 最后访问时间
-mtime - 最后修改时间 - find . -mtime 0
-ctime - 创建时间

网络相关命令:
~ ssh - 安全远程连接 - 例如:ssh [email protected]
~ scp - 安全文件拷贝 - 例如:scp -r /root/code [email protected]:/root/code2
~ sftp - 安全文件传输(file transfer protocol) - 例如:sftp [email protected]
- put - 上传
- get - 下载
- bye - 退出
- help - 查看帮助
~ ping - 检查网络可达性 - ICMP - Internet Control Management Protocol - 网络层
- ttl - time to live
- PING TO DEATH - DDoS - Distributed Deny of Service - 分布式拒绝服务攻击

网络相关命令:
~ ssh - 安全远程连接 - 例如:ssh [email protected]
~ scp - 安全文件拷贝 - 例如:scp -

image.png

远程拷贝到宁外一台服务器后直接重命名

r /root/code [email protected]:/root/code2
~ sftp - 安全文件传输(file transfer protocol) - 例如:sftp [email protected]

  • put - 上传
  • get - 下载
  • bye - 退出
  • help - 查看帮助
    ~ ping - 检查网络可达性 - ICMP - Internet Control Management Protocol - 网络层
  • ttl - time to live
  • PING TO DEATH - DDoS - Distributed Deny of Service - 分布式拒绝服务攻击
    ~ ifconfig / ip
  • 127.0.0.1 - 回环地址 - localhost
    ~ netstat
  • netstat -nap | grep 进程或者端口
    ~ p - process - 查看进程信息(进程编号和进程名字)

~ kill 进程号

启动停止重启服务:
service nginx start

systemctl start nginx
systemctl stop nginx
systemctl restart nginx
systemctl status nginx
systemctl enable nginx
systemctl disable nginx

www.baidu.com --- DNS --->
14.215.177.38

进程操作相关命令:
~ ps - processes
~ kill
~ jobs
~ fg / bg - foreground / background
~ top

例子1:


image.png

例子2:

你可能感兴趣的:(day31 Linux的查找替换,网络相关常用网络命令)