@Benjamin_D you have been misinformed. the client can be used to schedule the capture task, but the system needs to reboot to begin pulling the image.
FOG is not typically used to capture systems that have been in use by users, but rather used to deploy a standardized image to systems.
Best posts made by Junkhacker
-
RE: How to get FOG to capture while host is logged in?
-
RE: 1.3.4 - high cpu load - client login
@andjjru i’m not entirely familar with that part of the code, but the md5sum task must be part of the image replicator service. i knew we did that for snapins, but i didn’t think we did it for images. anyway, perhaps you should try disabling IMAGEREPLICATORGLOBALENABLED until most of the clients have had a chance to check in and reset their keys
-
RE: creating Bootable ISO from FOG captured image
@g-sivakolunthu while possible, it’s not what fog is made for and you would have a bunch of manual steps. you might want to look at clonezilla for imaging with online images possibly in combination with gparted for partition resizing.
-
RE: Hardware upgrades for server
@compman while that’s true, in practice zstd at a higher compression level will return a faster overall process when the bottleneck is the network.
-
RE: Additional disk space is not showing up on Fog server
@sjensen it might be easier to follow these instructions to resize your LVM, you’ve already done part of this, but i’m sure you can figure out what needs to be done yet. https://blog.vbonhomme.fr/extend-a-lvm-partition-after-increasing-its-virtual-disk-on-virtualbox/
-
RE: Bonding multiple network cards for better throughput
@george1421 another option is fog storage servers to open up more transmit slots at a time
-
RE: Host Server OS Suggestions
@Scott-B said in Host Server OS Suggestions:
fog will work on any of them, really.
I recommend Debian or CentOS, whichever you’re most comfortable with.
I don’t recommend Arch for production. Only crazy people do that. -
RE: customise web interface
also, you can create a custom css for the interface and tell fog to use it
FOG Configuration > Web Server > FOG_THEME
you’ll want to keep a backup copy of it, in case it get’s removed during an upgrade. -
RE: On-demand image deployment at boot time?
@george1421 it sounds like the fog server would be exclusively for the lab, so the list of images available shouldn’t be an issue, and they could even set the default iPXE menu item to “deploy image”
-
RE: Keyboard not working in Fog on client
@FeasiblePear the boot menus are ipxe based. updating those files may solve your problem. i recommend updating to the latest stable, or latest RC release for the lastest bug fixes, feature additions, and improvements. (the new zstd compression alone is probably worth the update for a lot of people)
-
RE: The future of partclone and therefore FOG as it is
@Sebastian-Roth i understand the reasoning for not updating it. i’m hoping to have a chance to help with testing by the end of the week.
-
RE: Touchscreen in PXE boot
@george1421 or, he could temporarily attach a keyboard
-
RE: Does FOG use or install the log4s?
log4j is a java library that is sometimes packaged with a program without it being installed on it’s own, so it doesn’t have to show up in the apt list to be present. that said, george is right that fog doesn’t use java, so you don’t have to worry about it there.
-
RE: How to: Modify the PXE boot menu to allow the booting of .iso files
i keep my ISO files in a separate folder from www/fog, and it works fine and my permissions are set to 644.
have you tried testing the location you put into the “advanced” menu in a browser? it should ask if you want to download the file. -
RE: Unable to locate /tftpboot/pxelinux.cfg/default on fedora install to change IP address/dns etc
that guide is from fog 0.27
it is no longer accurate
the places you will likely need to change the IP address are
in web interfaceFog Configuration>FOG Settings>General Settings>FOG_WOL_HOST Fog Configuration>FOG Settings>TFTP Server>FOG_TFTP_HOST Fog Configuration>FOG Settings>Web Server>FOG_WEB_HOST Storage Management>DefaultMember> IP Address
in files
/tftpboot/default.ipxe /opt/fog/.fogsettings
and, of course, your option 66 in your dhcp server settings
-
RE: Upload times: does the server or client matter more?
why not use a VM to create your master image, and use the laptop to remote into it? then you get the performance of your server with raid instead of the laptop for uploads?
-
RE: Imaging Windows 10
testing with the available pre-release versions of Windows 10 have at this time had no issue with compatibility with fog.
-
RE: Fog 1.2.0 DBAN Advanced PXE Boot Menu
[quote=“Tom Elliott, post: 38404, member: 7271”]To be legit some environments actually require what’s known as a department of defense white that’s what his menu system does the current Whitecastle it’s in fog is not right every bit with random characters[/quote]
this has got to look strange to anyone who doesn’t know you’re using voice to text right now, lol
translation:
To be legit some environments actually require what’s known as a Department of Defense wipe, that’s what this menu system does. the current wipe that’s in fog does not write every bit with random characters -
RE: Default fog user password create on linux box?
you can find the password used for that account in the storage management page of your fog server’s web gui. “Management Password”
this is the account fog uses for ftp access to the images -
RE: Fast wipe in advanced menu
try this
[CODE]:MENU
menu
item fog.fastwipe FastWipe in Advanced menu
item return Return to main menu
choose --default fog.fastwipe target && goto ${target}
:fog.fastwipe
kernel bzImage32 loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=127000 keymap= web=${fog-ip}/fog consoleblank=0 loglevel=4 capone=1 mode=wipe wipemode=fast mac=00:00:00:00:00:00
imgfetch init_32.xz
boot
:return
chain http://${fog-ip}/${fog-webroot}/service/ipxe/boot.php?mac=${net0/mac} || goto MENU[/CODE]