红联Linux门户
Linux帮助

Ubuntu 15.04上安装JDK8,Nginx-1.6.x,Openssh-Server的方法

发布时间:2015-05-10 21:48:27来源:my.oschina.net/ososchina作者:isOkay

安装Nginx的方式

http://www.cnblogs.com/languoliang/archive/2013/04/01/nginx.html

http://blog.csdn.net/mengxiangbaidu/article/details/7022829

注意,在ubuntu最新版本中,软件源中只有如下,因此,这个链接中的命令应该是 sudo apt-get install nginx-full

 
程序 'nginx' 已包含在下列软件包中:
* nginx-core
* nginx-extras
* nginx-full
* nginx-light
请尝试:sudo apt-get install <选定的软件包>


Jdk安装请参考如下博客

http://www.cnblogs.com/plinx/archive/2013/06/01/3113106.html


openssh-Server安装

我们开发中,往往需要SSH远程连接,因此openSSH-Server必须安装在目标机器上,但在ubuntu 15.04中安装会出现一些问题,提示有些软件包无法下载,原因可能是域名无法解析 

面对此种情况,我们需要手动编译安装,安装方式如下

http://blog.chinaunix.net/uid-26675482-id-4345632.html


另外一种我们从官网下载openssh-6.6p1.tar.gz安装包,然后执行如下命令,我用的是这种方式
 
sudo tar zxvf  openssh-6.6p1.tar.gz -C /usr/lib/openssh/
sudo apt-get update
sudo apt-get install openssh-server

http://wiki.ubuntu.org.cn/Nginx


Mac OS上安装php Apache

http://yangjunwei.com/a/1378.html


No module named setuptools 解决方案
 
wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz
tar zxvf setuptools-0.6c11.tar.gz
cd setuptools-0.6c11
python setup.py build
python setup.py install


ubuntu 15.04手动安装nginx 1.9.0:http://www.linuxdiyf.com/linux/12038.html

Ubuntu 14.04安装JDK8:http://www.linuxdiyf.com/linux/2509.html

Ubuntu/Linux Mint/Debian安装Java 8(JDK8和JRE8):http://www.linuxdiyf.com/linux/2057.html

Ubuntu安装SSH时出现软件包openssh-server还没有可供安装的候选:http://www.linuxdiyf.com/linux/10216.html