• error to captur host no FOG server

    2
    0 Votes
    2 Posts
    185 Views
    george1421G

    @juelson I’m not exactly sure what you are saying here, so let me reword what I think I understand your issue is using my words.

    I’ve pxe booted and selected full registration to register my computer with FOG. Registration works just find but when I go to deploy an image and create the deploy task, when I pxe boot into the fog the iPXE menu it shows the computer is not registered with FOG. I know it completed registration OK because I can see it in the web ui.

    I know I used more words than you did, but I applied what I think I understood with your issue to ones I’ve seen before. Did I explain the situation you see now?

  • Reinstating Images to the Web UI

    7
    0 Votes
    7 Posts
    818 Views
    Wayne WorkmanW

    @mgoh You could probably update the size with a sql command if you wanted. Not really a need to do it though.

  • Use same image path in differents images

    1
    0 Votes
    1 Posts
    242 Views
    No one has replied
  • New Menu Item for VMware

    1
    0 Votes
    1 Posts
    277 Views
    No one has replied
  • API To Create new IPXE Menu Item

    2
    0 Votes
    2 Posts
    461 Views
    S

    @londonfog Not sure but I don’t think there are API calls for the iPXE menu stuff. I suggest you look into using a SQL query/insert or you might be able to code your own plugin to get what you want.

  • Prevent LDAP users from modifying FOG users

    2
    0 Votes
    2 Posts
    206 Views
    george1421G

    @jmccannon The current version of FOG only has admins and that is it. There is an admin plugin module, but I have never personally used it. I do agree that FOG needs to have and admin user and a capture/deploy/imaging user class.

  • New fog dont boot from ipv4 PXE

    7
    0 Votes
    7 Posts
    2k Views
    M

    @george1421 You were right, it was a problem with DHCP, our System team solved it by comparing it with another site, I don’t know the details, but it’s working now, Thank you for your help!

  • MariaDB crashing due to too many connections

    10
    0 Votes
    10 Posts
    3k Views
    P

    the below entry, opening max connections for sql - was indeed a fix.
    default is 151, and i now have been a solid 200 connections for a week with no issues.

    in debian 11, i did the following :

    sudo su -
    mysql -D fog
    SET GLOBAL max_connections = 512;

    To make this a permanent solution, refer to the link in the previous post.

  • ACER TMP P2 (TMP214-53- 51NY) snp.efi Bzimage stuck

    5
    0 Votes
    5 Posts
    856 Views
    F

    @george1421 I made update of IPXE to the latest version and then I tried ipxe.efi and sucess! Thank you!

  • Invisible queued task

    2
    0 Votes
    2 Posts
    387 Views
    T

    Eu havia procurado antes mas não tinha achado solução no fórum para esse problema. Procurando mais, encontrei solução conforme esse post: Storage group activity - 1 active

  • UEFI PXE Boot - Pain

    33
    0 Votes
    33 Posts
    10k Views
    george1421G

    @rogerbrowntdl yes a smaller mother image would be best. 1.5.9 can grow the golden image to the size of the disk but not shrink it. Or just removed the recovery partition from the golden image. If you have an imaging solution in place is the recovery partition even useful?

    I started with fog the shrink option really worked so I would create my golden image on a 70 or 80GB hard drive then expand it post deployment in windows. I also developed our golden images on a VM because I could snapshot the vm before critical steps. That kept me from having to rebuild the entire image again if I botched something. Stuff happens you know.

  • Blank Management Page

    1
    0 Votes
    1 Posts
    344 Views
    No one has replied
  • periodic interrupted capturing on Virtual Box machine

    1
    0 Votes
    1 Posts
    331 Views
    No one has replied
  • AD password issue

    2
    0 Votes
    2 Posts
    470 Views
    R

    @lenain said in AD password issue:

    '

    Is the “&#039:”. giving a problem? MYSQL is typing it that way as a HTML code. I have no coding knowledge nor do I know MYSQL very well but this may be of some use:
    Source:
    https://stackoverflow.com/questions/9596652/how-to-escape-apostrophe-in-mysql
    Quote:
    Possibly off-topic, but maybe you came here looking for a way to sanitise text input from an HTML form, so that when a user inputs the apostrophe character, it doesn’t throw an error when you try to write the text to an SQL-based table in a DB. There are a couple of ways to do this, and you might want to read about SQL injection too. Here’s an example of using prepared statements and bound parameters in PHP:

    $input_str = “Here’s a string with some apostrophes (')”;
    // sanitise it before writing to the DB (assumes PDO)
    $sql = “INSERT INTO table (note) VALUES (:note)”;
    try {
    $stmt = $dbh->prepare($sql);
    $stmt->bindParam(‘:note’, $input_str, PDO::PARAM_STR);
    $stmt->execute();
    } catch (PDOException $e) {
    return $dbh->errorInfo();
    }
    return “success”;
    In the special case where you may want to store your apostrophes using their HTML entity references, PHP has the htmlspecialchars() function which will convert them to “&#039 ;”. As the comments indicate, this should not be used as a substitute for proper sanitisation, as per the example given.

  • Max clientes Storage Node

    3
    0 Votes
    3 Posts
    662 Views
    T

    @george1421 Thank you very much. I will try to run the multicast deploy

  • FOG UEFI USB booting -snponly.efi / snp.efi

    3
    0 Votes
    3 Posts
    5k Views
    Z

    @george1421 Thank you so much … I updated the to the latest ipxe and it sorted out the issue .

  • GPT UEFI ERROR PARTITION 4 TOO BIG

    4
    0 Votes
    4 Posts
    566 Views
    george1421G

    @alexamore90 Updating FOG is a normal process of fog administration. I agree its been quite a while since the last update but the process is the same. FOG 1.5.10 should be released soon, but until then the FOG developers are suggesting that people upgrade to a pre release but stable version of the development release.

    When you installed fog if you use the git method to download the installer files then upgrading is easy and you will not lose any configuration settings. To do the upgrade its pretty easy, to perform a dev-branch upgrade there is one more step.

    In your case if you are on FOG version 1.5.9 and you use the git method you would simply change to the base of the install directory (typically in /root/fogproject) and issue these commands on the fog server.

    cd /root/fogproject git pull git checkout dev-branch git pull cd bin ./installfog.sh

    The git checkout dev-branch command is what changes the installer to use the 1.5.9.115 (or later code base). When 1.5.10 is released you would simply replace that line with to go to the master code base with git checkout master and issue the same commands.

    The installer installfog.sh will look at all of the answers you provided when fog was installed and use them during the reinstall.

    After you update to the 1.5.9.115 dev release you will need to once again update the FOS Linux kernel to 5.15.x series (FOG WebUI->FOG Configuraiton->Kernel update, as well as recompile the latest version of iPXE using this tutorial https://forums.fogproject.org/topic/15826/updating-compiling-the-latest-version-of-ipxe when you complete these after steps you will be at a level that FOG 1.5.10 will be when its released. The above install process will make sure your FOG install will support the newest hardware released by the hardware manufacturers.

    You say that you have 3 FOG servers you really should update them all to be on the same release or you won’t have the fix for the non-movable recovery partition that Microsoft created.

  • Issue 424 Full Reg Fog 1.6

    1
    0 Votes
    1 Posts
    143 Views
    No one has replied
  • Modify the ipxe Advanced login menu

    11
    0 Votes
    11 Posts
    2k Views
    D

    @george1421 Right. I won’t mess with it since we have it set up and working.

  • FOG Start

    7
    0 Votes
    7 Posts
    503 Views
    M

    Vamos la, o IP esta 192.168.0.100, não estou usando roteador, as port 66 r 67 ja esta configuradas .

    A versão que esta sendo usado e 1.5.9.

    Estou usando direto em um cabo de rede, porem não inicia o pxe.

190

Online

12.3k

Users

17.4k

Topics

155.8k

Posts