• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. blindhelix
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 9
    • Best 1
    • Controversial 0
    • Groups 0

    blindhelix

    @blindhelix

    1
    Reputation
    52
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    blindhelix Unfollow Follow

    Best posts made by blindhelix

    • RE: FOS boot USB quick image issue.

      @george1421 DUDE it worked after adding imgFormat=0 (for gzip). Thank you again!

      For anyone having the same issue I ended up with this GRUB menu item:

      
      set myfogip=10.100.71.8
      set myimage=/boot/bzImage
      set myinits=/boot/init.xz
      set myloglevel=4
      set timeout=-1
      set fogimage=2018-07-17Win10-1803UEFI
      set imageid=9
      insmod all_video
      
      
      menuentry "1. FOG Quick Image Deploy $fogimage" {
       echo loading the kernel
       linux  $myimage loglevel=$myloglevel initrd=init.xz root=/dev/ram0 rw ramdisk_size=127000 keymap= web=$myfogip/fog/ storage=$myfogip:/images/ storageip=$myfogip boottype=usb consoleblank=0 rootfstype=ext4 imgPartitionType=all chkdsk=0 capone=1 type=down imgid=$imageid img=$fogimage imgFormat=0 imgType=n osid=9 
       echo loading the virtual hard drive
       initrd $myinits
       echo booting kernel...
      }
      
      posted in FOG Problems
      blindhelixB
      blindhelix

    Latest posts made by blindhelix

    • RE: FOS boot USB quick image issue.

      @george1421 DUDE it worked after adding imgFormat=0 (for gzip). Thank you again!

      For anyone having the same issue I ended up with this GRUB menu item:

      
      set myfogip=10.100.71.8
      set myimage=/boot/bzImage
      set myinits=/boot/init.xz
      set myloglevel=4
      set timeout=-1
      set fogimage=2018-07-17Win10-1803UEFI
      set imageid=9
      insmod all_video
      
      
      menuentry "1. FOG Quick Image Deploy $fogimage" {
       echo loading the kernel
       linux  $myimage loglevel=$myloglevel initrd=init.xz root=/dev/ram0 rw ramdisk_size=127000 keymap= web=$myfogip/fog/ storage=$myfogip:/images/ storageip=$myfogip boottype=usb consoleblank=0 rootfstype=ext4 imgPartitionType=all chkdsk=0 capone=1 type=down imgid=$imageid img=$fogimage imgFormat=0 imgType=n osid=9 
       echo loading the virtual hard drive
       initrd $myinits
       echo booting kernel...
      }
      
      posted in FOG Problems
      blindhelixB
      blindhelix
    • RE: FOS boot USB quick image issue.

      @george1421 Thank you so much! I’ll try this hopefully tonight but it might end up being tomorrow. Seriously, thank you for following up.

      posted in FOG Problems
      blindhelixB
      blindhelix
    • RE: FOS boot USB quick image issue.

      @george1421 I tried just copying the files from the place you specified and it still did not work. When I have a minute I’ll try rebuilding the flash drive as last time I tried that I was still on 1.4.4.

      posted in FOG Problems
      blindhelixB
      blindhelix
    • RE: FOS boot USB quick image issue.

      @george1421 I should have also clarified better in my original post that when we use PXE boot we use quick image, not like a register host and then push image method. So to answer your question, when we do a normal PXE boot, choose quick image, and pick that same image, it works. At least with the other models that do not require the USB bootable FOS.

      posted in FOG Problems
      blindhelixB
      blindhelix
    • RE: FOS boot USB quick image issue.

      @Sebastian-Roth This is the only image that we use currently, and it does work via PXE boot. It also works when we use the USB with the “FOG Image Deploy/Capture” GRUB menu item. I don’t believe its an issue with the image itself. I should have made that clear in my original post. My bad.

      posted in FOG Problems
      blindhelixB
      blindhelix
    • RE: FOS boot USB quick image issue.

      @george1421 That is super helpful. I’ll get the new kernel and init and try again.
      With the video I don’t think there was an exact error. It just said its going to use partclone to copy the image over and then never does. Hopefully that makes sense. I can get a video of what a working one does over PXE if that helps.

      posted in FOG Problems
      blindhelixB
      blindhelix
    • FOS boot USB quick image issue.

      Hello all,

      I built a USB booting fos image using these instructions:

      https://forums.fogproject.org/topic/7727/building-usb-booting-fos-image/4
      https://forums.fogproject.org/topic/9073/fog-boot-alternatives/18

      The goal is to get the helpdesk team to be able to deploy via the usb because of issues we have on certain models (X1 Yoga, and Lenovo P52) not being able to get the bzImage/init.xz files via the normal PXE booting method. The issue that I am having is shown in the video but basically when I try doing the quick image deploy, everything appears to work but it skips the actual part of going into PartClone.
      Video of this happening:
      https://drive.google.com/file/d/1wRj_z9emPN1rBrsw4P4VzYDSA50ftMKO/view?usp=sharing

      I previously had it working with this config:

      set myfogip=10.100.71.8
      set myimage=/boot/bzImage
      set myinits=/boot/init.xz
      set myloglevel=4
      set timeout=-1
      set fogimage=2018-07-17Win10-1803UEFI
      set imageid=9
      insmod all_video
      
      
      menuentry "1. FOG Quick Image Deploy $fogimage" {
       echo loading the kernel
       linux  $myimage loglevel=$myloglevel initrd=init.xz root=/dev/ram0 rw ramdisk_size=127000 keymap= web=$myfogip/fog/ storage=$myfogip:/images/ storageip=$myfogip boottype=usb consoleblank=0 rootfstype=ext4 imgPartitionType=all chkdsk=0 capone=1 type=down imgid=$imageid img=$fogimage imgType=n osid=9 
       echo loading the virtual hard drive
       initrd $myinits
       echo booting kernel...
      }
      

      One day seemingly out of no where it stopped working and only does what is shown in the video. It seems like the scipt thinks that it worked but skips the PartClone imaging portion.
      I have tried rebuilding the USB, and I also upgraded from FOG 1.4.4 to 1.5.5.
      I’m curious if anyone else has seen this issue or can look over my configs to see if I’m missing something. Or maybe there is a place in the logs I can look at.

      Currently I have a workaround that works well, where I use the normal Image Deploy grub menu item:

      menuentry "1.5 FOG Image Deploy/Capture" {
       echo loading the kernel
       linux  $myimage loglevel=$myloglevel initrd=init.xz root=/dev/ram0 rw ramdisk_size=127000 keymap= web=$myfogip/fog/ boottype=usb consoleblank=0 rootfstype=ext4
       echo loading the virtual hard drive
       initrd $myinits
       echo booting kernel...
      }
      

      This is less ideal as someone has to log into the FOG web server and deploy the image form there first.

      Thanks in advance for any help! 🙂

      posted in FOG Problems
      blindhelixB
      blindhelix
    • RE: "Missing a temporary folder" error when trying to create a snapin or snapinpack

      Tom,
      Thanks for your help! I reapplied (what seemed to be the already) correct permissions, rebooted the server and now it works!

      posted in FOG Problems
      blindhelixB
      blindhelix
    • "Missing a temporary folder" error when trying to create a snapin or snapinpack

      I get the following error when when following the instructions in the wiki to create a snapin or snapin pack:
      0_1520634154902_003021be-d49d-4a89-b174-ed3c1dccdecc-image.png

      Everything else works great. I’m wondering what I did wrong. If it makes a difference I’m running FOG version 1.4.4 on Ubuntu server 16.04.4.
      Does anyone have any ideas? Let me know if any other information would be helpful or if there is a place in the logs I should be looking at.

      posted in FOG Problems
      blindhelixB
      blindhelix