#Defaultrunlevel.Therunlevelsusedare:#0-halt(DoNOTsetinitdefaulttothis)关机#1-Singleusermode单用户#2-Multiuser,withoutNFS(Thesameas3,ifyoudonothavenetworking)不带NFS服务的3级别#3-Fullmultiusermode命令行模式#4-unused保留的#5-X11图形化模式#6-reboot(DoNOTsetin..
分类:
其他好文 时间:
2015-03-12 15:28:34
阅读次数:
115
一、环境介绍: ? 服务器:centos 192.168.1.225 客户端:centos 192.168.1.226 ? 二、安装: ? NFS的安装配置: centos 5 : yum -y install nfs-utils portmap centos 6(在CentOS 6.3当中,portmap服务由rpc...
分类:
其他好文 时间:
2015-03-12 13:28:46
阅读次数:
238
1.启动hdfs start-dfs.sh (启动后使用jps查看进程是否启动)2.执行hdfs portmap start和hdfs nfs3 start 使用jps查看portmap和nfs3是否启动3.执行mount -t nfs -o vers=3,proto=tcp,nolock 10.....
分类:
其他好文 时间:
2015-03-11 14:42:58
阅读次数:
134
配置编译好内核之后,将生成的内核文件uImage拷贝到/tftpboot/下,通过tftp服务器将内核下载到开发板,使用命令:tftp 31000000 uImage.下载完成之后配置bootargs环境变量:setenv bootargs noinitrd console=ttySAC0,1152...
分类:
其他好文 时间:
2015-03-10 21:10:34
阅读次数:
238
克隆Linux主机后,如果不进行修改会出现不能上网的问题,其实只要进行两步操作即可解决上网问题。笔者的系统为CentOS6.x,读者可根据自己的系统进行相应的操作。第一步:清空/etc/udev/rules.d/70-persistent-net,rules[root@NFS-CLIENT~]#>/etc/udev/rules.d/70-persistent..
分类:
系统相关 时间:
2015-03-09 19:21:46
阅读次数:
202
其中,ftp是工作在应用层的服务,与内核无关(也即可以跨平台实现),可在Linux和Linux之间、Linux和windows之间、UNIX和Linux之间实现文件共享等;nfs是工作在内核空间的,不能跨平台,且主要应用在Linux与Linux之间和Linux和UNIX之间的文件共享;samba也是工作在应用层,可以..
分类:
其他好文 时间:
2015-03-09 19:14:17
阅读次数:
249
实现步骤:
1.服务器端:sudo apt-get install portmap
2.服务器端:sudo apt-get install nfs-kernel-server
3.客户端:sudo apt-get install nfs-common
4.服务器端配置:sudo gedit /etc/exports
添加:/home *(rw,sync,...
分类:
系统相关 时间:
2015-03-09 16:14:35
阅读次数:
243
关闭虚拟机防火墙 lokkit --disabled配置NFS服务端 建立一个目录用来共享 存放根文件系统cd / mkdir rootfs配置NFS共享目录gedit /etc/exports写入/rootfs*(rw,sync,no_root_squash) //其中/rootf...
分类:
其他好文 时间:
2015-03-08 00:02:08
阅读次数:
486
参考实测服务端 centos7 192.168.1.129安装软件yum install nfs-utils portmapservice rpcbind start、service nfs start[root@localhost nfs]# cat /etc/exports #设置共享目录 添加...
分类:
其他好文 时间:
2015-03-07 13:54:22
阅读次数:
143
1、查看nfsportmap相关的安装包rpm-qa|grepnfsrpm-qa|grepportmapredhat5默认已经安装2、启动nfs服务和portmap服务servicenfsstartserviceportmapstart3、设置服务开机启动chkconfignfsonchkconfigportmapon4、修改配置文件vim/etc/exports/etc/exports/exp_back192.168.1.1/25..
分类:
其他好文 时间:
2015-03-06 19:18:45
阅读次数:
145