• FOG ubuntu image fails to update database

    Unsolved
    29
    0 Votes
    29 Posts
    1k Views
    JGeearJ

    @Tom-Elliott All good the last update fixed the issue!

  • upload failed to set permissons (prepareUploadLocation)

    Unsolved
    1
    0 Votes
    1 Posts
    66 Views
    No one has replied
  • Schedule Multicast Tasks Issues

    Unsolved
    8
    1 Votes
    8 Posts
    230 Views
    Tom ElliottT

    @devle I’m the developer for FOG so I’m almost always at the “latest” because i’m the one making them.

    The version I’m at currently is ending in 2283 (so about 6 commits ahead of you.)

    Yes, cron tasks are expected to have stMinute, stHour, stDOM, stMonth, stDOW filled out and delayed tasks would not have this filled out (and the stDateTime would have the timestamp of when that task is expected to kick off.)

  • Windows 11 | 65x HP Z2 Tower G1i

    Unsolved
    2
    0 Votes
    2 Posts
    144 Views
    K

    Can I specify in FOG which hard drive to clone to? For example, using the serial number? That could be stored in the host entry

  • Linux Mint, ran updates and now get HTTP 500 errors

    Unsolved
    1
    0 Votes
    1 Posts
    113 Views
    No one has replied
  • 0 Votes
    3 Posts
    361 Views
    J

    @BPSTravis
    Sorry for the slow response. Apparently I didn’t have email alerts set up yet, and I’m only at this job in the middle of the week, so just seeing your reply this morning.

    I manually added the host and tried the host kernel arguments you suggested. This did not make a difference. I also tried with just xen_emul_umplug=unmodified and this did not work either.

    I switched to the Intel NIC option, this did not make a difference.

    UEFI BIOS mode was set already.

  • Image creation and network connection

    Unsolved
    5
    0 Votes
    5 Posts
    284 Views
    R

    @BLT I don’t necessarily have a timeline for the final release but I did just release an experimental kernel with a newer nic driver. It may work for you if you want to give it a try.

  • Host Service Settings not Saving after changes

    Unsolved
    1
    0 Votes
    1 Posts
    164 Views
    No one has replied
  • Slow computer listing and high CPU with version 1.5.1.01798

    Solved
    34
    1 Votes
    34 Posts
    839 Views
    I

    @Infojoe And a real question : How can I mark this as “solved” ?

  • issue with updating / isntall script

    Unsolved
    2
    0 Votes
    2 Posts
    241 Views
    P

    My workarounds for update on Debian Trixie are:

    A)
    git checkout master ; git pull
    userdel fogproject
    cd bin ; ./installfog.sh

    or
    B)
    apt install lastlog2
    git checkout master ; git pull
    ln -s /usr/bin/lastlog2 /usr/bin/lastlog
    cd bin ; ./installfog.sh

    Peter

  • Kernel Update Failed transfer

    Solved
    17
    0 Votes
    17 Posts
    3k Views
    P

    @george1421 I probably found the reason of disSYNC of fog password and FOG settings. My old fog generated password included an & char (password looked like q&Y**********) but after some updates I found q&#38#38#38…********** in FOG_TFTP_FTP_PASSWORD and Storage Management Password.

    To solve thi issue , I used https://forums.fogproject.org/topic/11203/resyncing-fog-s-service-account-password bit first I changed password in /opt/fog/.fogsettings.

    Then update

    update FOG_TFTP_FTP_PASSWORD update Storage Management Password, delete fogproject user (debian 13 installer bug lastlog vs. lastlog2) rerun installfog.sh

    Now kernel update (tftp access) is working again.

  • FOG hangs on "... free base memory after PXE unload"

    Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    R

    @jas777 Hi sorry for the delay. I believe I have the solution for this issue.
    I haven’t been able fully test these changes on physical hardware, so I pushed them to another branch. Please clone the repository and change the branch like this before installing:

    git clone https://github.com/fogproject/fogproject.git cd fogproject git switch ipxe-bios-test

    Let me know if it works out for you.

  • Cannot authenticate FOG in host to proceed deploy

    Unsolved
    5
    0 Votes
    5 Posts
    851 Views
    ***Redbob*

    As a workaround, we’re doing deploy in these Appliances by Schedule Deploy Tasks, as it bypass the authentication screen. But i would be interesting if we could do deploys without this need.

  • ASUS NUC14RV iPXE PXE boot

    Unsolved
    4
    0 Votes
    4 Posts
    963 Views
    ***Redbob*

    I think this is an issue envolving this kind of nic hardware (Intel I226-V). I opened an issue (18125) where I have some appliances for pfsense, they have got four NICs with this kind of hardware, and we are not getting successfull to deploy an image because it’s not processing authentication, even typíng correct user and password.

  • Quick Registration and Invenotry not working

    Unsolved
    10
    0 Votes
    10 Posts
    2k Views
    S

    @Tom-Elliott

    So I tested current release, and it seems you were able to fix it. It registers new hosts correctly now. However, you still have errors in sed used to enable USB_HCD_USBIO in iPXE compilation to fix non-working keyboard mentioned here: https://forums.fogproject.org/topic/17870/fog-ipxe-menu-no-input/

    You have TAB in your sed, but it doesn’t work correctly. So lines number 80-82:

    sed -i 's+//#define USB_HCD_USBIO+#define USB_HCD_USBIO+g' config/usb.h sed -i 's+//#undef USB_KEYBOARD+#define USB_KEYBOARD+g' config/usb.h sed -i 's+//#undef USB_EFI+#undef USB_EFI+g' config/usb.h

    should be:

    sed -i 's+//#define USB_HCD_USBIO+#define USB_HCD_USBIO+g' config/usb.h sed -i 's+#undef USB_KEYBOARD+#define USB_KEYBOARD+g' config/usb.h sed -i 's+#define USB_EFI+#undef USB_EFI+g' config/usb.h

    TAB after define and undef makes difference and current iPXE release have different syntax. They have:

    #define USB_EFI //#define USB_HCD_USBIO #undef USB_KEYBOARD

    So we need to uncomment define USB_HCD_USBIO, switch undef USB_KEYBOARD to define and switch define USB_EFI to undef.

  • Clients stuck at iPXE initialising devices

    Unsolved
    2
    0 Votes
    2 Posts
    865 Views
    ***Redbob*

    @pcnr I noticed this issue so many years a go. It may be issues refering undionly.kpxe file. You can find some solutions from this forum about this. In my case I did following:

    Make a backup of /tftpboot/undionly.kpxe to undionly.kxpe.bak; Copied /tftpboot/undionly.kkpxe to undionly.kpxe.

    So at next time, this stuck problem was solved.

  • problem with debian/ubuntu images

    Unsolved
    5
    0 Votes
    5 Posts
    874 Views
    X

    I have solved my issue by changing the Host EFI Exit type:

    REFIND_EFI for Windows images
    SANBOOT for Ubuntu/Debian images

    Xavier

  • Boot and Nuke/Disk Wipe PXE Menu - Any Method Welcome!

    Unsolved
    1
    0 Votes
    1 Posts
    756 Views
    No one has replied
  • Fog iPXE Menu no input

    Unsolved
    31
    0 Votes
    31 Posts
    16k Views
    T

    Hello,
    In my attempt to switch to HTTPS for the Fog server, I encountered the same issue of the keyboard being disabled in the iPXE menu. After several unsuccessful tests, I consulted Copilot. After reviewing all the scripts and .h files, it indicated that the issue stemmed from the size of the iPXE.efi file I was using. It was too large due to all the necessary modules for HTTPS, causing iPXE to deactivate the USB keyboard functionality during loading. Consequently, I opted for snponly.efi instead, and now the keyboard works perfectly.

    I modified the script buildipxe.sh :

    sed -i ‘s+#define USB_HCD_USBIO+//#define USB_HCD_USBIO+g’ config/usb.h
    sed -i ‘s+#define USB_KEYBOARD+//#define USB_KEYBOARD+g’ config/usb.h
    sed -i ‘s+//#define USB_EFI+#define USB_EFI+g’ config/usb.h

    May I propose a change in the console.h : Could you set the keyboard map to “dynamic” instead of “us” ? That way we can easily set our language in default.ipxe

    //#define KEYBOARD_MAP us // Default US keyboard map
    #define KEYBOARD_MAP dynamic // Runtime selectable keyboard map

  • All services are globally disabled

    Unsolved
    7
    0 Votes
    7 Posts
    1k Views
    Tom ElliottT

    @Greg-Plamondon I’m going to try delving into this but I’ve been very busy with other things and just haven’t gotten around.

    I do appreciate the patience and assistance.

    The changes you were doing that fixed the problem, please implement them again and you should be back to functional

    Once that is done, do you mind doing a diff between that file and the relevant file in the git repository side:

    Files I think you changed were under: <path>/<to>/<installer>/packages/service/<servicename>/<servicefile>

    I’m not seeing any issues on my test systems.

    not really sure why it isn’t working either.

    I believe you were editing the files in /opt/fog/service/<servicename>/<servicefile>

    So you would do:

    diff -u <path>/<to>/<installer>/packages/service/<servicename>/<servicefile> /opt/fog/service/<servicename>/<servicefile>

81

Online

12.6k

Users

17.5k

Topics

156.4k

Posts