Debian9安装MySQL
Debain , Mysql / 2019年12月23日

debian下安装软件的指令为apt-get,在使用apt-get安装MySQL之前,需要先下载MySQL官网提供的DEB包,以将MySQL的仓库添加到apt-get的源中,打开网站MySQL APT Respository: 点击Download,跳转到下载页面: MySQL-Download 右键点击 No thanks,just start my download 复制链接 打开debian...

如何升级 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...

Debain 7 安装php5.6 apt-get
Debain / 2016年9月22日

默认Debain7 安装的是 php5.4 , 版本相对有点低了 ; deb http://debian.mirrors.ovh.net/debian/ wheezy main deb-src http://debian.mirrors.ovh.net/debian/ wheezy main deb http://packages.dotdeb.org wheezy all deb-src htt...

Debain7 编译安装 Nginx
Debain , Nginx / 2016年9月22日

Debain 编译安装 Nginx  和 CentOS 下编译 Nginx 没什么差别 , 重点在于与之依赖的包  名称在两个系统中不同 已下述 参数为例 : root@zhongzuzhu:/usr/local/src/nginx-1.8.0# ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_gzi...

Debian7/8安装最新的nginx稳定版本 apt-get
Debain , Nginx / 2016年9月22日

apt-get install nginx 就可以安装nginx,但是这样安装的nginx版本都有些旧,就连最新的Debian 8.0 默认安装的仍然是1.6.2,更别说 Debian 7.0或6.0,那默认安装都是Nginx旧版本的 若想要安装最新的,目前为1.10,除了较麻烦的编译安装外,还可以继续选择包安装,只需要简单更新一下库。 编辑 /etc/apt/sources.list ,添加以下...