Difference between revisions of "Image Capture: Error Checking Mount"

From FOG Project
Jump to: navigation, search
(Replaced content with "Please see: Troubleshoot NFS")
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
The Client mounts the NFS share successfully but throws an error while checking the mounted Share.
+
Please see: [[Troubleshoot NFS]]
 
 
<pre>
 
* Preparing to send image file to server
 
* Mounting File System......................................mount:ser.ver.ipa.ddr:/data/images/dev/ failed, reason given by server: Permission denied
 
Done
 
 
 
* Checking Mounted File System ........................
 
###########################################################################################
 
#                                                                                        #
 
# An error has been detected                                                              #
 
#                                                                                        #
 
###########################################################################################
 
 
Fatal Error: Failed to mount NFS Volume.
 
 
###########################################################################################
 
#                                                                                        #
 
# Computer will reboot in 1 minute.                                                      #
 
#                                                                                        #
 
###########################################################################################
 
 
 
</pre>
 
 
 
This is what the error looks like in FOG 1.3.0:
 
 
 
[[File:Could not mount images folder.png]]
 
 
 
In the folder on your server, check for the '''.mntcheck files'''. If these are not there then perform the following commands [Linux Systems Only]
 
 
 
'''touch /images/dev/.mntcheck '''
 
 
 
'''touch /images/.mntcheck '''
 
 
 
 
 
If still receiving the same error message after perfroming the above commands, you may need to edit /etc/exports to include your new mount point, i.e. /data/images and /data/images/dev with corresponding permissions.
 
 
 
See following examples of /etc/exports:
 
 
 
 
 
<pre>/images *(ro,sync,no_wdelay,no_subtree_check,insecure_locks,no_root_squash,insecure,fsid=0)
 
/images/dev *(rw,async,no_wdelay,no_subtree_check,no_root_squash,insecure,fsid=1)
 
</pre>
 
 
 
<pre>/data/images *(ro,sync,no_wdelay,no_subtree_check,insecure_locks,no_root_squash,insecure,fsid=0)
 
/data/images/dev *(rw,async,no_wdelay,no_subtree_check,no_root_squash,insecure,fsid=1)
 
</pre>
 

Latest revision as of 04:52, 13 October 2016

Please see: Troubleshoot NFS