• 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
    • Best 545
    • Controversial 0
    • Groups 3

    Best posts made by Quazz

    • RE: TFTP Server Prompt - PXE Boot

      This is a DCHP server issue. It nearly always happens when there are two DHCP servers fighting over who gets to deliver information.

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

      Like Scott said, you need to alter some registry keys after an upgrade.

      Also, check if it didn’t sneakily create some new user.

      But overall, I’d recommend simply installing a clean image.

      posted in Windows Problems
      Q
      Quazz
    • RE: Upload / Download issue

      @Sozen /images/dev should be empty (bar .mntcheck) after a successful upload.

      However, given that it is obviously not working properly, something else is up. Might be worthwhile to try and capture again and watch it closely.

      Does it resize before capture? (if no, then you’re not using resizable image type)

      Does it capture every partition?

      Does it report any errors at any stage?

      posted in FOG Problems
      Q
      Quazz
    • RE: Normal Snapin deploy .reg file

      @rmmadden Try

      REG IMPORT yourfile.reg
      

      regedit is a bad tool for commandline, imo. REG is the way to go for command line registry stuff.

      Regedit on commandline won’t notify of any possible errors, whereas REG might.

      posted in Windows Problems
      Q
      Quazz
    • RE: I can´t Wake-Up Groups

      Could you update to the latest revision and try again?

      posted in FOG Problems
      Q
      Quazz
    • RE: How to use both PXE and WoL on windows 10?

      @Andy-Nicolson Any BIOS updates available per chance?

      Sounds like a bug on that end.

      posted in Windows Problems
      Q
      Quazz
    • RE: PXE boot qwerty

      @plegrand You can upvote individual posts by clicking on the arrow next to ‘quote’

      Only moderators can solve threads.

      posted in FOG Problems
      Q
      Quazz
    • RE: After upgrade last version fog z400 problem boot

      @Abuelika Alright, so it’s definitely something to do with the kernel.

      Could you try adding pcie_aspm=off to kernel parameters at FOG General settings - FOG_KERNEL_ARGS ?

      posted in Hardware Compatibility
      Q
      Quazz
    • RE: Boot to Standalone FOG Server

      @Tony-Fiorentino Since you mention it’s old, it’s possible the drive has some bad sectors, causing the write to fail.

      posted in FOG Problems
      Q
      Quazz
    • RE: Upgrading from Fog 1.2.0 to 1.3.0

      @sjensen

      Then as Wayne said, make a new thread for it, sounds like your install is… special. Sudo being denied permission is silly.

      posted in FOG Problems
      Q
      Quazz
    • RE: Windows Server Shared folder as image repository

      The reason it’s failing is because you’re trying to export a drive that’s mounted from an external source. In a default installation, this won’t work. Some people have tried some (I think it was kernel) changes to allow for it, but I wouldn’t recommend it.

      Given that you have a Windows Server 2012 you should be able to set it up as an NFS server directly, no need to use Samba sharing.

      posted in FOG Problems
      Q
      Quazz
    • RE: Driver Injection - Script Not Being Called

      @RobTitian16 This script seems to have quite a few problems.

      #!/bin/bash 
      
      ceol='tput el';
      machine='dmiedecode -s system-product-name'; #Gets machine model
      machine="${machine%"${machine##*[![:space:]]}"}" #Removes trailing space
      system64="/ntfs/Windows/SysWOW64/regedit.exe"; #Determine if it's 64 bit or not
      if [ -f "$system64" ]; then
      	setarch="x64"
      else
      	setarch="x86"
      fi
      
      dots "Preparing Drivers";
      
      #Create the local folder on the imaged PC: 
      mkdir /ntfs/Windows/DRV &>/dev/null;
      echo -n "In Progress";
      
      # Only use CAB files for the drivers. 
      # Place the cab files for the specific system on the FOG Server:
      # i.e. Model Latitude E5410, Windows 7 x64 image would be: 
      # /fog/Drivers/Win7/Latitude E5410/x64 
      cabextract -d /ntfs/Windows/DRV "/images/Drivers/${machine}"/*.CAB &>/dev/null; 
      
      # Add the driver location on the PC to devicepath in Registry: 
      regfile="/ntfs/Windows/System32/config/SOFTWARE"
      key="\Microsoft\Windows\CurrentVersion\DevicePath"
      devpath="%SystemRoot%\inf;%SystemRoot%\DRV";
      reged -e "$regfile" &>/dev/null <<EOFREG
      ed $key
      $devpath
      q
      y
      EOFREG
      # Remove the "In Progress" and replace it with: "Done"
      echo -e "\b\b\b\b\b\b\b\b\b\b\b${ceol}Done"; 
      

      Changed to use bash (as sh is more restrictive and does not support some of the things done here)

      Changed =f if condition to the correct -f

      setarch appears unused, however, so not even sure why that’s being checked for?

      posted in FOG Problems
      Q
      Quazz
    • RE: Driver Injection - Script Not Being Called

      @RobTitian16 I don’t know what else you have in your scripts, I can only make guesses.

      This script does not mount anything, so it wouldn’t be able to make the C:\Windows\DRV directory if the target is not mounted to begin with.

      Of course if you have mounted it in another script (and not have it unmount it) then it should work, assuming everything works as expected.

      posted in FOG Problems
      Q
      Quazz
    • RE: Corrupted bootfile name
      option bootfile-name “undionly.kpxe”;
      

      Is incorrect

      option bootfile-name "undionly.kpxe";
      

      Is correct.

      Fix your quotation marks (perhaps elsewhere too!) and it should work fine after restarting the dhcp server.

      posted in FOG Problems
      Q
      Quazz
    • RE: Windows 10 Image Not Getting Right Disk Size When Deployed

      @imagingmaster21 When FOG tries to create an image from the host it creates small text files with information about the partitions that are used during deployment so that it knows which to resize and which not, how big they should be etc.

      You will find them typically in /images/IMAGENAME

      The problem in your case is that your main data partition is locked in between two other partitions. As such the third partition starts at the marker for around 49.37GB or so (give or take). This means that the maximum size of the main partition will be limited by it.

      On a default installation, the Windows partition itself is the last one

      You’ll have to fix this on the host and recapture the image.

      posted in FOG Problems
      Q
      Quazz
    • RE: Can no longer update using GIT

      What OS and version are you running?

      What does curl https://github.com --cipher rsa_aes_128_sha get you.

      Curl error 35 is:

      "Cannot communicate securely with peer: no common encryption algorithm(s)."
      
      The local and remote systems share no cipher suites in common. This can be due to a misconfiguration at either end. It can be due to a server being misconfigured to use a non-RSA certificate with the RSA key exchange algorithm.
      

      Also try curl https://github.com -v it should give us more info

      posted in FOG Problems
      Q
      Quazz
    • RE: Fog imaging and M.2 drives

      I recall certain SSDs getting inexplicably low speeds.

      Here’s the discussion about it on the partclone github page:

      https://github.com/Thomas-Tsai/partclone/issues/112

      Currently not solved and obviously a pretty big problem if you’re experiencing this.

      Only info I’ve found myself is about 32 bit kernels on systems with 4GB+ RAM causing this issue.

      Some older topics suggest the DMA is sometimes disabled on SSDs for some reason.

      posted in FOG Problems
      Q
      Quazz
    • RE: Error "rcu_sched self detected stall on CPU" on legacy BIOS Capture job

      @george1421 The problem is for new kernels we need to update the kernel headers. Programs built against that (such as the programs in the init files) require the minimum supported kernel of those headers to run.

      In practice, it will often work anyway, but sometimes the changes make it impossible, nothing that can really be done about that from our side afaik.

      posted in FOG Problems
      Q
      Quazz
    • RE: Failed to create image capture path (prepareUploadLocation)

      @BSZAdmin Your export file is wrong, /datastore/images/dev needs rw permissions, not ro.

      In fact, you seem to have copied over the /images line for it, rather than /images/dev

      Fix /etc/fstab, and re export

      posted in FOG Problems
      Q
      Quazz
    • RE: Mount NFS

      @jeremyvdv said in Mount NFS:

      I made a redirection of the images folder of my debian to a nas.

      What do you mean by that?

      If you have mounted the NAS folder to your Debian machine then it won’t work since the Debian machine can’t “export” a folder that isn’t its own. (you can’t daisy chain it)

      If you want to use a NAS as storage, you can try configuring it as a storage node.

      posted in FOG Problems
      Q
      Quazz
    • 1 / 1