
linux
早退的程序员
爱代码,爱自由
展开
-
linux压缩文件和解压文件,一篇就够了
目录 1.前言 2.tar命令:归档 3.gzip和bzip2命令:压缩 4.zip/unzip,rar/unrar,压缩/解压zip和rar文件 5.总结 1.前言 linux在网络上传输文件的时候,通常会先压缩再传输,然后解压。 说到压缩文件,如果是 Windows 用户,那应该对 rar 和 zip 两种格式不陌生。一般在 Windows 下,我们会使用 WinRAR,7-Z...原创 2020-04-03 10:02:44 · 2900 阅读 · 0 评论 -
grep不高亮显示
1.问题:执行grep的时候不高亮高亮显示,如下: 解决方法:grep有个参数 grep --color=auto 我们执行grep --color=auto nano file1 就可以高亮: 为了长久保持高亮,不用输入 --color参数,我们修改一下 ~/.bashrc文件,放心,这是当前用户的bash配置文件,不用担心修改。 加入这一行保存退出,source一下,...原创 2020-03-18 17:07:56 · 793 阅读 · 0 评论 -
linux文件的复制移动删除和链接
内容简介 前言 cp命令和mv命令:复制和移动 rm命令:删除 ln命令:链接 1.前言 rm命令熟练掌握使用,但要慎用,前几天微盟的删库就是一个例子。 2.cp命令和mv命令:拷贝和移动文件 cp:copy的缩写,mv:move的缩写 cp sourcefile targetfile 1)假如我们将 /root/file1 复制到 /root/dir/下,可以执行: c...原创 2020-03-18 09:09:32 · 526 阅读 · 0 评论 -
is not in the sudoers file.This incident will be reported
1>、进入超级用户模式。也就是输入"su -",系统会让你输入超级用户密码,输入密码后就进入了超级用户模式。 2>、添加文件的写权限。也就是输入命令"chmod u+w /etc/sudoers"。 3>、编辑/etc/sudoers文件。也就是输入命令"vim /etc/sudoers",输入"i"进入编辑模式,找到这一行:"root ALL=(ALL) ALL"在原创 2018-08-30 14:22:49 · 467 阅读 · 0 评论 -
java远程连接linux,执行脚本命令
1.maven的POM.xml需要配置包 <dependency> <groupId>ch.ethz.ganymed</groupId> <artifactId>ganymed-ssh2</artifactId> <version>262</version> </depen原创 2018-09-20 16:45:27 · 2579 阅读 · 0 评论 -
su 和su-区别
tomcat部署的时候遇到一个大坑!因为对linux环境不熟悉,所以导致环境变量出错。 Linux中切换用户的命令是su或su -。su命令和su -命令最大的本质区别就是:前者只是切换了root身份,但Shell环境仍然是普通用户的Shell;而后者连用户和Shell环境一起切换成root身份了。只有切换了Shell环境才不会出现PATH环境变量错误。su切换成root用户以后,pwd一下,发...原创 2018-11-01 16:37:16 · 380 阅读 · 0 评论 -
启动Docker 出现Job for docker.service failed because the control process exited with error code. See "错误
在从yum源下载安装完成Docker以后,启动出现 “Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details” 错误 。 试过了删除并重新安装d...转载 2019-05-20 17:42:53 · 354 阅读 · 0 评论