1.编辑/etc/exports文件 配置NFS服务器目录和可访问的ip.
/MOUNT/TNFS3.198.com 192.168.2.*(rw,anonuid=0,anongid=0)
2.启动NFS服务
启动NFS的方法和启动其他服务器的方法类似。首先需要启动portmap和nfs这两个服务,
并且portmap服务一定要先于nfs服务启动.
/etc/init.d/portmap start
/etc/init.d/nfs start
service portmap start
service nfs start
3.关闭NFS服务
在停止NFS服务的时候,需要先停止NFS服务再停止portmap服务,
如果系统中还有其他服务需要使用portmap服务,则可以不停止portmap服务
/etc/init.d/nfs stop
/etc/init.d/portmap stop
4.重新启动NFS服务
/etc/init.d/nfs restart
service nfs restart
5.检查portmap和nfs服务状态
检查portmap和nfs服务状态可以分别使用"/etc/init.d/portmap status"
和"/etc/init.d/nfs status"命令
6.设置自动启动NFS服务
chkconfig --level 235 portmap on
chkconfig --level 235 nfs on
7.挂载NFS
mount 192.168.2.232:/DATA-test1 /MOUNT/TNFS.com/
mount -t nfs 192.168.2.250:/home/DATA /MOUNT/nsfserver
8.卸载
umount /MOUNT/TNFS.emaildisk.com/
9.查看NFS服务
showmount -e 192.168.2.233
分享到:
相关推荐
在Android系统上配置NFS开发环境。PC机使用vmware。
其中,`<remote_nfs_server>`是NFS服务器的IP地址或主机名,`<nfs_share>`是要挂载的远程目录,`<local_mount_point>`是本地的挂载点。 总之,为了让Linux内核支持NFS文件系统,你需要在内核配置阶段正确选择相关...
rpm -ivh libini_config-1.3.1-32.el7.x86_64.rpm rpm -ivh libnfsidmap-0.25-19.el7.x86_64.rpm rpm -ivh keyutils-1.5.8-3.el7.x86_64.rpm rpm -ivh rpcbind-0.2.0-49.el7.x86_64.rpm rpm -ivh libverto-libevent-...
1.Connect to the ESX host using ...authd.soapServer = "TRUE" prefvmx.consolidateDeleteNFSLocks = "TRUE" authd.proxy.vpxa-nfc = "vmware-vpxa:vpxa-nfc" authd.proxy.vpxa-nfcssl = "vmware-vpxa:vpxa-nfcssl
这通常包括`CONFIG_NFSD`(NFS服务器)和`CONFIG_NFS_V2`、`CONFIG_NFS_V3`、`CONFIG_NFS_V4`(NFS客户端支持不同版本)。如果需要在Mini2440上提供NFS服务,还需要确保`CONFIG_ROOT_NFS`被启用,以支持根文件系统的...
echo "usage:./mount_nfs serverip serverpath localpath" if [ -z $serverip ]; then echo "serverip is NULL" exit 1 fi if [ -z $serverpath ]; then echo "serverpath is NULL" exit 1 fi if [ -z $local...
- 在Cygwin环境中安装NFS服务器,执行`/usr/bin/nfs-server-config`,根据提示进行配置。 - 在Cygwin中编辑`/etc/exports`和`/etc/hosts.allow`文件,设置NFS共享权限和访问控制。 7. **配置NFS服务** - 在`/etc...
NFS_IP_NAME = nfs-server.example.com; } ``` - `NFS_IP_NAME`:NFS服务器的IP或主机名。 **2.2.17 Uid Mapper Cache 区块** 用于配置用户ID映射缓存。例如: ```plaintext Uid_Mapper_Cache { UID_MAPPER_...
确保内核配置包含NFS客户端模块,如`CONFIG_NFS_FS=y`,`CONFIG_NFS_V3=y`等。 - 在启动脚本(如`/etc/inittab`或`/etc/init.d/S99local`)中添加挂载命令。例如,`mount -t nfs server_ip:/export/rootfs /mnt/nfs...
3. 启动和启用NFS服务:`sudo systemctl start nfs-server && sudo systemctl enable nfs-server` 4. 在客户端上,配置 `/etc/fstab` 以挂载远程NFS共享。 5. 挂载远程目录:`sudo mount -t nfs serverIP:/...
- 在`General setup -> Command line -> Default kernel command line`中添加`root=/dev/nfs nfsroot=IP_ADDRESS_OF_NFS_SERVER:/path/to/rootfs ip=dhcp`。 4. **安装TFTP服务器**: - 使用包管理器安装TFTP...
- 在 Ubuntu 上依次执行命令安装所需的软件包:`sudo apt-get install portmap` 和 `sudo apt-get install nfs-kernel-server`。 - 编辑 `/etc/exports` 文件,在末尾添加共享目录的配置信息,例如 `/forlinx *(rw...
systemctl restart nfs-server ``` 9. **验证**: 在Linux客户端,挂载NFS共享目录: ```bash mount -t nfs 192.168.47.128:/srv/nfs/share /mnt/nfs_share ``` 确认挂载成功后,可以访问共享文件。 对于...
例如:`mount -t nfs server:/shared /mnt/nfs`。 - 检查挂载状态:`df -h`或`mount`命令。 3. **测试文件读写** - 在挂载点创建文件,测试读写操作是否正常。 #### 五、总结 通过上述步骤,我们不仅了解了...
minikube-nfs测试 目的 在minikube上安装NFS服务器/客户端的各种资源。 应将此NFS服务器提供为PV和PVC,以供吊舱使用。 在此示例中,我们仅每...kubeconfig: Configured timeToStop: Nonexistent 创建名称空间: kubec
3. 打开图形配置界面:#redhat-config-nfs 或在系统主菜单中找“设置”选项卡: * 指定要共享的目录(/home/pub) * 指定要共享目录的客户端:可以是一个主机:192.168.137.3 也可以是一个子网:192.168.137.0/24 ...
完成配置后,重启NFS服务`sudo /etc/init.d/nfs-kernel-server restart`。验证NFS服务是否正常,使用`showmount -e`命令查看共享列表。 2. **客户机端设置**:在NFS客户端,也就是开发板上,首先需要在Linux内核...
systemctl restart nfs-server ``` 3. **安装并配置BIND (DNS)**: BIND是常用的DNS服务器软件。在`/etc/named.conf`中,配置主域名(如server.aaa.com)和对应的区域文件。例如,创建`/var/named/aaa.com.zone`和...
# Add your extensionslocation ~* ^.+\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|pdf|txt|tar|wav|bmp|rtf|js|flv|swf|html|htm|mp3|m4a|mp4)$ { # Make sure to match with config.json's server.dir root ...