• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Greg Plamondon
    3. Posts
    • Profile
    • Following 1
    • Followers 0
    • Topics 74
    • Posts 394
    • Best 14
    • Controversial 0
    • Groups 1

    Posts made by Greg Plamondon

    • RE: Fog Version 1.5.9.62 hostSecToken problem

      @sebastian-roth
      Thanks for the reply. Here is the fog.log

      posted in FOG Problems
      Greg PlamondonG
      Greg Plamondon
    • Fog Version 1.5.9.62 hostSecToken problem

      I have some Dell XPS laptops that I am having issues with fog generating the hostSecToken. i am not sure if its a fog issue or an issue with these new Dells?

      what are the steps I should take to troubleshoot?

      posted in FOG Problems
      Greg PlamondonG
      Greg Plamondon
    • RE: Dell XPS 17

      @tom-elliott said in Dell XPS 17:

      @greg-plamondon I should add, there are some steps involved besides just making the switch itself.

      If you want the machines to reboot and operation:

      1. Boot windows
      2. Open msconfig.exe
      3. Click Boot Tab
      4. Check box for “Safe boot”
      5. Reboot machine
      6. Load to Bios and Switch SATA operation Mode.
      7. Reboot machine and boot into windows.
      8. Open msconfig.exe
      9. Click Boot Tab
      10. Uncheck Box for “Safe boot”
      11. Restart machine and do whatever you need to.

      Tom can I do this before sysprep?

      posted in Hardware Compatibility
      Greg PlamondonG
      Greg Plamondon
    • Fog 1.5.9.62 Location problems.

      Fog 1.5.9.62 Host location reverts to “- Please select an Option -” when making any changes to the host whether it is snapins or settings.

      posted in Bug Reports
      Greg PlamondonG
      Greg Plamondon
    • RE: Dell XPS 17

      @tom-elliott said in Dell XPS 17:

      @greg-plamondon Have you tried disabling “Raid On” and switching over to “AHCI” for the SATA operation mode?

      That worked Tom.

      Thanks!

      posted in Hardware Compatibility
      Greg PlamondonG
      Greg Plamondon
    • Dell XPS 17

      I am having issues with the Dell XPS 17 not detecting a hard drive.
      I have tried the latest 5.10.19 64Bit kernel.
      Does anyone have any suggestions?

      posted in Hardware Compatibility
      Greg PlamondonG
      Greg Plamondon
    • RE: Copy ipxe.efi to uefi partition?

      @sebastian-roth Thanks!
      That worked for me. I would also note that this is Windows 10 1607 Enterprise LTSB.
      that could be why the partition is not partition 1?

      posted in Windows Problems
      Greg PlamondonG
      Greg Plamondon
    • RE: Copy ipxe.efi to uefi partition?

      @george1421 I followed the post you linked.

      In my case, it was partition 2.
      alt text

      I then assigned partition 2 drive letter b in disakpart. killed explorer and restarted explorer.

      select disk 0
      select part 2
      assign letter=b
      exit
      taskkill /im explorer.exe /f
      explorer.exe
      

      I then copied and replaced the bootx64.efi with the renamed ipxe.efi from the fogserver.
      Once the file was copied over I removed the drive letter and rebooted.
      I don’t see the menu while it’s booting. what am I supposed to see?

      posted in Windows Problems
      Greg PlamondonG
      Greg Plamondon
    • RE: Copy ipxe.efi to uefi partition?

      @george1421 Thanks!

      posted in Windows Problems
      Greg PlamondonG
      Greg Plamondon
    • Copy ipxe.efi to uefi partition?

      Re: Windows 10 change BIOS boot order after deploy

      @JJ-Fullmer, In the above topic you stated that you were able to copy the ipxe.efi to the machine’s uefi partition. How do you go about doing this automated? could elaborate on the process for me? I have VERY little experience with uefi.

      Thanks!

      posted in Windows Problems
      Greg PlamondonG
      Greg Plamondon
    • Conspy Install Script

      Re: Using Conspy to View remote PC imaging progress

      Here is the script I use to install conspy on the fogserver/storage nodes.

      yum install conspy -y
      echo -e '#(>)##### UnPacking Init.xz #####'
      cd /var/www/fog/service/ipxe/
      xz -d init.xz
      mkdir initmountdir
      
      echo -e '#(>)##### Mounting Init #####'
      
      mount -o loop init initmountdir
      cd /var/www/fog/service/ipxe/initmountdir
      rm -f root/.ssh/authorized_keys
      #### Install SSH Keys
      echo -e '#(>)##### Installing SSH Keys #####'
      
      needreload=0
      if [ ! -d root/.ssh ]; then
          echo -e '#(->)Creating SSH File'
      
          # Create the autorized keys and add the keys
          mkdir root/.ssh
          touch root/.ssh/authorized_keys
          # ssh Keys
      
          /bin/echo 'ssh-rsa rrrrrrrrrrreeeeeeeeeeeeeeaaaaaaaaaaaaallllllllllllyyyyyyyyyylllllllloooooooooonnnnnnnnnnnggggggggggkkkkkkkkeeeeeeeyyyyyy11111111' >> root/.ssh/authorized_keys
          /bin/echo 'ssh-rsa rrrrrrrrrrreeeeeeeeeeeeeeaaaaaaaaaaaaallllllllllllyyyyyyyyyylllllllloooooooooonnnnnnnnnnnggggggggggkkkkkkkkeeeeeeeyyyyyy22222222' >> root/.ssh/authorized_keys
      else
          if [ ! -f root/.ssh/authorized_keys ]; then
              echo -e '#(->)Creating new SSH File'
      
          # Add all the keys
          touch root/.ssh/authorized_keys
          /bin/echo 'ssh-rsa rrrrrrrrrrreeeeeeeeeeeeeeaaaaaaaaaaaaallllllllllllyyyyyyyyyylllllllloooooooooonnnnnnnnnnnggggggggggkkkkkkkkeeeeeeeyyyyyy11111111' >> root/.ssh/authorized_keys
          /bin/echo 'ssh-rsa rrrrrrrrrrreeeeeeeeeeeeeeaaaaaaaaaaaaallllllllllllyyyyyyyyyylllllllloooooooooonnnnnnnnnnnggggggggggkkkkkkkkeeeeeeeyyyyyy22222222' >> root/.ssh/authorized_keys
          fi
      fi
      
      echo -e '#(>)##### Coping ConSpy #####'
      
      rsync -avh --progress /usr/bin/conspy /var/www/fog/service/ipxe/initmountdir/bin
      rsync -avh --progress /usr/lib64/libncurses.so.6 /var/www/fog/service/ipxe/initmountdir/lib64
      rsync -avh --progress /usr/lib64/libncurses.so.6.1 /var/www/fog/service/ipxe/initmountdir/lib64
      rsync -avh --progress /usr/lib64/libncursesw.so.6 /var/www/fog/service/ipxe/initmountdir/lib64
      rsync -avh --progress /usr/lib64/libncursesw.so.6.1 /var/www/fog/service/ipxe/initmountdir/lib64
      rsync -avh --progress /usr/lib64/libtinfo.so.6 /var/www/fog/service/ipxe/initmountdir/lib64
      rsync -avh --progress /usr/lib64/libtinfo.so.6.1 /var/www/fog/service/ipxe/initmountdir/lib64
      
      echo -e '#(>)##### Coping Nano #####'
      rsync -avh --progress /usr/bin/nano /var/www/fog/service/ipxe/initmountdir/bin
      
      echo -e '#(>)##### Re-Packing Init.xz #####'
      
      cd /var/www/fog/service/ipxe/
      umount initmountdir
      rmdir initmountdir
      xz -C crc32 -9 init
      chown fogproject:apache init.xz
      
      #ls -al
      echo -e '#(-)##### Completed #####'
      cd /root
      
      posted in Tutorials
      Greg PlamondonG
      Greg Plamondon
    • RE: REQUEST: UltraVNC connect to client pc via fog interface...

      @george1421 said in REQUEST: UltraVNC connect to client pc via fog interface...:

      http://<host_name>:5800

      No, I just get a white page. I think that’s trying to use Java.

      posted in Feature Request
      Greg PlamondonG
      Greg Plamondon
    • REQUEST: UltraVNC connect to client pc via fog interface...

      can someone with some plugin coding ability put together a plugin that adds the connect to pc via UltraVNC from the fog web GUI?
      I saw this in the WIKI but its fairly old.

      posted in Feature Request
      Greg PlamondonG
      Greg Plamondon
    • RE: Fog V1.5.9.29 Active Directory Defaults for OU not populating Database

      @Tom-Elliott said in Fog V1.5.9.29 Active Directory Defaults for OU not populating Database:

      Found and fixed in 1.5.9.34

      Thank you,

      Thanks!

      posted in Bug Reports
      Greg PlamondonG
      Greg Plamondon
    • RE: Fog V1.5.9.29 Active Directory Defaults for OU not populating Database

      @Tom-Elliott said in Fog V1.5.9.29 Active Directory Defaults for OU not populating Database:

      SELECT TABLE_SCHEMA as DbName ,TABLE_NAME as TableName ,ENGINE as Engine FROM information_schema.TABLES WHERE ENGINE=‘Innodb’ AND TABLE_SCHEMA NOT IN(‘mysql’,‘information_schema’,‘performance_schema’) AND TABLE_SCHEMA = ‘fog’;

      Tom, the database is configured as MyISAM.

      posted in Bug Reports
      Greg PlamondonG
      Greg Plamondon
    • Fog V1.5.9.29 Active Directory Defaults for OU not populating Database

      I have an issue with the Default AD/OU not being applied when clicking update. It also does not apply the AD/OU when doing a Quick Registration.
      here is a video I created that shows my issue. I have to go to the Active directory for each host and click on the dropdown and select the OU even though it’s already the default OU in the GUI.
      Video

      posted in Bug Reports
      Greg PlamondonG
      Greg Plamondon
    • RE: Dhcp vendor class question

      @george1421

      Thanks!
      https://drive.google.com/file/d/1f6jA6hFj-avt49JqqYfFDeVrFDO8n7vE/view?usp=sharing

      posted in General Problems
      Greg PlamondonG
      Greg Plamondon
    • RE: Dhcp vendor class question

      @george1421

      I have some HP EliteDesk 705 G5 PC’s that are giving me grief on PXE booting.
      If I use uefi to boot it works. I need to use legacy pxe.
      I get a messages that says:

      Configuring (net0 xx:xx:xx:xx:xx:xx)........ No configuration methods succeeded (http://ipxe.org/040ee119)
      DHCP failed, hit 's' for the iPXE shell; reboot in 10 seconds
      

      I am trying to configure a dhcp section for the EliteBooks.
      so far i have this:

      class "EliteDesk" {
              match if substring(option vendor-class-identifier, 0, 8) = "MSFT 5.0";
              filename "realtek.kpxe";
          }
      

      But i am not sure if it is correct or if it’s being used.

      posted in General Problems
      Greg PlamondonG
      Greg Plamondon
    • Dhcp vendor class question

      I have set the

      set vendor-string = option vendor-class-identifier;
      

      option in dhcpd.conf to show vendor classes in DHCP logs.
      I am trying to figure out what 0, 20 refers to in the line “match if substring(option vendor-class-identifier, 0, 20) = “PXEClient:Arch:00000”;” in the dhcpd.conf file.

      class "Legacy" {
              match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00000";
              filename "undionly.kkpxe";
          }
      

      Thanks!

      posted in General Problems
      Greg PlamondonG
      Greg Plamondon
    • FOS registry manipulation

      Re: [The magical](mystical FOG post download script)

      Can someone explain this bit of code?

      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
      
      regfile="/ntfs/Windows/System32/config/SOFTWARE"
      

      is this an actual registry file that must exist to be imported?
      if so what must it contain?

      key="\Microsoft\Windows\CurrentVersion\DevicePath"
      

      I have looked for this key in regedit and cannot find it…

      posted in Tutorials
      Greg PlamondonG
      Greg Plamondon
    • 1 / 1