常用命令

查看docker中容器的ip

docker inspect --format='{{.NetworkSettings.IPAddress}}' php74

hosts文件

# linux
/etc/hosts
# windows
C:/Windows/System32/drivers/etc/

查看开机启动服务进程

# 需要先安装systemdgenie
systemctllist-unit-files --type=service | grep enabled

系统开机启动项目位置

cd /etc/xdg/autostart/

cd  ~/.config/autostart
评论