Debain Ubuntu Install AdGuard Home
其他 / 2019年4月18日

In order to start using AdGuard Home, you need to do a few things: Installation Running for the first time Running as a service How to update Configure your devices Running without superuser (linux on...

如何升级 Debian 8 (Jessie) 到 Debian 9 (Stretch)
Debain / 2019年4月11日

在Debian 8上以root身份登录。  su - 然后使用以下两个命令更新现有软件。 apt update apt upgrade 接下来,我们需要编辑源列表文件换成 Debain9。 mv /etc/apt/sources.list /etc/apt/sources.list.bak touch /etc/apt/sources.list echo "deb http://mirr...

Docker 私有仓库 Nexus3
Docker / 2019年4月3日

1.下载nexus3的镜像: docker pull sonatype/nexus3 2.使用镜像启动一个容器: 将Docker 仓库目录外置于宿主机 也可放置于Docker自定义 开放端口自定义 mkdir /opt/nexus-data chmod 777 /opt/nexus-data docker run -d --name nexus --restart=always -p 5000:5...

ubuntu 16.04 或 18.04 通过修改PPA源 安装 php7.2
PHP , Ubuntu / 2019年4月2日

1、通过修改PPA源的方式来安装 sudo apt-get install python-software-properties sudo add-apt-repository ppa:ondrej/php sudo apt-get update sudo apt-get install -y php7.2 完成后 使用 php -v 查看版本即可 如遇如下报错 : # LC_ALL=C.UTF-...