
LINUX
无聊的白色大米饭
RPA
AI
展开
-
-bash: man: command not found
在输入man命令的时候出现-bash: man: command not found[root@linux ~]# man 5 passwd-bash: man: command not found经过前面的经验,认为可能是没有安装,为了证实猜测去百度了一下,百度给出的解释有两种:(1)没安装man;(2)path环境变量没配置,我选择一个一个试[root@linux ~]# yum install man已加载插件:fastestmirror设置安装进程Loading mirror s原创 2021-05-03 18:34:28 · 2675 阅读 · 0 评论 -
systemctl: command not found
systemctl: command not found//安装完之后[root@linux ~]# yum -y install httpd//启动时输入命令显示找不到systemmctl[root@linux ~]# systemctl start httpd-bash: systemctl: command not found百度一番之后发现centos 使用 service 命令替代systemctl//用service 替换systemctl 重新启动[root@linux原创 2021-05-03 17:03:33 · 39576 阅读 · 0 评论 -
Vim终端编辑器工具(下)
Vim使用技巧:可以大大提高开发效率1、打开文件vim filename — 打开文件,并将光标定位到文件开头(1)若文件已存在,则直接打开(2)若文件不存在,则新建文件(不做修改的文件不会被创建)vim filename + n — 打开文件,将光标定位在文件第n行(命令带'+')vim filename + —打开文件,并将光标定位在文件末尾(+后面什么都不写,光标定位在最后一行)2、光标定位(必须是按完esc,退出插入模式才有效)gg: 首行GG:尾行ngg: 第n行原创 2021-02-18 01:00:49 · 221 阅读 · 0 评论 -
VIM终端编辑工具(上)2021-02-17
linux初学者的学习历程--攀登者原创 2021-02-17 16:21:51 · 2087 阅读 · 5 评论