美文网首页每日一篇技术文百人计划测试员的那点事
软件测试必备Linux:21天掌握Linux命令 20

软件测试必备Linux:21天掌握Linux命令 20

作者: IDO老徐 | 来源:发表于2020-05-13 23:45 被阅读0次

    第20天作业 ,

    命令:

    clear

    df / du

    ifconfig

    1)查看当前服务器ip

    2)查看当前服务器硬盘空间

    3)查看目录isTester/ 所占用的空间

    4)清空当前终端屏幕

    前一天作业答案参考 ,

    命令: yum & scp

    1)Linux下安装scp命令(假设是centos服务器,命令用yum)

    yum install openssh-clients

    2)从Linux服务器192.168.1.22 拷贝文件 isTester.ini 到你当前操作的服务器

    scp root@192.168.1.22:/root/idoxu/isTester.ini /root/idoxu

    3)从Linux服务器192.168.1.22 拷贝目录 isTester/ 到你当前操作的服务器

    scp -r root@192.168.1.22:/root/idoxu/isTester/ /root/idoxu

    延伸思考:如果是把「当前操作的服务器」的文件拷贝到远程服务器呢 ?

    scp /root/idoxu/isTester.ini root@192.168.1.22:/root/idoxu/

    补充:scp 命令格式

    scp -r local_folder remote_username@remote_ip:remote_folder

    目标:零基础,21天实践,经过3个循环,可彻底搞定日常工作中所需的Linux命令
    发起初衷,及参与地址: https://www.jianshu.com/p/85795a1aaa66
    作者:IDO老徐
    博客 http://isTester.com

    相关文章

      网友评论

        本文标题:软件测试必备Linux:21天掌握Linux命令 20

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