Skip to main content

How to plan NFS installation?

59.How to plan NFS installation?
Ans.
1. User need to decide few things before start installing the Network file system and they are as follows:
Decide the file system to export.
Decide which users are permitted to mount the expected file system.
Decide the schemes i.e. auto mounting or manual mounting that clients will use to access exported file system.
Select naming convention and mounting scheme.

2. Better NFS exports include any file system that is shared among a huge number of users, such as home, workgroup projects directories, shared data directories such as ‘/usr/share’, ‘/var/mail/spool’.

3. Make use of ‘/home/username’ to mount home directories since most of home directories are accessed in similar way.

4. If exported file grow large, so far this subdivision is necessary, which becomes tedious for administration , that when clients mounts, it should be updated to reflect new set of exports.

5. Create logical volume set on NFS server, if it has large number of NFS mount for client.

6. Use RAID and logical volumes for flexibility, for large sites, distribute multiple NFS exports across multiple disks so that a single disk failure will have less effect.

7. User cannot export a file system that is itself already a NFS mount.

Comments

Popular posts from this blog

Java,ES,QT practical files

All practical files: Click below to start download Uploaded on special request||||

Vidyalankar Question paper solutions

Download from their website: http://www.vidyalankar.org/index.aspx or just click here to download

How loader works? State the difference between GRUB and LILO.

29.How loader works? State the difference between GRUB and LILO. Ans. 1. GRUB stands for ‘Grand Unified Bootloader’. 2. The Bootloader is the software program. 3. If you have multiple kernel images installed on your system, you can choose which one to be executed. 4. GRUB displays a splash screen, waits for few seconds, if you don’t enter anything, it loads the default kernel image as specified in the grub configuration file. (grub.conf in /boot) 5. GRUB has the knowledge of the filesystem (the older Linux loader LILO didn’t understand filesystem). 6. Grub configuration file is/boot/grub/grub.conf (/etc/grub.conf is a link to this). 7. # GRUB LILO 1 GRUB stands for ‘Grand Unified Bootloader’. LILO stands for Linux Loader. 2 GRUB supports an unlimited number of boot entries. LILO supports only up to 16 different boot selection. 3 GRUB can boot from network. ...