Linux基础命令(五)[操作系统入门]

编程

Linux信息显示和搜索文件命令
1、uname 显示系统信息
参数:-a显示所有信息 -v显示内核版本 -n显示主机名称 -p显示处理器类型 -r显示内核发行版本号 -i显示硬件平台 -m显示计算机硬件架构
[[email protected] dir]# uname -a
Linux localhost.localdomain 2.6.32-754.el6.x86_64 #1 SMP Tue Jun 19 21:26:04 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
[[email protected] dir]# uname -r
2.6.32-754.el6.x86_64
[[email protected] dir]# uname -n
localhost.localdomain
[[email protected] dir]# uname -p
x86_64

2、hostname显示主机名 参数 -I 可以显示主机IP地址
[[email protected] dir]# hostname -I
10.1.33.27

3、dmesg 系统启动异常诊断
4、stat 显示文件或文件系统状态
5、du 统计磁盘空间使用情况 -a显示所有文件大小 -h人类可读 -s显示文件总大小
[[email protected] dir]# du -sh /etc
41M /etc

6、date 显示和设置系统时间,-d显示指定字符串所描述的时间,-s设置系统时间
[[email protected] dir]# date +%y
20
[[email protected] dir]# date +%Y
2020
[[email protected] dir]# date +%m
09
[[email protected] dir]# date +%d
08
[[email protected] dir]# date +%H
13
[[email protected] dir]# date +%M
52
[[email protected] dir]# date +%S
17
[[email protected] dir]# date +%F
2020-09-08
[[email protected] dir]# date +%T
13:52:45
[[email protected] dir]# clear
[[email protected] dir]# date +%F -d "-1day"
2020-09-07
[[email protected] dir]# date +%F -d "yesterday"
2020-09-07
[[email protected] dir]# date +%F -d "-2day"
2020-09-06
[[email protected] dir]# date +%F -d "+1day"
2020-09-09
[[email protected] dir]# date +%F -d "tomorrow"
2020-09-09
[[email protected] dir]# date +%F -d "1month"
2020-10-08
[[email protected] dir]# date +%F -d "1year"
2021-09-08

7、echo -n不要自动换行 -e解析转义字符
[[email protected] dir]# echo hello world
hello world
[[email protected] dir]# echo "hello world"
hello world
[[email protected] dir]# echo -e "hello world"
hello world
[[email protected] dir]# echo hi;echo world
hi
world
[[email protected] dir]# echo -n hi;echo world
hiworld
[[email protected] dir]# echo -e "33[32m green color33[0m"
green color
[[email protected] dir]# echo -e "33[34m yellow color33[0m"
yellow color
[[email protected] dir]# echo -e "33[33m yellow color33[0m"
yellow color
背景色范围 40-47 字体颜色范围30-37
[[email protected] dir]# echo -e "33[42;37m 绿地白字33[0m"
绿地白字
[[email protected] dir]# name=zhangsan
[[email protected] dir]# echo $name
zhangsan

8、watch 监视命令执行情况 -n命令执行的间隔时间默认是2s
[[email protected] dir]# watch -n 1 -d netstat -ant
9、which 显示命令的全路径
[[email protected] dir]# which date
/bin/date
[[email protected] dir]# which cp
alias cp=‘cp -i‘
/bin/cp
10、whereis
11、locate 快速定位文件路径,mlocate.db数据库文件,updatedb

Linux基础命令(五)

原文:https://blog.51cto.com/90856/2530167

以上是 Linux基础命令(五)[操作系统入门] 的全部内容, 来源链接: utcz.com/z/519326.html

回到顶部