美文网首页
常用linux命令

常用linux命令

作者: 施天助 | 来源:发表于2019-02-11 18:30 被阅读0次
    1. 下载

    wget https://pypi.python.org/packages/source/p/pip/pip-1.3.1.tar.gz --no-check-certificate
    https协议要在wget url后面加上--no-check-certificate

    1. curl 访问网页是否404

    2. tar -xvzf 解压缩tar包, 对于zip包要:unzip -fo 微信.zip -d demowx
      unzip -fo foo ReadMe => quietly replace existing ReadMe if archive file newer
      unzip -p foo | more => send contents of foo.zip via pipe into program more
      https://blog.csdn.net/qq_35399846/article/details/70168002

    3.1 把/home目录下面的mydata目录压缩为mydata.zip
    zip -r mydata.zip mydata #压缩mydata目录

    1. 不用每次进入命令都要重新source /etc/profile 才能生效
      4.1 可以放在/.bashrc里面。或者在/.bashrc里面加一句source /etc/profile
      4.2 可以把这几条命令写在 /etc/bash 里面 就会自动执行了

    2. 查看端口是否监听状态,运行状态
      netstat -ntulp |grep 80 用于查看指定的端口号的进程情况
      centos7开放及查看端口

    3. 查看启动服务的pid
      ps -ef | grep nodeos //查找nodeos pid

    4. 查看系统信息 cat /etc/os-release

    5. 查看文件大小
      ls -lh

    6. 查找文件
      Ubuntu文件查找命令集合
      find / -name "xxx"

    相关文章

      网友评论

          本文标题:常用linux命令

          本文链接:https://www.haomeiwen.com/subject/zjtceqtx.html