1.通过软件使用ssh远程登陆虚拟机
ssh root@192.168.168.128
之后输入root密码
2.
3.
[root@csa ~]# vim /tmp/newfile
再输入:w---保存
[root@csa ~]# date
2023年 03月 28日 星期二 19:29:22 CST
[root@csa ~]# ll /tmp/newfile
-rw-r--r--. 1 root root 0 3月 28 19:31 /tmp/newfile
[root@csa ~]# date > /tmp/newfile---将date输出重定向到newfile
[root@csa ~]# ll /tmp/newfile
-rw-r--r--. 1 root root 43 3月 28 19:33 /tmp/newfile
[root@csa ~]# cat /tmp/newfile
2023年 03月 28日 星期二 19:33:10 CST
[root@csa ~]# vim /tmp/newfile
(将光标移动到第一排末行)
:r /boot/grub2/grub.cfg---将文档读入到newfile
:g/#/d---将带#的行删掉
:set nu---显示行号
:set cursorline---设置光标