1.手动调整当前主机时间(时区和时间更改)
2.查看系统时间按照'年/月/日 时:分:秒'格式显示并将结果写入time文件。
3.查看主机/etc/下是否存在group文件,是什么类型文件。
4.查看/etc/sysconfig目录文件的属性
5.在root用户的家目下创建file文件,在/pub创建该文件的软连接文件newfile,在/test创建硬链接文件file.lnk
6.在文件中编辑一下内容: Good good study, day day up...
1.
[root@haha ~]# date 050510102000
2000年 05月 05日 星期五 10:10:00 CST
[root@haha ~]# date
2000年 05月 05日 星期五 10:10:05 CST
2.
[root@haha ~]# date >> time0
[root@haha ~]# cat time0
2022年 07月 30日 星期六 17:12:53 CST
2022年 07月 31日 星期日 12:44:28 CST
[root@haha ~]#
3.
[root@haha ~]# ls -l /etc/group
-rw-r--r--. 1 root root 963 5月 8 18:45 /etc/group
4.
[root@haha ~]# stat /etc/sysconfig/
文件:"/etc/sysconfig/"
大小:4096 块:8 IO 块:4096 目录
设备:fd00h/64768d Inode:33598196 硬链接:7
权限:(0755/drwxr-xr-x) Uid:( 0/ root) Gid:( 0/ root)
环境:system_u:object_r:etc_t:s0
最近访问:2022-07-31 12:22:10.182999947 +0800
最近更改:2022-07-31 12:22:10.182999947 +0800
最近改动:2022-07-31 12:22:14.627999808 +0800
创建时间:-
5.
[root@haha ~]# cd /root
[root@haha ~]# touch file
[root@haha ~]# mkdir /pub
[root@haha ~]# ln -s /root/file /pub/newfile
[root@haha ~]#
[root@haha ~]# ll /pub
总用量 0
lrwxrwxrwx. 1 root root 10 7月 31 12:54 newfile -> /root/file
[root@haha ~]# rm -rf /root/file
[root@haha ~]# mkdir /test
[root@haha ~]# touch /root/file
[root@haha ~]# ln /root/file /test/file.lnk
[root@haha ~]# cal file.lnk
cal: illegal year value: use 1-9999: 'file.lnk'
6.
[root@haha ~]# nano
[root@haha ~]# cat file
good good study dayday up