万字肝货 | 超全总结,Linux常用磁盘命令、文件命令!(二)

简介: 万字肝货 | 超全总结,Linux常用磁盘命令、文件命令!(二)

7、终端和常用命令

1)终端:提供用户与内核交互工具。

image.png


2)Linux中【命令的格式】

image.png


3)命令的使用举例

[root@image_boundary ~]# ls -l anaconda-ks.cfg
-rw------- 1 root root 1598 Sep 17 15:57 anaconda-ks.cfg

4)常见的命令

image.png

为大家奉上 linux命令大全 宝贝网站:http://man.linuxde.net/


8、磁盘命令

1)cd命令:目录切换

cd     相对路径/绝对路径。利用相对路径或绝对路径,切换到某个目录之下; 
cd .   表示当前路径;    
cd ..  返回上一层目录;
cd ~   若为root用户,就是切换到root用户的家目录【/root】;
       若为普通用户,就是切换到普通用户的家目录【/home/普通用户名】;
cd /   直接返回到"/"根目录;
cd -   返回上一次操作目录;"(这个很好用)"


操作如下:


[root@image_boundary ~]# cd /
[root@image_boundary /]# cd home
[root@image_boundary home]# cd ../usr
[root@image_boundary usr]# cd -
/home
[root@image_boundary home]# cd ..
[root@image_boundary /]# pwd
/
[root@image_boundary ~]# su hadoop
[hadoop@image_boundary root]$ cd ~
[hadoop@image_boundary ~]$ pwd
/home/hadoop


2)pwd:显示当前工作目录

[root@image_boundary /]# pwd
/
[root@image_boundary /]# cd ~
[root@image_boundary ~]# pwd
/root
[hadoop@image_boundary ~]$ pwd
/home/hadoop


3)ls命令:查看目录内容

-l:展示详细信息


-a:查看隐藏内容。(显示以.开头的那些文件)


-A:查看隐藏文件。(显示.开头的那些文件,与a不同的是不显示.和…)。“注意:.表示当前文件夹 …表示上一级文件夹”


-h:友好的方式展示(文件以K、M…结尾)


-R:递归展示所有文件。


常用组合操作:ls -l 可以简化为ll。ll -h 显示文件的具体信息,并以友好的方式展示。


操作如下:


[root@image_boundary ~]# ls -l       可以写成ll
total 108
-rw-r--r--. 1 root root     9 Sep 17 19:10 aa.txt~
-rw-------. 1 root root  1598 Sep 17 15:57 anaconda-ks.cfg
[root@image_boundary ~]# ls -lh      可以写成ll -h
total 108K
-rw-r--r--. 1 root root    9 Sep 17 19:10 aa.txt~
-rw-------. 1 root root 1.6K Sep 17 15:57 anaconda-ks.cfg


4)du命令:查看每个文件和目录的磁盘使用空间。(目前不知道怎么用)

-a:展示所有内容

-h:友好方式展示

-s:统计所有文件所占用空间总的大小

du -h:会递归显示当前文件夹及其子文件夹的占用空间大小。

du -h a.txt:会显示指定文件a.txt的占用空间大小。

du -h aa:会显示指定文件夹aa的占用空间大小。

du -sh:会显示当前文件夹下,所以文件的占用空间大小

操作如下:


[root@image_boundary Desktop]# ll
total 8
drwxr-xr-x. 2 root root 4096 Oct 15 20:02 aa
drwxr-xr-x. 2 root root 4096 Oct 15 20:05 bb
[root@image_boundary Desktop]# du -sh
28K .


5)df命令:查看磁盘使用率

-h:友好方式展示

-a:显示全部的文件系统;

注意:“df -h用于显示磁盘空间的使用情况,以及剩余的磁盘空间大小。”

操作如下:


[root@image_boundary Desktop]# df -h
文件系统               容量  已用  可用  已用%  挂载点
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/vg_image-lv_root
                       35G  3.6G   30G  11% /
tmpfs                 931M  296K  931M   1% /dev/shm
/dev/sda1             477M   42M  411M  10% /boot
/dev/sr0              3.7G  3.7G     0 100% /media/CentOS_6.9_Final


9、文件命令

1)mkdir:创建目录

-p:递归创建目录

