Ubuntu 12.04安装NFS server

首先安装nfs-kernel-server

apt-get install nfs-kernel-server 

然后创建一个目录:

mkdir -p /opt/share 

并赋予权限777:

chmod -R 777 /opt/share

在/etc/exports文件中添加配置:

/opt/share 10.112.18.0/255.255.255.0(rw,no_root_squash) 

在/etc/hosts.allow中添加配置:

portmap:10.112.18.0/255.255.255.0 

在/etc/hosts.deny中添加配置:

portmap:ALL 

重新启动两个服务:

service portmap restart 

service nfs-kernel-server restart

在另一台Ubuntu上安装nfs-common

apt-get install nfs-common 

然后创建目录test

mkdir ~/test 

然后运行测试命令看一下:

# showmount -e 10.112.18.158 

Export list for 10.112.18.158: 

/opt/share 10.112.18.0/255.255.255.0 

找到nfs server的挂载目录了。现在手工挂载:

mount -t nfs4 10.112.18.158:/opt/share ~/test/ 

现在可以测试了,应该成功。

时间: 2024-10-01 19:13:00

Ubuntu 12.04安装NFS server的相关文章

Ubuntu 12.04中NFS文件共享安装与配置步骤

又是碰到的问题,继续做记录备份. 涉及到服务器之间文件共享,需用到NFS共享设置,服务器为Ubuntu 12.04 64位. 准备环境 服务器两台: 服务端: 192.168.1.1 客户端: 192.168.1.2 服务端操作 1,首先安装nfs服务(以下操作自行切换root用户) apt-get install nfs-kernel-server 2,安装完成后,编辑设置文件: vi /etc/exports 新安装的是一个空文件,只有部分注释,在下方加入: /mydata  192.168

ubuntu 12.04 安装 Nginx+PHP5 (PHP-FPM) +MySQL主机详解

很长时间没有在 Ubuntu 安装实际操作安装web服务器了,今天想练练手,在虚拟机上做个试验,我不该保证你也一定会成功,做参考吧! 现象我介绍一下基本系统情况: 虚拟机(Oracle VM) 操作系统 Ubuntu 12.04 server (该系统安装时我只选择了ssh server) 真机与虚拟机使用桥接方式 设置为静态IP:192.168.1.208 适情况个人设置 1.首先为了安装方便,我切换到root账户,输入命令: sudo su 2 安装 MySQL 5 apt-get inst

ubuntu 12.04 安装优化lnmp服务器方法

直接php+mysql这是Linux web服务器的黄金组合.今天我们一来学如何在ubuntu 12.04 中架设lnmp. 1. 使用官方PPA安装 Nginx 最新版本,使用以下命令:  代码如下 复制代码 sudo add-apt-repository ppa:nginx/stable sudo apt-get update sudo apt-get install nginx Nginx相关控制命令: 启动 Nginx: sudo /etc/init.d/nginx start 浏览器浏

ubuntu 12.04 安装无线网卡驱动

安装ubuntu 12.04后,无线网卡不可用,采用以下方式解决: 1.在终端中运行如下命令,重新安装b43相关的全部驱动和firmware: sudo apt-get install bcmwl-kernel-source     #Broadcom 802.11 Linux STA 无线驱动源 sudo apt-get install broadcom-sta-common sudo apt-get install broadcom-sta-source sudo apt-get insta

Ubuntu 12.04 安装配置 Tomcat 7.0.40Tomcat 服务器

  因为源上的版本问题,所以没有使用源上的自动安装包,老规矩,Tomcat 7.0.40 Core下载地址:http://mirror.bit.edu.cn/apache/tomcat/tomcat-7/v7.0.40/bin/apache-tomcat-7.0.40.tar.gz 放入当前登录用户根目录: ~ 1.依旧是解压 tar –xzf apache-tomcat-7.0.40.tar.gz 得到apache-tomcat-7.0.40文件夹 2.改个名字,不然敲着蛋疼: mv apac

乌班图系统Ubuntu 12.04安装教程

1.选择你所想要的语言,如图. 2.选择安装Ubuntu(I). 3.进入Ubuntu安装等待 4.设置处理器信息 5.同意选择的语言 6.配置键盘信息 7.键盘布局选择汉语 8.配置键盘选择汉语

Ubuntu 12.04 安装配置 Apache2

Apache2安装 1 我们使用root账户进行安装,首先切换到root账户,输入命令: sudo su 2 安装 Apache2 apt-get install apache2 在浏览器输入你服务器ip地址列入,如http://10.103.30.201.查看Apache2是否工作,如果显示(It works!),说明已经工作. Apache 在 Ubuntu 中默认文档根目录为 /var/www,配置文件 /etc/apache2/apache2.conf,额外配置存储子目录 /etc/ap

ubuntu 12.04安装PHP扩展模块

1.采用pear安装方式,如果没有装(apt-get install php-pear). sudo pecl install svn 安装SVN过程如果提示错误: If you get checking for svn includes... configure: error: failed to find svn_client.h 执行下面命令: sudo apt-get install libsvn-dev sudo pecl install svn 你会在/usr/lib/php5/20

ubuntu 12.04 安装最新版PHP?

1. Install the signing key for the PPA (which also adds the sources to apt): add-apt-repository ppa:ondrej/php5If the above command is not available, install it using:  代码如下 复制代码 apt-get install python-software-properties 2. Now update the package da