美文网首页
【CentOS基础篇】之基础命令

【CentOS基础篇】之基础命令

作者: Yi_Feng | 来源:发表于2017-07-23 22:54 被阅读0次
    命令是针对linux发布操作指令的直接方式。基础的扎实稳固,从对命令的了解和熟练使用开始,基础不牢,地动山腰,运维基础,从记好命令开始

    rm -rf / 删除" / "根文件,系统崩溃,新手谨记,慎重

    cd 打开/进入文件夹

    [root@yifeng ~]#cd te [root@yifeng te]#

    cd - 回到上一级目录

    [root@yifeng te]#cd - /root [root@yifeng ~]#

    ls:列举指定目录或文件的相关信息

    [root@yifeng ~]#ls anaconda-ks.cfg Documents Music Pictures te test dead.letter Downloads mydoc Public te2 Videos Desktop initial-setup-ks.cfg mytest tar.doc Templates

    ls -a 列举当前目录或者指定目录下的所有文件

    [root@yifeng ~]#ls -a . .bashrc Desktop .local tar.doc Videos .. .cache Documents Music .tcshrc .viminfo anaconda-ks.cfg .config Downloads mydoc te .bash_history .cshrc .esd_auth mytest te2 .bash_logout .dbus .ICEauthority Pictures Templates .bash_profile dead.letter initial-setup-ks.cfg Public test

    ls -l == ll 列举当前目录或指定目录中文件或者子目录的详细信息

    [root@yifeng ~]#ll total 20 -rw-------. 1 root root 1949 Jul 18 14:51 anaconda-ks.cfg -rw-------. 1 root root 28 Jul 22 16:24 dead.letter drwxr-xr-x. 2 root root 6 Jul 18 14:54 Desktop drwxr-xr-x. 2 root root 6 Jul 18 14:54 Documents drwxr-xr-x. 2 root root 6 Jul 18 14:54 Downloads -rw-r--r--. 1 root root 1997 Jul 18 14:53 initial-setup-ks.cfg drwxr-xr-x. 2 root root 6 Jul 18 14:54 Music -rw-------. 1 root root 1949 Jul 22 20:14 mydoc drwxr-xr-x. 2 root root 58 Jul 22 19:35 mytest drwxr-xr-x. 2 root root 6 Jul 18 14:54 Pictures drwxr-xr-x. 2 root root 6 Jul 18 14:54 Public -rw-r--r--. 1 root root 179 Jul 22 19:41 tar.doc drwxr-xr-x. 2 root root 59 Jul 22 20:11 te drwxr-xr-x. 2 root root 59 Jul 22 20:10 te2 drwxr-xr-x. 2 root root 6 Jul 18 14:54 Templates drwxr-xr-x. 3 root root 46 Jul 22 19:52 test drwxr-xr-x. 2 root root 6 Jul 18 14:54 Videos

    cat 查看文档

    [root@yifeng te]#cat 2.pdf hello CentOS7

    nano 字符界面编辑文档

    GNU nano 2.3.1 File: 3.pdf Modified hi linux

    df 查看挂载

    [root@yifeng te]#df Filesystem 1K-blocks Used Available Use% Mounted on /dev/sda2 51175000 4729648 46445352 10% / devtmpfs 918968 0 918968 0% /dev tmpfs 933644 144 933500 1% /dev/shm tmpfs 933644 9168 924476 1% /run tmpfs 933644 0 933644 0% /sys/fs/cgroup /dev/sda3 40940000 32944 40907056 1% /app /dev/sda1 1020580 172132 848448 17% /boot tmpfs 186732 28 186704 1% /run/user/0 /dev/sr0 8086368 8086368 0 100% /run/media/root/CentOS 7 x86_64

    rpm 安装软件包

    [root@yifeng te]#rpm -ivh /run/media/root/CentOS\ 7\ x86_64/Packages/screen-4.1.0-0.23.20120314git3c2946.el7_2.x86_64.rpm

    cp 复制文件

    [root@yifeng te]#cp 2.pdf ../te2 cp: overwrite ‘../te2/2.pdf’? y

    mv 移动文件

    [root@yifeng te]#mv 3.pdf ../te2 mv: overwrite ‘../te2/3.pdf’? y

    mkdir 创建文件夹

    [root@yifeng te]#mkdir abc [root@yifeng te]#ll total 36 -rw-r--r--. 1 root root 20480 Jul 22 20:10 1.pdf -rw-r--r--. 1 root root 14 Jul 23 22:34 2.pdf drwxr-xr-x. 2 root root 6 Jul 23 22:47 abc -rw-r--r--. 1 root root 10240 Jul 22 20:09 my.tar

    rmdir 删除文件夹

    [root@yifeng te]#rmdir abc [root@yifeng te]#ll total 36 -rw-r--r--. 1 root root 20480 Jul 22 20:10 1.pdf -rw-r--r--. 1 root root 14 Jul 23 22:34 2.pdf -rw-r--r--. 1 root root 10240 Jul 22 20:09 my.tar

    相关文章

      网友评论

          本文标题:【CentOS基础篇】之基础命令

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