• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. jmeyer
    3. Topics
    J
    • Profile
    • Following 0
    • Followers 1
    • Topics 56
    • Posts 285
    • Groups 0

    Topics

    • J

      No pending host

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved FOG Problems
      7
      0 Votes
      7 Posts
      662 Views
      J

      @Tom-Elliott Sorry for the lack of clarity in my explanations and the use of screenshots unrelated to my problem.

      I have upgrade to the last beta and deploy on registered host works well.
      Thank you.

      I’ll check if not registered host now appear in Pending Hosts.

    • J

      FOG Portable

      Watching Ignoring Scheduled Pinned Locked Moved General
      3
      0 Votes
      3 Posts
      262 Views
      J

      @george1421 I have installed fog with DHCP server but DNS doesn’t work at all (no dns server appear on windows client) so I’m stuck.
      It’s my first time installing DHCP and DNS on Debian so I think I made mistakes.
      DHCP work fine.

      edit : It’s fixed. I forgot to add “option domain-name” and “option domain-name-servers” in dhcpd.conf

      For the script, I think it must be simple to set FOG as DHCP server at startup if after 10 min no IP is given from a DHCP server then set server to static IP and start DHCP and DNS services.
      And then reverse this at shutdown.
      Maybe this can be done manually first.

      edit : Here is the first script.
      I have create files ending with .dhcp for conf for external DHCP/DNS and file ending with .static for conf for local DHCP/DNS.
      It looks to work fine.

      # Configuration actuelle echo "Etat DNS local :" systemctl is-active bind9 echo "Etat DHCP local :" systemctl is-active isc-dhcp-server echo "" loc(){ # Configuration DHCP local echo "DHCP local" # Configuration if [ -e /etc/network/interfaces.static ] then echo "Copie interfaces" cp /etc/network/interfaces.static /etc/network/interfaces else echo "interfaces.static not found" exit 1 fi echo "Redemarrage service reseau" systemctl restart networking.service if [ -e /etc/resolv.conf.static ] then echo "Copie resolv.conf" cp /etc/resolv.conf.static /etc/resolv.conf else echo "resolv.conf.static not found" exit 1 fi # Services systemctl start bind9 systemctl start isc-dhcp-server } ext(){ # Configuration DHCP externe echo "DHCP externe" # Configuration if [ -e /etc/network/interfaces.dhcp ] then echo "Copie interfaces" cp /etc/network/interfaces.dhcp /etc/network/interfaces else echo "interfaces.dhcp not found" exit 1 fi echo "Redemarrage service reseau" systemctl restart networking.service if [ -e /etc/resolv.conf.dhcp ] then echo "Copie resolv.conf" cp /etc/resolv.conf.dhcp /etc/resolv.conf else echo "resolv.conf.dhcp not found" exit 1 fi # Services systemctl stop bind9 systemctl stop isc-dhcp-server } # Demande de Configuration while true; do read -p "Voulez vous passer en DHCP externe ou en DHCP local? (e:externe l:local) " el case $el in [Ee]* ) ext; break;; [Ll]* ) loc; break;; * ) echo "Please answer yes or no.";; esac done
    • J

      Stuck at "ipxe initialising devices.." (Lenovo again)

      Watching Ignoring Scheduled Pinned Locked Moved Hardware Compatibility
      3
      0 Votes
      3 Posts
      1k Views
      J

      @Tom-Elliott
      Of course, it’s disabled. 😉

    • J

      Full registration customised

      Watching Ignoring Scheduled Pinned Locked Moved General
      2
      0 Votes
      2 Posts
      3k Views
      J

      Do you think writing this in fog.man.reg after line

      [[ $exists != "#!ok" ]] && handleError "Unable to register host: $exists ($0)\n Args Passed: $*"

      could do it :

      host="" imageid="999" blDoAD="Y" realdoimage=$(echo -n 1 | base64) res="" user64=$(echo "fog" | tr -d '\012' | base64) pass64=$(echo "password" | tr -d '\012' | base64) while [[ $res != "#!ok" ]]; do echo -n " * Enter hostname for this computer: " read host if [[ ${#host} -gt 15 ]]; then host=${host:0:15} echo " | Truncated to 15 characters: $host" usleep 2000000 fi host=$(echo $host | base64) res=$(curl -Lks --data "host=$host" ${web}service/hostnameloop.php 2>/dev/null) [[ $res != "#!ok" ]] && echo "$res" done dots "Attempting to register host" res="" while [[ -z $res ]]; do res=$(curl -Lks --data "sysuuid=${sysuuid}&mac=$mac&advanced=$(echo -n 1 | base64)&host=$host&imageid=$imageid&doimage=$realdoimage&doad=$blDoAD&username=$user64&password=$pass64" ${web}service/auto.register.php 2>/dev/null) echo "$res" usleep 2000000 done . /bin/fog.inventory usleep 2000000
    • J

      Error PXE-E18 - Lenovo ThinkPad E16

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved FOG Problems
      9
      0 Votes
      9 Posts
      2k Views
      J

      @george1421 I have run all test and first, there were a firewall rule that were blocking TFTP from the FOG server then after running more test, I realised that it’s not link to hardware or sofware on the server.
      During test, I just changed the port on the switch next the computer to keep most of the hardware between server and client.
      On same vlan I run at 450 Mbits/s (around 50 mo/s) and when I change vlan, I run at 150 Mb/s only.
      And under 20 mo/s max with Windows TFTP client so I give up using it to run more tests.
      Colleagues says there is not QOS but there is definitly something reducing the speed.

      a06abb6b-6197-402f-ba10-c8be4fddc41a-image.png

    • J

      Checking file after moving them (CRC with cksum and File-Hast)

      Watching Ignoring Scheduled Pinned Locked Moved Tutorials
      1
      0 Votes
      1 Posts
      438 Views
      No one has replied
    • J

      BSOD only after PXE

      Watching Ignoring Scheduled Pinned Locked Moved Solved Windows Problems
      7
      0 Votes
      7 Posts
      2k Views
      J

      @george1421 Rebuild to last version didn’t fix the problem.
      @Tom-Elliott Exit type to EXIT give a “chainloading failed…”

      using snponly.efi fixed the problem.

      Thank you for your help.

    • J

      Storage with NFS share on NetGear ReadyNAS

      Watching Ignoring Scheduled Pinned Locked Moved Tutorials
      1
      1 Votes
      1 Posts
      862 Views
      No one has replied
    • J

      Update to last dev (1.6.0-alpha.1182)

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      4
      0 Votes
      4 Posts
      992 Views
      J

      @Sebastian-Roth
      I think to know what is blocking.
      I have to change vlan and fog IP adress to make updates but it use IP parameter in the updateDB() function :

      wget --no-check-certificate -qO - --post-data="confirm&fogverified" --no-proxy ${httpproto}://${ipaddress}${webroot}management/index.php?node=schema >>$error_log 2>&1

      I think -X with help to finish install.

    • J

      WAPT snapins

      Watching Ignoring Scheduled Pinned Locked Moved Tutorials
      4
      1 Votes
      4 Posts
      968 Views
      F

      I use WAPT to deploy softwares but i don’t understand your use case.
      Why not just deploy WAPT agent and use command like “wapt-get install tis-yourPackage” ?

    • J

      Snapins public storage

      Watching Ignoring Scheduled Pinned Locked Moved Feature Request
      1
      0 Votes
      1 Posts
      288 Views
      No one has replied
    • J

      Offline install or setup DHCP later

      Watching Ignoring Scheduled Pinned Locked Moved General
      2
      0 Votes
      2 Posts
      576 Views
      george1421G

      @jmeyer Having a FOG server with a dual nic is a standard and supported configuration for installing FOG.

      There are a few things you need to know/do before installing FOG.

      Know the linux kernel names of your network interfaces. You can see this by using the following command ip a s Identify the name of your business network interface and your imaging network interface. Document these names. Make sure your imaging network interface is configured for a static IP address. FOG does not like having the imaging network interface IP address changing once FOG is installed. Make sure your business network interface has a default route defined so that it can get to the internet. Confirm that your fog server has internet access. Make sure your imaging network interface does not have a default route defined.

      Now use the git method to download the installer files onto your FOG server.

      Install FOG. During the installation process you will be prompted for the linux name of your imaging network interface. Key that in when requested. You will also be prompted to if you want to install a dhcp server. Answer yes to this. The fog installer will only bind the dhcp server to the imaging network interface leaving your business network interface alone during the installation of FOG. There will be no conflicts on the business side since fog will only focus on the interface you said that is your imaging network.

    • J

      Fresh install debian 11

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      6
      0 Votes
      6 Posts
      3k Views
      S

      @jmeyer said in Fresh install debian 11:

      Yes. I’m an running Debian on a Qnap with Container Station.

      Have you ever had FOG running on that before? NFS can be an issue in container virtualization. It definitely is on Proxmox when you use the default settings. I don’t know about Qnap.

    • J

      [FOG 1.5.9-RC2.11] No configuration methods succeeded

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      7
      0 Votes
      7 Posts
      2k Views
      J

      @Sebastian-Roth We have find out that bios mode had to set to “Legacy Support” with priority on “UEFI First” and not with bios mode on “UEFI”.
      Problem wasn’t coming from FOG.

      Sorry and thank you for your help.

    • J

      GUI log

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      5
      0 Votes
      5 Posts
      605 Views
      J

      @Tom-Elliott Perfect ! Thank you.

    • J

      [FOG 1.6] SQL Install by FOG

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      9
      0 Votes
      9 Posts
      2k Views
      S

      @jmeyer Just pushed the fixes to working-1.6 as well.

    • J

      [FOG 1.6] “Attempting to check in… Failed”

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      25
      0 Votes
      25 Posts
      9k Views
      S

      @jmeyer I am marking this solved as we have not heard back on this. Feel free to update this topic if you are still working on this and need help.

    • J

      [FOG 1.6] Updating Database Failed

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      5
      0 Votes
      5 Posts
      646 Views
      J

      @Tom-Elliott Fast as always. Thank you !

    • J

      HP EliteDesk 800 G4 WKS TWR

      Watching Ignoring Scheduled Pinned Locked Moved Hardware Compatibility
      4
      0 Votes
      4 Posts
      787 Views
      Tom ElliottT

      You should be able to use the original refind.efi from 1.6.0 as this is one of the older versions. Whether it works I don’t know, but I do know of at least one person who uses this old version (0.9.4 I believe?) with their HP machines. They also needed to use the 10 second delay files due to NICs being power save ready.

    • 1
    • 2
    • 3
    • 1 / 3