Hi everybody,
With my new FOG 1.5.9, I have the same problem after removing the old windows installation (=> 20H2), exactly the same as described in this post ! Was the fix init.xz included in the latest version 1.5.9 ?
Hi everybody,
With my new FOG 1.5.9, I have the same problem after removing the old windows installation (=> 20H2), exactly the same as described in this post ! Was the fix init.xz included in the latest version 1.5.9 ?
Hi everybody,
I have a 1.5.5 Fog version on Debian 9.3. By default, my images storage directory was /images.
And my wish was to put images on new directory /var/images (/var is mount on LVM mapper…).
So here are the actions I done :
1/ create a /var/images directory
2/ set good rights and owner for this new directory (see /images rights)
3/ move all files from /images to /var/images (be careful to move all files : with dot, etc.; ls -la to be sure !)
4/ connect to database with mysql client and change path :
use fog;
update nfsGroupMembers set ngmRootPath='/var/images/';
update nfsGroupMembers set ngmFTPPath='/var/images/';
5/ change path in /etc/exports :
/var/images *(ro,sync,no_wdelay,no_subtree_check,insecure_locks,no_root_squash,insecure,fsid=0)
/var/images/dev *(rw,async,no_wdelay,no_subtree_check,no_root_squash,insecure,fsid=1)
6/ apply nfs changes :
exportfs -ra
That’s all !