Linux日常使用命令

🌞端口占用查看

  1. 查看端口占用进程的PID:lsof -i:3000
  2. 杀死PID对应的进程:sudo kill 3000

🌞查看命令相关文件目录

  1. whereis xxx:whereis nginx

🌞使用tldr查看命令帮助

  1. tldr(to long don’t read)
  2. 安装,需要先安装npm,然后直接安装:npm install -g tldr
  3. 使用示例:tldr tar

🌞Centos安装pip提示“Nothing to do”

1
2
3
4
5
6
7
8
9
[root@wfm ~]# yum -y install python-pip
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
base: mirrors.tuna.tsinghua.edu.cn
extras: mirrors.tuna.tsinghua.edu.cn
updates: mirrors.tuna.tsinghua.edu.cn
Setting up Install Process
No package pip available.
Error: Nothing to do
  1. 解决办法:需要先安装扩展源EPEL。

EPEL(http://fedoraproject.org/wiki/EPEL) 是由 Fedora 社区打造,为 RHEL 及衍生发行版如 CentOS、Scientific Linux 等提供高质量软件包的项目。

1
sudo yum -y install epel-release
  1. 然后重新执行安装就可以了。

🌞tree使用出现中文乱码

解决办法,添加参数-N即可,tree -N

🌞新装Centos安装Python3

新装的CentOS 7安装python3

🌞查看端口监听

1
netstat -nat | grep LISTEN

🌞清空Docker运行日志

1
docker inspect 【container name】 | grep LogPath | cut -d ':' -f 2 | cut -d ',' -f 1 | xargs echo | xargs truncate -s 0

🌞vivim编辑文件

打开文件出现提示:

🌞mkdir

mkdir -p /dir/dir/dir 创建多级目录

🌞Docker相关

  1. 一个镜像image包含多个container容器

删除镜像,使用命令docker rmi [image-id],前提是该镜像没有已存在的容器,否则需要先,移除容器docker rm [container-id],然后再进行镜像的

  1. 查看所有容器:docker ps -a,查看正在运行的容器:docker ps

推荐文章