@Bristow-0 You can clone the repo, and run the installer from the branch you want to work from. When you install FOG (either downloading the files or running it through git), it will create a settings file that will be read during subsequent install attempts to fill out the default answers.
Posts
-
RE: Updating Fog without knowing how I installed it?posted in General
-
RE: Using Snap Ins to run scripts post imaging...?posted in General Problems
@danieln Why would the QC be done after imaging instead of before? Just curious.
Do you have any other system for running remote commands? If you can maintain a list of system names (maybe using the FogAPI), you could run remote commands to your systems from one console on demand - would that work?
-
RE: fog 1.5.10 install on rocky linux 8.7 installation errorposted in Linux Problems
@limbooface Is this still an issue? If not, I’ll close this issue.
-
RE: fog 1.5.10 install on rocky linux 8.7 installation errorposted in Linux Problems
@limbooface So on a fresh Rocky 8.9 (the latest version in the 8.x stream) available, the install goes without a hitch.
-
RE: Can not find hard disk(s) (getHardDisk)posted in Hardware Compatibility
Having the same issue on a Dell Latitude 3140. There is no option for RAID, only AHCI and Off. Secure boot is disabled, UEFI security mode set to disabled on PXE/Internal HDD. Updated to the latest FOG dev version, Kernel version 6.1.22.
Clonezilla will recognize the drive, but not the FOG kernel.
-
RE: fog 1.5.10 install on rocky linux 8.7 installation errorposted in Linux Problems
@Sebastian-Roth I’ll take a look - haven’t touched Red hat stuff for many many years though! Lol
-
RE: Ubuntu Help - Boot Problem #N00bposted in Linux Problems
@Sebastian-Roth I didn’t know about the 100% option - I like that!
-
RE: Ubuntu Help - Boot Problem #N00bposted in Linux Problems
@RogerBrownTDL Try this instead:
lvextend -L +398g ubuntu-vg/ubuntu-lv --resizefs
-
RE: Ubuntu Help - Boot Problem #N00bposted in Linux Problems
@RogerBrownTDL Yes.
lvextend - Increase the volume size -L - Specify the size to increase it by ubuntu-lv - The name of your logical volume (as reported) --resizefs - Resize the EXT{2|3|4} file system -
RE: Ubuntu Help - Boot Problem #N00bposted in Linux Problems
lvextend -L +398g ubuntu-lv --resizefsYou may need to reboot for it to take effect. This will use all the remaining LVM volume space for your logical volume. You can’t go smaller after the fact, so be sure you want to use it all first.
-
RE: Fog hangs while trying to uploadposted in FOG Problems
@Scootframer Hmmm… I’m not sure off the top of my head. I know I’ve seen this issue before, but I do not recall what the fix was.
-
RE: Fog hangs while trying to uploadposted in FOG Problems
@Scootframer To verify what it is first, run
ps aux | grep 2643. Then runkill -9 2643to forcefully kill it. -
RE: Fog hangs while trying to uploadposted in FOG Problems
@Scootframer Oh good!
Anyways, I would try the latest
dev-branchand see if the issue persists. If not, then we would start looking at the logs on the server. -
RE: Fog hangs while trying to uploadposted in FOG Problems
@Scootframer On your server, navigate to the folder you downloaded fog to, and run
git checkout dev-branch. Then, re-run the./bin/installfog.shscript to install the latest version.If you only have 3.9 GB of free space, I’m going to guess that it’s running out of space before it can set the permissions (but someone else would have to verify that for me). The partitions are supposed to be saved into that dev folder until captured, then it gets moved over and renamed.
-
RE: Fog hangs while trying to uploadposted in FOG Problems
@Scootframer Can you confirm you’re using the latest FOG version in the
dev-branchbranch?How full is your
/imagespartition/drive? Is it a local drive on your server or an NFS mount? Does/images/a4bb6d84ebf4exist on your server? -
RE: snapin can't execute the appassociation command properlyposted in Windows Problems
@kalafina I use Samba on a file server. Since you’re running Windows clients, it should work with minimal setup. You need to ensure that wherever the file is stored that the computer account can access it, not necessarily just the user.
But you are right - FOG is defaulting to adding the uploaded snapin file to the end of the command line. There is a walkthrough for adding a Wi-Fi key as a snapin that includes how to upload a ZIP file and run a command from inside - I’d recommend trying that if the above isn’t working.
-
RE: Cannot delete image off of all nodes. Type 2 FTP Error...posted in FOG Problems
@Tom-Elliott You are crazy, but not for that reason… I keep forgetting to check the non-master code -.- That’s a me issue, lol
-
RE: Cannot delete image off of all nodes. Type 2 FTP Error...posted in FOG Problems
@danieln Looks like it’s failing at the password part:
$password = htmlspecialchars_decode($password, ENT_QUOTES | ENT_HTML401);https://github.com/FOGProject/fogproject/blob/master/packages/web/lib/fog/fogftp.class.php#L464
Not sure who is maintaining the PHP code, but it’s failing at that line and breaking out.