• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Quazz
    3. Best
    Q
    • Profile
    • Following 3
    • Followers 2
    • Topics 27
    • Posts 1,977
    • Groups 3

    Posts

    Recent Best Controversial
    • RE: To SysPrep or Not, That is the Question.

      I sysprep because I create generic, or all purpose images. We get basically any model you can think of in here, so I can’t make hardware specific images.

      It’s the only reason I use it though.

      posted in General
      Q
      Quazz
    • RE: Computers Join Domain before Hostname Changes

      @zpoling I probably update it 3 times a day or more, but then again I’m in the testers group for a reason.

      posted in FOG Problems
      Q
      Quazz
    • RE: Feature request for FOG 1.6.x - Replace NFSv3

      Some reading to consider: https://www.linuxjournal.com/content/encrypting-nfsv4-stunnel-tls

      Mentions SSHFS as well (even faster than clear text NFS in their tests??)

      I can’t really decide, in the end. Each approach has its own set of downsides and upsides it looks like.

      What is most important? Reliability (eg NFS restarting TCP transactions), Security (encrypting the data stream), Maintainability (KISS), Performance (NFS likely slower than SSH pipe)

      Additionally, I wonder if we would see differences in performance when we compare transfer performance of a static file vs a data stream. Or perhaps this consideration is irrelevant since more than likely the bottleneck won’t be network transfer anyway, right?

      posted in Feature Request
      Q
      Quazz
    • RE: Sysrprep Windows 10 image

      Depending on your hardware, you may need the right driver.

      Or if you’re in a VM, you need to select the right device to emulate.

      posted in Windows Problems
      Q
      Quazz
    • RE: Rolling FOG out to US Site

      @RobTitian16 I don’t see why you’d want to do that from SetupComplete when you can just copy it during the postdownload stage.

      You may still need to point to the absolute path the the msi installer on the windows drive, but I’m not sure.

      posted in General
      Q
      Quazz
    • RE: Imaging New VM with 8.1 Image

      Are you using a dynamic size VHD? If so, please try a fixed size.

      posted in FOG Problems
      Q
      Quazz
    • RE: Release plan for FOG

      @trialanderror To a certain extent important bugfixes are backported where possible. But certain fixes require certain changes to how it works from the get go and can’t realistically be backported. You’d have to make so many changes you’re essentially updating it to the new version anyway.

      FOG is worked on by people in their free time. They offer a free and open source product, free of charge with quick support, often from the developers themselves. It’s a little bit insane to ask for a LTS support on older version, imo.

      posted in Feature Request
      Q
      Quazz
    • RE: Windows 10- moving from 1511 to 1607 in audit mode?

      @george1421 Yes, I don’t use unattend files myself (and I find defprof more reliable than unattend as well), though, so hence the alternative. My start menus aren’t broken on deploy at any rate, which was a huge issue with customizing the start menu without defprof

      posted in Windows Problems
      Q
      Quazz
    • RE: FOG and NFS Share on NAS

      https://wiki.fogproject.org/wiki/index.php?title=Use_FOG_with_FreeNAS

      https://wiki.fogproject.org/wiki/index.php?title=NAS_Storage_Node

      These seem a bit on the old side, but for the most part should work fine.

      posted in General
      Q
      Quazz
    • RE: Storage Management (Usage / Slow)

      @ITCC You’ll need a storage group for each location and assign the image to both groups, with the main office being the main storage group so FOG knows in which direction to replicate.

      Please refer to Tom’s answer instead

      posted in General
      Q
      Quazz
    • RE: Captured images not moving from */images/dev to */images/<hostname>

      @alorsung Capture happens through NFS and the moving happens through FTP, so yes, this is a typical FTP problem.

      posted in FOG Problems
      Q
      Quazz
    • RE: fog snapins - parallel execution

      @MarkusK This depends entirely on your snapin, it simply accepts the exit code it gets from the program it is told to run.

      If this is not the desired behavior, you need to alter your setup.

      posted in Windows Problems
      Q
      Quazz
    • RE: Images are not deleting

      @LPetelik Can you tell us what browser she’s using and if she’s using any extensions that might block scripts? (some adblockers do, extensions like noscript do, etc)

      posted in General
      Q
      Quazz
    • RE: MAC Address Questions

      @AngryScientist On the host page, there are checkboxes on the right next to each MAC to exclude them.

      posted in General
      Q
      Quazz
    • RE: PCs dont get to the Fog menu/ Windows startup

      I’m guessing there’s another DHCP server on your network.

      If that’s the case, please refer to https://wiki.fogproject.org/wiki/index.php?title=Using_FOG_with_an_unmodifiable_DHCP_server/_Using_FOG_with_no_DHCP_server#DNSMASQ_settings_for_iPXE

      posted in FOG Problems
      Q
      Quazz
    • RE: Partitions is not shrinking in windows 10

      @coop90 There’s a program named Terminal (on Ubuntu you can search for this by clicking on the icon top left and typing, assuming default theme). Paste them in there

      posted in Windows Problems
      Q
      Quazz
    • RE: XenServer and FOG

      Only thing I can imagine being a bit troublesome would be the NIC/Virtual NIC setup, but should be fine.

      posted in General
      Q
      Quazz
    • RE: FOG Reporting - query issue?

      @Wayne-Workman DATE() returns the date without the timestamp. So it will be assumed to be 00:00:00

      Use just NOW() and drop DATE(), so that it is updated more accurately.

      posted in General
      Q
      Quazz
    • RE: Custom ISO (centos 6/7 ) installation issues.

      @Tom-Elliott I think he simply forgot to put vmlinuz after imgargs.

      posted in FOG Problems
      Q
      Quazz
    • RE: Windows 7 : universal image with Postdownload script : issues

      Well, I think why that script won’t work 100% is because the script has a tiny bug in it.

                          if [[ ! -d /ntfs/windows && ! -d /ntfs/Windows && ! -d /ntfs/WINDOWS ]]; then
                              echo "Not found"
                              umount /ntf >/dev/null 2>&1
                              continue
                          fi
      

      Should be

                          if [[ ! -d /ntfs/windows && ! -d /ntfs/Windows && ! -d /ntfs/WINDOWS ]]; then
                              echo "Not found"
                              umount /ntfs >/dev/null 2>&1
                              continue
                          fi
      

      The problem being that when the script loops through the mounting of parts, but can’t find the Windows folder, it fails to unmount the ntfs folder, which will not allow the system to then mount anything else to it, and thusly it fails.

      Not sure why it would work for your optiplex, but fix that and try again, imo.

      edit: Did not see Tom’s post, I essentially posted the same thing.

      posted in Windows Problems
      Q
      Quazz
    • 1 / 1