• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. TTellez
    3. Posts
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 13
    • Posts 86
    • Best 4
    • Controversial 0
    • Groups 0

    Posts made by TTellez

    • RE: Cloning only installed files VS entire drive?

      @george1421 it looks to me like its the MBR. When I created my image initially, I chose partition 1 and MBR only. I am guessing that is not correct. The hardware is all exactly the same, except for the hard drive in the new machine. I am guessing the MBR would have issue with that.

      I tried to repair the MBR, but as I had to use an external cd/dvd reader, it isn’t detecting the drive for me to repair it.

      posted in General Problems
      T
      TTellez
    • RE: Cloning only installed files VS entire drive?

      @george1421 perfect. I did that. And it worked…the imaging didn’t fail. HOWEVER. Once completed, the computer reboots to a black screen with a blinking white cursor and just sits there. Suggestions?

      Thanks in advance for all your help George.

      posted in General Problems
      T
      TTellez
    • RE: Cloning only installed files VS entire drive?

      So, I decided to make a new deployment image. but do it with “Single Disk - Resizable” chosen just as a test to see what it would do differently.

      Looks like the image is much smaller. So fingers crossed.

      posted in General Problems
      T
      TTellez
    • Cloning only installed files VS entire drive?

      The image our client gave us is larger than the drive in the new model laptop thy are using. While we could build a fresh image, I was wondering if there was a way to just clone the installed files VS the entire drive image???

      Thanks in advance.

      posted in General Problems
      T
      TTellez
    • RE: FOG Server host registration issues

      @george1421 The switch we were using also had a network connection connected to it. So when I pulled the connection, instead of using the IP address we used localhost.

      posted in FOG Problems
      T
      TTellez
    • RE: FOG Server host registration issues

      @george1421 better?

      # DHCP Server Configuration file\n#see /usr/share/doc/dhcp*/dhcpd.conf.sample
      # This file was created by FOG
      #Definition of PXE-specific options
      # Code 1: Multicast IP Address of bootfile
      # Code 2: UDP Port that client should monitor for MTFTP Responses
      # Code 3: UDP Port that MTFTP servers are using to listen for MTFTP requests
      # Code 4: Number of seconds a client must listen for activity before trying
      #         to start a new MTFTP transfer
      # Code 5: Number of seconds a client must listen before trying to restart
      #         a MTFTP transfer
      option space PXE;
      option PXE.mtftp-ip code 1 = ip-address;
      option PXE.mtftp-cport code 2 = unsigned integer 16;
      option PXE.mtftp-sport code 3 = unsigned integer 16;
      option PXE.mtftp-tmout code 4 = unsigned integer 8;
      option PXE.mtftp-delay code 5 = unsigned integer 8;
      option arch code 93 = unsigned integer 16;
      use-host-decl-names on;
      ddns-update-style interim;
      ignore client-updates;
      # Specify subnet of ether device you do NOT want service.
      # For systems with two or more ethernet devices.
      # subnet 136.165.0.0 netmask 255.255.0.0 {}
      subnet 10.1.1.0 netmask 255.255.255.0{
         option subnet-mask 255.255.255.0;
         range dynamic-bootp 10.1.1.10 10.1.1.254;
         default-lease-time 21600;
         max-lease-time 43200;
         option routers 10.1.1.1;
         option domain-name-servers 127.0.1.1;
         next-server 10.1.1.164;
         class "Legacy" {
             match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00000";
             filename "undionly.kkpxe";
         }
         class "UEFI-32-2" {
             match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00002";
             filename "i386-efi/ipxe.efi";
         }
         class "UEFI-32-1" {
             match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00006";
             filename "i386-efi/ipxe.efi";
         }
         class "UEFI-64-1" {
             match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00007";
             filename "ipxe.efi";
         }
         class "UEFI-64-2" {
             match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00008";
             filename "ipxe.efi";
         }
         class "UEFI-64-3" {
             match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00009";
             filename "ipxe.efi";
         }
         class "SURFACE-PRO-4" {
             match if substring(option vendor-class-identifier, 0, 32) = "PXEClient:Arch:00007:UNDI:003016";
             filename "ipxe7156.efi";
         }
         class "Apple-Intel-Netboot" {
             match if substring(option vendor-class-identifier, 0, 14) = "AAPLBSDPC/i386";
             option dhcp-parameter-request-list 1,3,17,43,60;
             if (option dhcp-message-type = 8) {
                 option vendor-class-identifier "AAPLBSDPC";
                 if (substring(option vendor-encapsulated-options, 0, 3) = 01:01:01) {
                     # BSDP List
                     option vendor-encapsulated-options 01:01:01:04:02:80:00:07:04:81:00:05:2a:09:0D:81:00:05:2a:08:69:50:58:45:2d:46:4f:47;
                     filename "ipxe.efi";
                 }
             }
         }
      }```
      posted in FOG Problems
      T
      TTellez
    • RE: FOG Server host registration issues

      @george1421

      • FOG server address is 10.1.1.164 or localhost

      • Hmmm, to answer 2,3, & 4 in the same one there IS another DHCP server. Yes, the router is 10.1.1.1, and NO this isn’t isolated, unless I remove the net connection, and use localhost

      EDIT: in typing this response I realized what you were asking. So I removed the external network, created the isolated imaging network, used localhost instead of the IP and BOOM we are imaging.

      posted in FOG Problems
      T
      TTellez
    • RE: FOG Server host registration issues

      Not sure if this is right. 😕

      # DHCP Server Configuration file\n#see /usr/share/doc/dhcp*/dhcpd.conf.sample
      # This file was created by FOG
      #Definition of PXE-specific options
      # Code 1: Multicast IP Address of bootfile
      # Code 2: UDP Port that client should monitor for MTFTP Responses
      # Code 3: UDP Port that MTFTP servers are using to listen for MTFTP requests
      # Code 4: Number of seconds a client must listen for activity before trying
      #         to start a new MTFTP transfer
      # Code 5: Number of seconds a client must listen before trying to restart
      #         a MTFTP transfer
      option space PXE;
      option PXE.mtftp-ip code 1 = ip-address;
      option PXE.mtftp-cport code 2 = unsigned integer 16;
      option PXE.mtftp-sport code 3 = unsigned integer 16;
      option PXE.mtftp-tmout code 4 = unsigned integer 8;
      option PXE.mtftp-delay code 5 = unsigned integer 8;
      option arch code 93 = unsigned integer 16;
      use-host-decl-names on;
      ddns-update-style interim;
      ignore client-updates;
      # Specify subnet of ether device you do NOT want service.
      # For systems with two or more ethernet devices.
      # subnet 136.165.0.0 netmask 255.255.0.0 {}
      subnet 10.1.1.0 netmask 255.255.255.0{
          option subnet-mask 255.255.255.0;
          range dynamic-bootp 10.1.1.10 10.1.1.254;
          default-lease-time 21600;
          max-lease-time 43200;
          option routers 10.1.1.1;
          option domain-name-servers 127.0.1.1;
          next-server 10.1.1.164;
          class "Legacy" {
              match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00000";
              filename "undionly.kkpxe";
          }
          class "UEFI-32-2" {
              match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00002";
              filename "i386-efi/ipxe.efi";
          }
          class "UEFI-32-1" {
              match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00006";
              filename "i386-efi/ipxe.efi";
          }
          class "UEFI-64-1" {
              match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00007";
              filename "ipxe.efi";
          }
          class "UEFI-64-2" {
              match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00008";
              filename "ipxe.efi";
          }
          class "UEFI-64-3" {
              match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00009";
              filename "ipxe.efi";
          }
          class "SURFACE-PRO-4" {
              match if substring(option vendor-class-identifier, 0, 32) = "PXEClient:Arch:00007:UNDI:003016";
              filename "ipxe7156.efi";
          }
          class "Apple-Intel-Netboot" {
              match if substring(option vendor-class-identifier, 0, 14) = "AAPLBSDPC/i386";
              option dhcp-parameter-request-list 1,3,17,43,60;
              if (option dhcp-message-type = 8) {
                  option vendor-class-identifier "AAPLBSDPC";
                  if (substring(option vendor-encapsulated-options, 0, 3) = 01:01:01) {
                      # BSDP List
                      option vendor-encapsulated-options 01:01:01:04:02:80:00:07:04:81:00:05:2a:09:0D:81:00:05:2a:08:69:50:58:45:2d:46:4f:47;
                      filename "ipxe.efi";
                  }
              }
          }
      }
      
      posted in FOG Problems
      T
      TTellez
    • RE: FOG Server host registration issues

      @george1421aux|grep

      root        67  0.0  0.0      0     0 ?        S<   Mar17   0:00 [ata_sff]
      systemd+   767  0.0  0.0 102384  2536 ?        Ssl  Mar17   0:00 /lib/systemd/systemd-timesyncd
      whoopsie   967  0.0  0.1 525900 12920 ?        Ssl  Mar17   0:01 /usr/bin/whoopsie -f
      impact    2206  0.2  0.6 2675320 49684 ?       Sl   Mar17  15:56 c:\TeamViewer\TeamViewer.exe
      impact    2438  0.0  0.0 353672  8008 ?        Sl   Mar17   0:00 /usr/lib/at-spi2-core/at-spi-bus-launcher
      impact    2522  0.0  0.1 367784 11160 ?        Ssl  Mar17   0:00 /usr/lib/x86_64-linux-gnu/indicator-power/indicator-power-service
      impact    2594  0.0  0.0 178672  4744 ?        Sl   Mar17   0:00 /usr/lib/dconf/dconf-service
      impact    2767  0.0  0.0 266600  4552 ?        Sl   Mar17   0:00 /usr/lib/gvfs/gvfs-mtp-volume-monitor
      dhcpd     7671  0.0  0.1  35488 13368 ?        Ss   11:20   0:00 dhcpd -user dhcpd -group dhcpd -f -4 -pf /run/dhcp-server/dhcpd.pid -cf /etc/dhcp/dhcpd.conf
      impact    8305  3.6  5.1 1598228 413676 ?      Sl   Mar17 261:08 /usr/lib/firefox/plugin-container -greomni /usr/lib/firefox/omni.ja -appomni /usr/lib/firefox/browser/omni.ja -appdir /usr/lib/firefox/browser 8250 true tab
      impact   17477  0.0  0.2 679764 17548 ?        Sl   11:14   0:00 /usr/lib/x86_64-linux-gnu/unity-lens-files/unity-files-daemon
      impact   25118  0.0  0.0  14232   976 pts/1    S+   14:43   0:00 grep --color=auto 67
      
      
      posted in FOG Problems
      T
      TTellez
    • RE: FOG Server host registration issues

      @george1421 Yes, told the installer to manage DHCP

      posted in FOG Problems
      T
      TTellez
    • RE: FOG Server host registration issues

      @george1421 and the FOG server is my DHCP server

      posted in FOG Problems
      T
      TTellez
    • RE: FOG Server host registration issues

      @george1421 Thanks for the reply George. How do I check that?

      posted in FOG Problems
      T
      TTellez
    • RE: FOG Server host registration issues

      it would make sense to use the FoG Server IP for the tftp server. I entered that, and voila, it began to clone. Looks like we have resolved this issue. Fingers crossed. Thanks Wayne.

      posted in FOG Problems
      T
      TTellez
    • RE: FOG Server host registration issues

      @Wayne-Workman Updated to the 1.3.5 official.

      The Model of the host is a Dell E5570

      Now that I have updated from the RC, it is asking me to enter the tftp server?

      posted in FOG Problems
      T
      TTellez
    • RE: FOG Server host registration issues

      Wont let me embedd the link to the image
      http://imgur.com/a/D0wnI this is what happens on the host.

      I am a bit of a newb, and the only FoG i have used in the past was already installed and configured. So I appreciate any help.

      posted in FOG Problems
      T
      TTellez
    • FOG Server host registration issues
      Server
      • FOG Version: 1.3.5 RC-11
      • OS: Ubuntu (latest build)
      Client
      • Service Version:
      • OS: Windows
      Description

      FOG Server is built and uses its own DHCP server. But in our attempt to create our first Host Registration when booting to the NIC on multiple computers, it does not recognize the server, and eventually just boots to Windows.

      What did I do wrong?

      posted in FOG Problems
      T
      TTellez
    • RE: Transition to offline FOG from Online installation?

      @george1421 using the latest build 1.3.4 i believe. Not the RC. I unfortunately am not onsite any longer.

      Using the browser to connect to FOG It says I need internet access. Or am I doing it wrong?

      posted in General Problems
      T
      TTellez
    • RE: Transition to offline FOG from Online installation?

      @george1421 recent. Not new.

      posted in General Problems
      T
      TTellez
    • RE: Transition to offline FOG from Online installation?

      OR, is it possible to run the fog server through a switch? (connect the device to be imaged to the switch)

      posted in General Problems
      T
      TTellez
    • 1
    • 2
    • 3
    • 4
    • 5
    • 4 / 5