Since YP reports map files from Solaris to have dots like auto.master instead of underscores like auto_master; /etc/init.d/autofs must be changed to replace underscores with dot just like REDHAT.
a varible UNDERSCORETODOT=1 is added under the debian section and when the value is checked I replceed the below statement
map=`basename $map | sed -e s/^auto_home/auto.home/ -e s/^auto_mnt/auto.mnt/`
with
map=`basename $map | sed -e s/auto_/auto./g`
now all underscores are converted into dots.
Wednesday, January 30, 2008
Monday, January 28, 2008
Monday, January 07, 2008
ethernet conenction bonding RHEL
This one works
http://www.howtoforge.com/network_card_bonding_centos
http://www.howtoforge.com/network_card_bonding_centos
Sunday, January 06, 2008
Saturday, January 05, 2008
Solaris Automount NFS with linux clients
Solaris Box:
0. /et/defaultdomain :: Put NIS domain name here
1. vi /etc/dfs/dfstab
share -F nfs -o rw /apps1
share -F nfs -o rw /home1
share -F nfs -o rw /data
2. vi /etc/auto_master
/apps1 auto_apps -nosuid,nobrowse
3. vi /etc/auto_apps
oracle -ro s2:/apps1/oracle
gf_admin -rw s2:/apps1/gf_admin
4. vi /var/yp/Makefile
Copy the section auto_home and auto.home and create corresponding auto_apps and auto.apps sections
5. make
6. *TO DO*: to prevent the NIS server from automounting its own directories and consecutively not seeing the contents of those - falsely automounted - directories I removed the "files nis" tags in front of automount in /etc/nssswitch.conf
Linux Box:
7. /etc/sysconfig/network :: put NISDOMAIN=$nisdomainname
8. /etc/yp.bind :: specify server and NIS Domain name
0. /et/defaultdomain :: Put NIS domain name here
1. vi /etc/dfs/dfstab
share -F nfs -o rw /apps1
share -F nfs -o rw /home1
share -F nfs -o rw /data
2. vi /etc/auto_master
/apps1 auto_apps -nosuid,nobrowse
3. vi /etc/auto_apps
oracle -ro s2:/apps1/oracle
gf_admin -rw s2:/apps1/gf_admin
4. vi /var/yp/Makefile
Copy the section auto_home and auto.home and create corresponding auto_apps and auto.apps sections
5. make
6. *TO DO*: to prevent the NIS server from automounting its own directories and consecutively not seeing the contents of those - falsely automounted - directories I removed the "files nis" tags in front of automount in /etc/nssswitch.conf
Linux Box:
7. /etc/sysconfig/network :: put NISDOMAIN=$nisdomainname
8. /etc/yp.bind :: specify server and NIS Domain name
Subscribe to:
Posts (Atom)