当前位置:网站首页>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
边栏推荐
猜你喜欢
随机推荐
[Remote Control Development Basic Tutorial 3] Crazy Shell Open Source Formation UAV-ADC (Joystick Control)
PHP WebSehll backdoor script and detection tool
STL entry basics map and set containers
CV-Model【4】:MobileNet v3
支付通道对接常见的问题有哪些?
JunitTest单元测试
Freeswitch操作基本配置
7-43 字符串关键字的散列映射 (25 分) 谜之测试点
(转帖)HashCode总结(2)
Go语学习笔记 - gorm使用 - 表增删改查 Web框架Gin(八)
IPIDEA的使用方式
一种基于行为空间的回声状态网络参数优化方法
Webshell upload method
DOM destruction and reproduction experiment
聊聊flink的BoundedOutOfOrdernessTimestampExtractor
什么是轮式里程计
SSM网上商城购物系统(前台+后台)
mysql8.0.28下载和安装详细教程,适配win11
LeetCode:1161. 最大层内元素和【BFS层序遍历】
#{}和${}的区别