操作如下:


[root@image_boundary Desktop]# ll
total 8
drwxr-xr-x. 2 root root 4096 Oct 15 20:02 aa
drwxr-xr-x. 2 root root 4096 Oct 15 20:05 bb
[root@image_boundary Desktop]# mkdir cc
[root@image_boundary Desktop]# ll
total 12
drwxr-xr-x. 2 root root 4096 Oct 15 20:02 aa
drwxr-xr-x. 2 root root 4096 Oct 15 20:05 bb
drwxr-xr-x. 2 root root 4096 Oct 15 20:21 cc
# 不写-p会报错。
[root@image_boundary Desktop]# mkdir dd/ee     
mkdir: cannot create directory `dd/ee': No such file or directory
# 参数-p表示递归产生一个目录。
# 创建一个递归目录dd/ee。
[root@image_boundary Desktop]# mkdir -p dd/ee
[root@image_boundary Desktop]# cd dd
[root@image_boundary dd]# ll
total 4
drwxr-xr-x. 2 root root 4096 Oct 15 20:22 ee


2)touch:创建文件

[root@image_boundary Desktop]# ll
total 16
drwxr-xr-x. 2 root root 4096 Oct 15 20:02 aa
drwxr-xr-x. 2 root root 4096 Oct 15 20:05 bb
drwxr-xr-x. 2 root root 4096 Oct 15 20:21 cc
drwxr-xr-x. 3 root root 4096 Oct 15 20:22 dd
[root@image_boundary Desktop]# cd cc
[root@image_boundary cc]# ll
total 0
[root@image_boundary cc]# touch sum.txt
[root@image_boundary cc]# ll
total 4
-rw-r--r--. 1 root root 0 Oct 15 20:28 sum.txt

3)file:查看文件类型

-b:不显示文件名,只显示文件类型。

操作如下:


"file 文件名:可以显示其到底是一个文件,还是一个目录"
[root@image_boundary ~]$ file aa
aa: directory
[root@image_boundary cc]# ll
total 0
-rw-r--r--. 1 root root 0 Oct 15 20:28 sum.txt
"查看当前文件夹的类型(这里指的就是cc):文件夹"
[root@image_boundary cc]# file .      
.: directory    
"如果sum.txt中没有内容,显示empty"
[root@image_boundary cc]# file sum.txt   
./sum.txt: empty
"如果sum.txt中有内容,显示sum.txt的文件类型"
[root@image_boundary cc]# file sum.txt  
./sum.txt: ASCII text
[root@image_boundary cc]# file -b sum.txt
ASCII text


4)rmdir:删除空目录

-p:递归删除空目录

操作如下:

"注意以下两个命令的区别"
rmdir dd/ee/ff      表示删除dd下面ee下面的这一个空目录ff。
rmdir -p dd/ee/ff   表示同时递归删除dd/ee/ff这3个目录。


5)rm:删除文件或目录

rm 文件名

-i:询问。(这个是默认情况,不写就是表示要询问)

-r:递归删除。

-f:强制删除(不提示删除)。

“下面这条命令:慎用!!!除非真的知道你在干嘛。”

rm -rf 目录/文件

操作如下:


[root@image_boundary bb]# ll
total 12
-rw-r--r--. 1 root root 149 Oct 15 20:00 a.txt
-rw-r--r--. 1 root root  95 Oct 15 20:02 b.txt
-rw-r--r--. 1 root root 138 Oct 15 20:02 c.txt
[root@image_boundary bb]# rm a.txt
rm: remove regular file `a.txt'? n
[root@image_boundary bb]# ll
total 12
-rw-r--r--. 1 root root 149 Oct 15 20:00 a.txt
-rw-r--r--. 1 root root  95 Oct 15 20:02 b.txt
-rw-r--r--. 1 root root 138 Oct 15 20:02 c.txt
[root@image_boundary bb]# rm a.txt 
rm: remove regular file `a.txt'? y
[root@image_boundary bb]# ll
total 8
-rw-r--r--. 1 root root  95 Oct 15 20:02 b.txt
-rw-r--r--. 1 root root 138 Oct 15 20:02 c.txt
"rm -rf bb会删除bb目录下所有的目录和文件,问都不问,毫不留情。一定不要轻易使用该命令"
[root@image_boundary Desktop]# ll
total 8
drwxr-xr-x. 2 root root 4096 Oct 15 20:53 bb
drwxr-xr-x. 2 root root 4096 Oct 15 20:30 cc
[root@image_boundary Desktop]# rm -rf bb
[root@image_boundary Desktop]# ll
total 4
drwxr-xr-x. 2 root root 4096 Oct 15 20:30 cc



相关文章
|
2月前
|
Linux 应用服务中间件 Shell
二、Linux文本处理与文件操作核心命令
熟悉了Linux的基本“行走”后,就该拿起真正的“工具”干活了。用grep这个“放大镜”在文件里搜索内容,用find这个“探测器”在系统中寻找文件,再用tar把东西打包带走。最关键的是要学会使用管道符|,它像一条流水线,能把这些命令串联起来,让简单工具组合出强大的功能,比如 ps -ef | grep 'nginx' 就能快速找出nginx进程。
330 1
二、Linux文本处理与文件操作核心命令
|
2月前
|
Linux
linux命令—stat
`stat` 是 Linux 系统中用于查看文件或文件系统详细状态信息的命令。相比 `ls -l`,它提供更全面的信息,包括文件大小、权限、所有者、时间戳(最后访问、修改、状态变更时间)、inode 号、设备信息等。其常用选项包括 `-f` 查看文件系统状态、`-t` 以简洁格式输出、`-L` 跟踪符号链接,以及 `-c` 或 `--format` 自定义输出格式。通过这些选项,用户可以灵活获取所需信息,适用于系统调试、权限检查、磁盘管理等场景。
248 137
|
2月前
|
安全 Ubuntu Unix
一、初识 Linux 与基本命令
玩转Linux命令行,就像探索一座新城市。首先要熟悉它的“地图”,也就是/根目录下/etc(放配置)、/home(住家)这些核心区域。然后掌握几个“生存口令”:用ls看周围,cd去别处,mkdir建新房,cp/mv搬东西,再用cat或tail看文件内容。最后,别忘了随时按Tab键,它能帮你自动补全命令和路径,是提高效率的第一神器。
573 57
|
28天前
|
存储 安全 Linux
Linux卡在emergency mode怎么办?xfs_repair 命令轻松解决
Linux虚拟机遇紧急模式?别慌!多因磁盘挂载失败。本文教你通过日志定位问题,用`xfs_repair`等工具修复文件系统,三步快速恢复。掌握查日志、修磁盘、验重启,轻松应对紧急模式,保障系统稳定运行。
246 2
|
2月前
|
缓存 监控 Linux
Linux内存问题排查命令详解
Linux服务器卡顿?可能是内存问题。掌握free、vmstat、sar三大命令,快速排查内存使用情况。free查看实时内存,vmstat诊断系统整体性能瓶颈,sar实现长期监控,三者结合,高效定位并解决内存问题。
134 0
Linux内存问题排查命令详解
|
2月前
|
Unix Linux 程序员
Linux文本搜索工具grep命令使用指南
以上就是对Linux环境下强大工具 `grep` 的基础到进阶功能介绍。它不仅能够执行简单文字查询任务还能够处理复杂文字处理任务,并且支持强大而灵活地正则表达规范来增加查询精度与效率。无论您是程序员、数据分析师还是系统管理员,在日常工作中熟练运用该命令都将极大提升您处理和分析数据效率。
179 16
|
3月前
|
Linux 网络安全 开发工具
技术栈:这50条最常用的 Linux 命令你一定要会!
建议多在终端中实践,遇到不懂的命令就用 man 或 --help 了解详情!
466 0
|
3月前
|
安全 Linux Shell
Linux系统中sudo命令的高效运用技巧。
用户可以通过sudo -l来列出自己目前可执行的命令列表,这有助于用户了解自己的权限范围。
143 0
|
3月前
|
监控 Linux Shell
linux命令
常用 Linux 命令汇总
|
4月前
|
Linux C++
每天一个linux命令(8):cp 命令
cp 命令是 Linux 中用于复制文件或目录的命令。它的名字来源于英文单词 copy。这个命令非常常用,特别是在需要备份文件或创建文件副本时。
191 0