据了解,php7是比之前的版本性能快很多的.http://php.net/get/php-7.2.2.tar.gz/from/a/mirror 安装前也可提前将相关依赖库安装好,或者在安装php时若安装失败,按照提示安装好所需要的依赖库即可. 安装Php apt-get 一键安装 1 sudo apt-get update 2 sudo apt-get install php 手动编译安装 1 # 下载最新版本 2 wget http://php.net/distributions/php-7.…
title: Ubuntu下使用Deepin-wine的移植版安装qq微信等 toc: false date: 2018-09-18 16:12:49 categories: methods tags: ubuntu 下载Deepin-wine的Ubuntu移植版: git clone https://gitee.com/wszqkzqk/deepin-wine-for-ubuntu.git 进入 deepin-wine-for-ubuntu/文件夹 在终端内运行./install.sh 这样就…
Linux下安装php环境并且配置Nginx支持php-fpm模块 http://www.cnblogs.com/freeweb/p/5425554.html 5分钟搭建 nginx +php --------------(LNMP)新手专用 http://blog.csdn.net/dyllove98/article/details/41120789 配置Nginx来支持php http://www.cnblogs.com/jecyhw/p/5504855.html nginx+php的配置与…
首先建立存放网页文件的目录,执行 mkdri /usr/local/server/www  然后进入到该目录中 cd /usr/local/server/www 然后创建一个测试文件: phpinfo.php   然后,开始配置Nginx,进入 /usr/local/server/nginx/conf 将nginx.conf 复制一份命名为:nginx.conf.rxbak   然后修改 nginx.conf: index  index.html index.htm; 改为: index  in…
添加nginx 默认主页index.php vim .../etc/nginx/conf.d/default.conf location / { root   /usr/share/nginx/html; index  index.html index.htm index.php; } 配置nginx支持php vim /etc/nginx/conf.d/default.conf # pass the PHP scripts to FastCGI server listening on 127.…
1.安装nginx sudo apt-get install nginx # 安装 sudo vim /etc/nginx/sites-enabled/default # 修改配置文件 sudo nginx -t # 检查配置文件 sudo service nginx restart sudo /etc/init.d/nginx restart # nginx 配置文件 listen 80 default_server; root /var/www; # Add index.php to the…
粘贴自:https://www.jianshu.com/p/a6a0d2a29591 1.Apache的安装: $ sudo apt-get update $ sudo apt-get install apache2 装好后,配置文件位于/etc/apache2中,默认情况下无需修改即可使用.默认的网站目录为/var/www/. 启动 Apache: $ sudo /etc/init.d/apache2 start 重启 Apache: $ sudo /etc/init.d/apache2 re…
今天六一儿童节,然后... ... ... ... 然后就是父亲节呀孩子们!!! ———————————————————————割———————————————————————— 同事需要JDK.Tomcat.MySQL云环境,以不正当理由机智地把锅甩给大姐大 基于本人近一个月来各种折腾阿里云,表示生无可恋/(ㄒoㄒ)/~~ ———————————————————————割+1——————————————————————- 一.安装前准备 安装环境:阿里云ECS/Ubuntu14.04 x64…
之前做三星的6410是在红帽下做的,现在公司给了个TI的AM3359的开发板,开发环境是ubuntu10-04.这周经过半天的研究对比,终于算是搭好tftp下载的一些服务了. [防火墙] sudo ufw disable防火墙在系统启动时自动禁用sudo ufw enable防火墙在系统启动时自动启动 以上是在ubuntu下进行的,而原来在redhat下是通过setup命令进行防火墙的关闭操作. 这里要禁用防火墙,这点很重要. [搭建tftp] cd / sudo mkdir tftpboots…
1.Hadoop运行模式Hadoop有三种运行模式,分别如下:单机(非分布式)模式伪分布式(用不同进程模仿分布式运行中的各类节点)模式完全分布式模式注:前两种可以在单机运行,最后一种用于真实的集群环境,通常用在生产环境上.我们可以搭建本地的伪分布式模式来模拟分布式环境的执行. 2.Hadoop的安装及配置环境:Ubuntu10.10,Hadoop 0.21.0安装步骤如下:1.准备工作:1).安装ssh server,如何安装ssh server请看http://www.tieguanyin16…