linux知识点0823
2024-08-25 17:00:22 8 举报
AI智能生成
linux
作者其他创作
大纲/内容
打包压缩 tar
创建压缩包
tar zcvf /tmp/etc.tar.gz /etc/ (完整)
tar zcf /tmp/etc.tar.gz /etc/(简)
查看压缩包内容
tar ztvf /tmp/etc.tar.gz(完整)
tar tf /tmp/etc.tar.gz(简)
解压
tar zxvf /tmp/etc.tar.gz(完整)
tar xf /tmp/etc.tar.gz(简)
解压到指定目录
tar xf /tmp/etc.tar.gz -C /opt/
打包压缩zip,gzip
zip
创建压缩包
zip -rq /backup/etc.zip /etc/
解压
unzip etc.zip
解压到指定目录
unzip etc.zip -d /backup/
gzip
注释掉配置文件与管道配置
gzip lidao.txt
压缩
gzip -d lidao.txt.gz
解压
sort + uniq
sort
sort -n 文件
可见内容从低到高,从小到大排序
sort -rn 文件
可见内容从高到低,从大到小排序
sort -rn -k列数 文件
按列排序
sort -t特殊符号
其他字符分割时
uniq
uniq -c
去重
sort+uniq
sort 文件 | uniq -c
对文件内容去重排序
时间管理指令
date
表示年月日
date +%F
date +%Y-%m-%d
表示时分秒
date +%T
date +%H:%M:%S
表示周几
date +%w
(输出0-6显示)
跟描述显式指定日期或时间
date -d ‘ ’ +%
修改时间
date -s ‘ 要修改的时间’
set
set
ntpdate
先安装ntpdate用来同步时间
麒麟等:yum install -y ntpdate
ubt: apt install -y ntpdate
同步时间
ntpdate ntp.aliyun.com
修改时区
查看时区
timedatectl status
timedatectl set-timezone 时区(例:Asia/Shanghai)
0 条评论
下一页
为你推荐
查看更多