当前位置:网站首页>RHCSA第二天
RHCSA第二天
2022-08-02 03:16:00 【m0_54803732】
如有错误,敬请谅解!
此文章仅为本人学习笔记,仅供参考,如有冒犯,请联系作者删除!!!
1.手动调整当前主机时间(时区和时间更改)
2.查看系统时间按照年/月/日 时:分:秒格式显示并将结果写入time文件。
3.查看主机/etc/下是否存在group文件,是什么类型文件。
4.查看/etc/sysconfig目录文件的属性
5.在root用户的家目下创建file文件,在/oub创建该文件的软连接文件newfile在/test创建硬链接文件filenk
6.在文件中编辑一下内容: Good good study day day up...
问题1.手动调整当前主机时间(时区和时间更改)
[[email protected] ~]# timedatectl set-timezone Asia/Shanghai
[[email protected] ~]# timedatectl set-time 2001-11-29
[[email protected] ~]# date
Thu Nov 29 00:00:04 CST 2001
问题2.查看系统时间按照年/月/日 时:分:秒格式显示并将结果写入time文件。
[[email protected] ~]# date "+%y-%m-%d %h:%M:%S" >file
[[email protected] ~]# cat file
22-08-01 Aug:29:58
问题3.查看主机/etc/下是否存在group文件,是什么类型文件。
[[email protected] Desktop]# ll /etc/group
-rw-r--r--. 1 root root 988 Jul 28 22:32 /etc/group
如图可知文件类型以-开头,所以为普通文件
问题4.查看/etc/sysconfig目录文件的属性
[[email protected] Desktop]# ll -d /etc/sysconfig
drwxr-xr-x. 5 root root 4096 Jul 28 22:32 /etc/sysconfig
问题5.在root用户的家目下创建file文件,在/oub创建该文件的软连接文件newfile在/test创建硬链接文件filenk
[[email protected] Desktop]# cd /home
[[email protected] home]# touch file
[[email protected] ~]# mkdir /oub
[[email protected] ~]# ln -s /home/file /oub/newfile
[[email protected] ~]# ll /oub
total 0
lrwxrwxrwx. 1 root root 10 Aug 1 14:21 newfile -> /home/file
[[email protected] ~]# ln /home/file /test/filenk
问题6.在文件中编辑一下内容: Good good study day day up...
[[email protected] Desktop]# echo good good study day day up >file2
[[email protected] Desktop]# cat file2
good good study day day up
边栏推荐
猜你喜欢
随机推荐
线性代数学习笔记3-3:逆矩阵的理解
MySql中的like和in走不走索引
TRICK第二弹
Good Key, Bad Key (思维,临项交换,经典方法)
聊聊flink的BoundedOutOfOrdernessTimestampExtractor
Common SQL interview questions: 50 classic examples
浏览器的工作原理(dns域名服务器,tcp握手,ssl/tls安全协议,关键渲染路径,重绘及回流,防抖和节流)
Reasons and solutions for Invalid bound statement (not found)
[LeetCode] 83. Delete duplicate elements in the sorted list
5. Hezhou Air32F103_LCD_key
MySQL8.0.26安装配置教程(windows 64位)
day11--shell脚本
Foundry教程:使用多种方式编写可升级的智能代理合约(下)
5.nodejs--跨域、CORS、JSONP 、Proxy
mysql8.0.28 download and installation detailed tutorial, suitable for win11
基于可逆网络的单一图像超分辨率
分布式事务解决方案模型
构造方法、方法重载、全局变量与局部变量
Istio微服务治理网格的全方面可视化监控(微服务架构展示、资源监控、流量监控、链路监控)
Day34 LeetCode