Wiki access
-
I’d like to get access to the wiki so I can create a page for installing on Fedora 16. The wiki says to post here, so here I am!
I think I’ve just successfully installed FOG on my Fedora 16 machine. I had a couple problems with the install script, but I was able to work through them.
First I was getting an error with php-gettext. The script would pass the installation step, but when it went back to verify it would die on that step. I tried to manually install it and found out that php-gettext has been deprecated and replaced with php-php-gettext (which was already installed on my system). By changing lines 22 and 23 of /lib/redhat/config.sh to call php-php-gettext instead I was able to get past that error.I found that solution in the wiki for [URL=‘http://www.fogproject.org/wiki/index.php/Installation_on_CentOS_5.3#CentOS_5.5’]Centos here[/URL].
Next I was getting an error with the NSF server. I was getting:
[B]Setting up and starting NFS Servererror reading information on service nfs: No such file or directory[/B] [B]…Failed![/B]Turns out the calls to stop and restart the service were not correct for the OS any more. An other file edit. This time /lib/redhat/functions.sh. Lines 108-110 need to be changed to:
chkconfig nfs-server.service on;
systemctl restart nfs-server.service >/dev/null 2>&1;
systemctl status nfs-server.service >/dev/null 2>&1;
I found that [URL=‘http://fogproject.org/forum/threads/nfs-server-unrecognized-on-fedora-16.542/’]solution here.[/URL]
And that’s pretty much what I was going to put into the wiki for now, in hopes the information will be helpful to others. Can I get the same user name on the wiki as I have here?