Linux 下错误集锦(持续更新)

Linux 下错误集锦(持续更新)

前言

记录一些 Linux 中的错误, 供日常参考.

命令行

mlocate 卡住

安装过程卡在 Initializing mlocate database; this may take some time...: 编辑 /etc/updatedb.conf , 将 /mnt 加入 PRUNEPATHS, 然后执行 updatedb

docker 相关

IDEA 无法连接到 docker 上下文

错误 Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? (Details: [2] No such file or directory)

1
2
3
4
5
6
7
8
# 将用户加入 docker 用户组
sudo usermod -G docker siweipancc
# 查询配置表
cat /etc/group| grep docker
# 查看用户组
id -Gn siweipancc
sudo systemctl stop docker
sudo dockerd