zoukankan      html  css  js  c++  java
  • linux基本命令的操作

    ---恢复内容开始---

    ----------------------------=========================文件与目录操作
    cd /home 进入’/homw’目录
    cd … 返回上一级
    cd …/… 返回上两级
    cd - 返回上次所在目录
    cd ~ 返回登录用户目录
    cp file1 file2 将file1复制为file2
    cp -a dir1 dir2 复制一个目录
    cp -a /tmp/dir1 . 复制一个目录到当前目录
    ls 查看目录中的文件
    ls -a 查看隐藏文件
    ls -l 显示详细信息
    ls -lrt 按时间显示文件(l表示详细列表)
    pwd 显示工作路劲
    mkdir dir1 创建dir1目录
    mkdir dir1 dir2 同时创建两个目录
    mkdir -p /tmp/dir1/dir2 创建一个目录树
    mv dir1 dir2 移动/重命名一个目录
    rm -f file1 删除file1
    rm -rf dir1 删除dir1目录及其子目录内容

    ----------------------------=========================查看文件内容
    cat file1 查看文件内容
    head 2 file1 查看一个文件的前两行
    more file1 查看一个长文件的内容
    tac file1 从最后一行开始反向查看一个文件的内容
    tail -f 3 file1 追踪查看一个文件的最后三行
    vi file 打开并浏览文件(i 进入编辑模式,Esc 退出编辑模式,:w保存当前修改,:q不保存退出vi,:wq保存并退出vi)

    ----------------------------=========================文本内容处理
    grep str /tmp/test 在文件/tmp/test中查找str内容
    grep ^str /tmp/test 在文件/tmp/test中查找以str开始的行
    grep [0-9] /tmp/test 查找/tmp/test文件中所有包含数字的行
    grep str -r /tmp/* 在目录/tmp及其子目录中查找str内容
    diff file1 file2 找出两个文件的不同处
    sdiff file1 file2 以对比的方式显示出两个文件的不同

    ----------------------------=========================压缩、解压
    bzip2 file1 压缩file1
    bunzip2 file1.bz2 解压file1.bz2
    gzip file1 压缩file1
    gzip -9 file1 最大程度压缩file1
    gunzip file1.gz 解压file1.gz
    tar -cvf archive.tar file1 将file1打包成archive.tar(-c:建立压缩档案;-v:显示所有过程;-f:使用档案名字是必须的并且是最后一个参数)
    tar -cvf archive.tar file1 dir1 将file1,dir1打包成archive.tar
    tar -tf archive.tar 显示一个包中的内容
    tar -xvf archive.tar 释放一个包
    tar -xvf archive.tar -C /tmp 把压缩包释放到/tmp目录下(-C:指定目录)
    zip file1.zip 建立一个zip格式的压缩包
    zip -r file1.zip file1 dir1 将目录和文件压缩成一个zip格式的压缩包
    unzip file1.zip 解压一个zip格式的压缩包到当前目录
    unzip test.zip -d /tmp/ 解压一个zip格式的压缩包到/tmp目录(-d:指定目录)

    ----------------------------=========================yum安装器
    yum -y install [package] 下载并安装一个rpm包
    yum localinstall [package] 安装一个rpm包,使用你自己的软件仓库解决所有依赖关系
    yum -y update 更新当前系统中安装的所有rpm包
    yum update [package] 更新一个rpm包
    yum remove [package] 删除一个rpm包
    yum list 列出当前系统中安装的所有rpm包
    yum search [package] 在rpm仓库中搜寻软件包
    yum clean [package] 清除缓存目录(/var/cache/yum)下的软件包
    yum clean headers 删除所有头文件
    yum clean all 删除所有的包和头文件
    rpm -qa | grep str 查询存在的安装包(str为需要查询的字符串)
    rpm -e --nodes [package] 卸载安装包

    ----------------------------=========================网络相关
    ifconfig eth0 显示一个以太网卡的配置
    ifdown eth0 禁用eth0网络设备
    ifup eth0 启用eth0网络设备
    ip addr show 显示网卡的ip地址

    ----------------------------=========================系统相关
    su- 切换到root权限(和su有区别)
    shutdown -h now 关机
    showdown -r now 重启
    reboot 重启
    top 罗列出使用CPU资源最多的linux任务(输入q退出)
    pstree 以树状图显示程序
    man [command] 查看参考手册(列如:man ping ,查看ping命令)
    passwd 修改密码
    df -h 显示磁盘的使用情况
    cal -3 显示日历(-3:显示前一个月,当前月,下一个月的日历)
    cal 10 1988 显示指定月,年的日历
    date 显示时间

    ----------------------------=========================XShell5相关操作
    ctrl + u 删除光标之前到行首的字母
    ctrl + k 删除光标之前到行尾的字母
    ctrl + c 取消当前行输入的命令,相当于ctrl + PauseBreak
    ctrl + l 清屏,相当于执行clear命令
    ctrl + r 显示:提示,根据用户输入查找相关历史命令

    ps -ef | grep [进程内容] 按内容查看进程
    kill [pid] 用进程id杀掉进程
    netstat -tlnp | grep [查找内容] 查看端口使用情况或根据查找内容查看

  • 相关阅读:
    49. 字母异位词分组
    73. 矩阵置零
    Razor语法问题(foreach里面嵌套if)
    多线程问题
    Get json formatted string from web by sending HttpWebRequest and then deserialize it to get needed data
    How to execute tons of tasks parallelly with TPL method?
    How to sort the dictionary by the value field
    How to customize the console applicaton
    What is the difference for delete/truncate/drop
    How to call C/C++ sytle function from C# solution?
  • 原文地址:https://www.cnblogs.com/7Ezreal/p/11202396.html
Copyright © 2011-2022 走看看