- 论坛徽章:
- 0
|
2007年6月8日
solaris主机A的目录要共享出来,solaris B挂载A的共享目录,下面的具体过程是在solaris 8 for intel上面的操作
1.先在A上进行设置:
vi /etc/dfs/dfstab
# Place share(1M) commands here for automatic execution
# on entering init state 3.
#
# Issue the command '/etc/init.d/nfs.server start' to run the NFS
# daemon processes and the share commands, after adding the very
# first entry to this file.
#
# share [-F fstype] [ -o options] [-d ";"] ; [resource]
# .e.g,
# share -F nfs -o rw=engineering -d "home dirs" /export/home2
share -F nfs -o ro -d "myfile" /opt/dby #这个就是增加共享目录#
2.启动nfs.server服务:
#/etc/init.d/nfs.server start
3.察看已经共享的目录:
#share
- /opt/dby ro "myfile"
主机B上面的操作:
1.用vi编辑/etc/vfstab文件,增加要挂载的项,如下所示:
#device device mount FS fsck mount mount
#to mount to fsck point type pass at boot options#
#/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr ufs 1 yes -
fd - /dev/fd fd - no -
/proc - /proc proc - no -
/dev/dsk/c0d0s4 - - swap - no -
/dev/dsk/c0d0s0 /dev/rdsk/c0d0s0 / ufs 1 no -
/dev/dsk/c0d0s6 /dev/rdsk/c0d0s6 /usr ufs 1 no -
/dev/dsk/c0d0s3 /dev/rdsk/c0d0s3 /var ufs 1 no -
/dev/dsk/c0d0s7 /dev/rdsk/c0d0s7 /export/home ufs 2 yes-
/dev/dsk/c0d0s5 /dev/rdsk/c0d0s5 /opt ufs 2 yes -
/dev/dsk/c0d0s1 /dev/rdsk/c0d0s1 /usr/openwin ufs 2 yes -
swap - /tmp tmpfs - yes -
e440:/opt/dby - /123 nfs - no rw,soft #这个就是增加的共享目录# e440为主机名也可用IP
2. 接着就是挂载A上共享的目录/opt/dby了,挂载点是/123目录,命令如下:
# mount /123
3.ok,现在就可以了,df-k 看看~~, 在B上进123的看看,是不是A上/opt/dby里面的文件全在了
然后我来设置 cron 定时服务-
1. 进入/etc/cron.d/ 建立一个文件
vi cron.allow 加入 root
2. vi /var/spool/cron/crontabs/root
添加一行
10 10 * * * /phone/1.sh #每天的 10点10分 执行 /phone/1.sh 脚本#
/etc/init.d/cron stop
/etc/init.d/cron start 经试验重新启动一下 cron服务后,可执行
shell脚本内容太垃圾啦,不敢写出来,呵呵
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/1102/showart_317544.html |
|