• IPXE Advanced Menu or Memdisk Problem

    26
    0 Votes
    26 Posts
    25k Views
    JunkhackerJ

    it changes how ipxe attempts to exit and allow the computer to the hard drive. different bios may require different methods to boot properly

  • Documentation for version 1.1

    6
    0 Votes
    6 Posts
    2k Views
    B

    Hi Again I did a complete reinstall both OS 13.10 ubuntu and Fog 1.1.0 still have the time issue . I went in to php5/apache2/php.ini and entered America/New_York ,restarted apache2 ,it’s not fixing the problem . please help.

  • Inventory Report Questions

    2
    0 Votes
    2 Posts
    761 Views
    Tom ElliottT

    I’d think, you could poll the database based on the Host to Group associations and make the entry in the inventory report yourself.

    How to do so is not that hard either, though with 0.29 I don’t know how easy it would be to do.

  • Increase FOG storage

    1
    0 Votes
    1 Posts
    779 Views
    No one has replied
  • Changing Compression levels

    5
    0 Votes
    5 Posts
    2k Views
    Tom ElliottT

    The FOG Configuration->FOG Settings->FOG_PIGZ_COMP is defaulted to 9 which means maximum compression/slowest upload.
    It only functions on the upload process.

    If this is where you’re trying to “speedup” the images, I’d recommend adjusting this value.

    If you’re trying to “speedup” the download of images, then check your networking. Is there 10/100MB limiting that lab down from a gigabit network?

  • PXE help

    11
    0 Votes
    11 Posts
    4k Views
    D

    [quote=“Jaymes Driver, post: 29880, member: 3582”]I use this in my environment, it is reliable. I have used it on all version of Ubuntu to date.[/quote]

    Jaymes - Thank you ever so much this worked! ! ! 😄

    :oops: I erroneously followed the directions for FOD 0.33 and it was all messed up. After rereading the [URL=‘http://fogproject.org/wiki/index.php/Using_FOG_with_an_unmodifiable_DHCP_server/_Using_FOG_with_no_DHCP_server#DNSMASQ_settings_for_iPXE’]install instructions[/URL] I saw my error and undid all the stuff for FOG 033 and it worked like a charm - Now to try to figure out how to make images from an existing machine and then dump the image back

    [INDENT=1]This information pertains to FOG 0.33 and the new iPXE boot method.[/INDENT]
    [INDENT=1]In order to continue to use dnsmasq to dole out ip addresses and to help find the boot file, some changes need to be made to force the boot file to load the iPXE boot file.[/INDENT]
    [INDENT=1][B]FIRST Update the schema by navigating to your fog management page and install the update.[/B][/INDENT]

  • New FOG Server Size Recommendations

    3
    0 Votes
    3 Posts
    1k Views
    P

    Thanks Junkhacker that will help to plan hdd size for deployment!!

  • FOG 1.1.0 Released

    14
    0 Votes
    14 Posts
    6k Views
    S

    Great job Tom and Team. My hearty Thanks.
    I am going to update my FOG today.

  • Fog 1.1.0 PXE boots to menu then....

    4
    0 Votes
    4 Posts
    2k Views
    R

    [quote=“tamatech, post: 29736, member: 24111”]Looks to me like whatever computer you are using doesn’t like the included bzImage kernel. Try a different one or try adding kernel arguments. There are several threads on these topics.

    Andy[/quote]
    You were correct… Found the following solution in another thread:
    [CODE]sudo mv /var/www/fog/service/ipxe/bzImage /var/www/fog/service/ipxe/bzImage_05JUN2014
    sudo mv /var/www/fog/service/ipxe/bzImage32 /var/www/fog/service/ipxe/bzImage32_05JUN2014
    sudo wget -O /var/www/fog/service/ipxe/bzImage --no-check-certificate https://mastacontrola.com/fogboot/kernel/bzImage
    sudo wget -O /var/www/fog/service/ipxe/bzImage32 --no-check-certificate https://mastacontrola.com/fogboot/kernel/bzImage32[/CODE]

    This Code was Courtesy Tom Elliot

  • Deployment Methods

    3
    0 Votes
    3 Posts
    2k Views
    B

    Ahh okay, that makes sense. So the download button is basically just a shortcut. I’m usually using the download.

  • Join to Active Directory

    8
    0 Votes
    8 Posts
    6k Views
    M

    Tom,
    Of course. However I didn’t think it through all the way. Right now the only service I use is joining the AD. In the future I would like to get snapins working, but so far multiple images has worked for me.

  • Bit comfused with new FOG 1.0.1

    6
    0 Votes
    6 Posts
    2k Views
    M

    I was having enough issues getting Fog to run, I didn’t want to try using 14.04. Now that Fog is working as it should maybe I will try the newer version. As for hardware I am using VMware 5.1 on a HP DL380G6. Each Fog VM gets 2vCPU and 8GB of RAM. I will post the results when I get the chance to try 14.04.

  • Editing the 1.0.1 PXE Menu

    6
    0 Votes
    6 Posts
    2k Views
    Tom ElliottT

    [quote=“GBison, post: 28720, member: 18212”]Hello all!

    In my last FOG setup in .32, I had the menu background changed, removed the descriptions of the functions, and changed the wording for some of the functions themselves through an easily edited text file. If I recall, the file was called default.something and was located somewhere inside the pxelinux folder.

    Now, with the new FOG 1.0.1 moving things around, I’m a bit lost. I found where the background goes after a bit of digging, but I’m wondering where I go to change the font color, highlight color, edit the text, etc. I know about the webUI PXE menu edit field, but this just adds extra text to the bottom… not what I’m looking to do right now.

    Any help is appreciated![/quote]

    If you really want to edit the menu, there’s no major issue, and it is (more or less) still editing one simple text file.

    The file is now located in:
    /var/www/{FOGWEBDIR}/lib/fog/BootMenu.class.php

    Just be cognizant of what you’re editing. iPXE is a bit finicky about syntax. If you’re dealing with gap’s and have dashes in them, you need to have two prepending dashes: (example below)
    [code]item --gap – ---------------------------[/code]

    You’ll break ipxe if you have:
    [code]item --gap ---------------------------[/code]

    Here’s ipxe’s scripting documentation:
    [url]http://ipxe.org/scripting[/url]

    Here’s ipxe’s command information:
    [url]http://ipxe.org/cmd[/url]

    [COLOR=#000000]It’s pretty simple once you look at it, but it may take a little bit to understand how it’s being build. The old /tftpboot/pxelinux.cfg/default file was useful, but it wasn’t dynamic. That’s where moving to ipxe made things so much easier. While confusing at first, it’s much simpler and, from a programmatic standpoint, nice to work with as you can add anything you need dynamically.[/COLOR]

  • Using a Tom Elliott Kernel

    2
    0 Votes
    2 Posts
    2k Views
    Tom ElliottT

    [quote=“Scott B, post: 29522, member: 15315”]If I want to use a different kernel how do I go about that? I downloaded “Kernel.TomElliott.3.14.2.64” from the Fog Project page, but I don’t know what to do with it from there.[/quote]

    How did you download the kernel?

    If you did it from the gui, and saved the name as bzImage, FOG automatically will be using that kernel. If you saved the kernel as a different name, you would need to change the kernel you’re using from FOG Settings to that of the name of the name you saved it as.

    If you downloaded the kernel directly from sourceforge, you would need to copy it to your fog server in /var/www/{FOGWEBDIR}/service/ipxe/

    The easiest method would be to save it as bzImage after making a backup of the current bzImage.

  • Can you skip sysprep images

    3
    0 Votes
    3 Posts
    1k Views
    Tom ElliottT

    What makes you think you need to use sysprep? There was a period of time that the BETA svn required sysprep of all images, but that was fixed before release. You can use sysprep, or not, either way the imaging process seems to work anyway.

  • Snapin Job launched with each deployment.

    5
    0 Votes
    5 Posts
    1k Views
    JunkhackerJ

    the client software has not changed. if the ip address of the server does not change, the existing clients will talk to the new server

  • Fog tray and dual boot systems

    5
    0 Votes
    5 Posts
    2k Views
    W

    True but as a warning you DNS records and DHCP records will have probable issues. Since its the same MAC and JOINED to the domain DNS will have to fix the A record pointers and DHCP will have to updated the A records from the DNS. UNC paths may take much longer than expected and so on…

    This dual boot is nice for testing software but I would not recommend it.

  • Snapin search

    4
    0 Votes
    4 Posts
    1k Views
    Tom ElliottT

    [quote=“Frank, post: 29117, member: 691”]Hi Tom,
    Can it be that the search use snapinAssoc table and the SELECT lacks DISTINCT clause? That would explain the repetititon.
    Frank[/quote]

    I don’t think that’s it. If we added DISTINCT to the SELECT params, it would not allow certain search functions to work properly. I’ll take a look at the query string, if that’s even being used, for the snapin page.

  • Upgrade from 032 to 1.0.1 Issue

    3
    0 Votes
    3 Posts
    1k Views
  • Host won't boot in PXE

    17
    0 Votes
    17 Posts
    6k Views
    W

    If you read during the install of fog it tells you do do this. That is direct documentation.

    Would you just keep clicking next in an install of Java and install all the extra crap that comes along for the ride? No you untick the extras and just install java. Same goes for any other install. [SIZE=4][I][U][B]Read the output.[/B][/U][/I][/SIZE]

179

Online

12.4k

Users

17.4k

Topics

155.9k

Posts