• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. FlareImp
    3. Posts
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 28
    • Posts 141
    • Best 7
    • Controversial 0
    • Groups 0

    Posts made by FlareImp

    • Driver directory replication

      I have a Driver folder in our image directory that is very large, is there a way to set replication to sync only specific drivers to specific sites? I tried setting up an “image” and pointed it to the specific folder (Image Path: Images/Drivers/Optiplex7400) inside the driver folder put it never replicated.

      Currently the Driver folder is replicating 110GBs out to all of our sites when only a few folders really need to be copied.

      posted in General Problems
      F
      FlareImp
    • RE: Default Storage Group Change

      @tom-elliott sweet! Thanks Tom!

      posted in General Problems
      F
      FlareImp
    • Default Storage Group Change

      This is more of a question than a problem. Would renaming the “Default” Storage Group and the “DefaultMember” Node cause an issue? and if so what would need to be changed to prevent said issue?

      Thanks,

      posted in General Problems
      F
      FlareImp
    • RE: Add Full Inventory Task to PXE Menu

      @sebastian-roth Thank you and @george1421 for your assistance it this matter. It worked great!

      Thanks again and keep up the great work!

      posted in FOG Problems
      F
      FlareImp
    • RE: Add Full Inventory Task to PXE Menu

      @george1421 Yes, all my computers are using the fog client, the issue is we are not allowed to set PXE as the first boot option, has to be the hard drive, so it negates the feature. I was just thinking instead of giving our Interns/temp help access to fog and starting inventory tasks from the web gui it would just be faster to PXE boot a computer and select “run inventory”.

      posted in FOG Problems
      F
      FlareImp
    • RE: Add Full Inventory Task to PXE Menu

      @george1421 If I have a host that is not registered in fog and I choose to run the Full Inventory task from the PXE menu, can’t we do something similar to that with hosts that are already registered? I do remember back in the Fog .32 days it was possible.

      Thanks for all your assistance!

      posted in FOG Problems
      F
      FlareImp
    • RE: Add Full Inventory Task to PXE Menu

      @george1421 after adding your changes to the config now it is showing the hostname and mac but saying no task found. So would the next step be adding a command to create and start the inventory task?

      posted in FOG Problems
      F
      FlareImp
    • RE: Add Full Inventory Task to PXE Menu

      @george1421 adding the space after the boot|| has gotten me farther now.

      Now it is displaying Attempting to check in …Failed
      Invalid MAC Address! (in line for )

      posted in FOG Problems
      F
      FlareImp
    • RE: Add Full Inventory Task to PXE Menu

      @george1421 If I delete the “&mac=00:00:00:00:00:01” part I get the following output

      #!ipxe
      set fog-ip 10.220.9.50
      set fog-webroot fog
      set boot-url http://${fog-ip}/${fog-webroot}
      cpuid --ext 29 && set arch x86_64 || set arch i386
      goto get_console
      :console_set
      colour --rgb 0x00567a 1 ||
      colour --rgb 0x00567a 2 ||
      colour --rgb 0x00567a 4 ||
      cpair --foreground 7 --background 2 2 ||
      goto MENU
      :alt_console
      cpair --background 0 1 ||
      cpair --background 1 2 ||
      goto MENU
      :get_console
      console --picture http://10.220.9.50/fog/service/ipxe/bg.png --left 100 --right 80 && goto console_set || goto alt_console
      :MENU
      menu
      colour --rgb 0xff0000 0 ||
      cpair --foreground 1 1 ||
      cpair --foreground 0 3 ||
      cpair --foreground 4 4 ||
      item --gap Host is NOT registered!
      item --gap -- -------------------------------------
      item fog.local Boot from hard disk
      item fog.memtest Run Memtest86+
      item fog.reginput Perform Full Host Registration and Inventory
      item fog.reg Quick Registration and Inventory
      item fog.deployimage Deploy Image
      item fog.multijoin Join Multicast Session
      item fog.sysinfo Client System Information (Compatibility)
      item fog.custom.inventory Custom Quick Inventory
      choose --default fog.local --timeout 3000 target && goto ${target}
      :fog.local
      chain -ar ${boot-url}/service/ipxe/grub.exe --config-file="rootnoverify (hd0);chainloader +1" || goto MENU
      :fog.memtest
      kernel memdisk initrd=memtest.bin iso raw
      initrd memtest.bin
      boot || goto MENU
      :fog.reginput
      kernel bzImage32 loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=275000 web=http://10.220.9.50/fog/ consoleblank=0 rootfstype=ext4 storage=10.220.9.50:/images/ storageip=10.220.9.50 nvme_core.default_ps_max_latency_us=0 loglevel=4 mode=manreg
      imgfetch init_32.xz
      boot || goto MENU
      :fog.reg
      kernel bzImage32 loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=275000 web=http://10.220.9.50/fog/ consoleblank=0 rootfstype=ext4 storage=10.220.9.50:/images/ storageip=10.220.9.50 nvme_core.default_ps_max_latency_us=0 loglevel=4 mode=autoreg
      imgfetch init_32.xz
      boot || goto MENU
      :fog.deployimage
      login
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param username ${username}
      param password ${password}
      param qihost 1
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      param sysuuid ${uuid}
      :fog.multijoin
      login
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param username ${username}
      param password ${password}
      param sessionJoin 1
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      param sysuuid ${uuid}
      :fog.sysinfo
      kernel bzImage32 loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=275000 web=http://10.220.9.50/fog/ consoleblank=0 rootfstype=ext4 storage=10.220.9.50:/images/ storageip=10.220.9.50 nvme_core.default_ps_max_latency_us=0 loglevel=4 mode=sysinfo
      imgfetch init_32.xz
      boot || goto MENU
      :fog.custom.inventory
      kernel bzImage
      imgfetch init.xz
      imgargs loglevel=4 initrd=init.xz root=/dev/ram0 rw ramdisk_size=275000 web=${boot-url}/ consoleblank=0 rootfstype=ext4 storage=${fog-ip}:/images/ storageip=${fog-ip} loglevel=4 mode=inventory deployed=1
      boot|| goto MENU
      param sysuuid ${uuid}
      :bootme
      chain -ar http://10.220.9.50/fog/service/ipxe/boot.php##params ||
      goto MENU
      autoboot
      
      posted in FOG Problems
      F
      FlareImp
    • RE: Add Full Inventory Task to PXE Menu

      @george1421 Okay, I did that and it just takes me to the fog web gui and has me log into the home screen.

      I am running Ubuntu 16.04 with Fog 1.5.9

      posted in FOG Problems
      F
      FlareImp
    • RE: Add Full Inventory Task to PXE Menu

      @george1421 Okay, i deleted out the new line from loglevel=4 so its one string but am still seeing the output above. How do I call the URL your asking for?

      posted in FOG Problems
      F
      FlareImp
    • RE: Add Full Inventory Task to PXE Menu

      @george1421 here is what it shows

      Capture.PNG

      posted in FOG Problems
      F
      FlareImp
    • RE: Add Full Inventory Task to PXE Menu

      @george1421 I tried the task you listed, when I run it, it says

      “Could not boot: No such file or directory (http://pxe.org/2d16208e))”

      posted in FOG Problems
      F
      FlareImp
    • RE: Add Full Inventory Task to PXE Menu

      @george1421 I’m going into the web gui for the client and choosing the advanced menu and then clicking on inventory to start an inventory task. then I go to the client that I chose and boot it into pxe to start the task. I would like to be able to just run the inventory task directly from the pxe menu.

      posted in FOG Problems
      F
      FlareImp
    • Add Full Inventory Task to PXE Menu

      Hello! Is there a way to add the Inventory task to the PXE Boot Menu so I do not need to access the web GUI to execute it?

      Thanks

      posted in FOG Problems
      F
      FlareImp
    • RE: Upgrade issue 1.5.8 to 1.5.9

      @sebastian-roth That took care of the problem.

      Thank you all.

      posted in FOG Problems
      F
      FlareImp
    • RE: Upgrade issue 1.5.8 to 1.5.9

      @Tom-Elliott I do not have a fog.dashboard.js file in that directory.

      posted in FOG Problems
      F
      FlareImp
    • RE: Upgrade issue 1.5.8 to 1.5.9

      Well I re-ran the Installer for Fog 1.5.9 and reboot the fog server. I imaged 5 computers and now they are changing the names and adding to the domain correctly using Fog Client 12 without issue.

      The new issue I am seeing is in the image I posted below.

      Capture.PNG

      posted in FOG Problems
      F
      FlareImp
    • RE: Upgrade issue 1.5.8 to 1.5.9

      @Tom-Elliott I uninstalled the fog client in Windows and it changed the name and added to the domain after being reinstalled. So, it will add to the domain if I reinstall the service but doesn’t work when it is installed during imaging.

      I have other fog servers that are still on 1.5.8 with client 11.19 and do not have this issue.

      posted in FOG Problems
      F
      FlareImp
    • RE: Upgrade issue 1.5.8 to 1.5.9

      @Sebastian-Roth I use the Post Download Scripts to copy the FogService.msi file from the fog server to the client and then the SetupComplete.cmd runs the the FogService.msi file to install it. I just changed the Fog Client version on my fog server to change between the different versions.

      posted in FOG Problems
      F
      FlareImp
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 2 / 8