• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. george1421
    3. Posts
    • Profile
    • Following 1
    • Followers 65
    • Topics 113
    • Posts 15,342
    • Best 2,780
    • Controversial 0
    • Groups 2

    Posts made by george1421

    • RE: Active directory Join issue

      I do see something suspicous in your posted log.

      1/19/2016 3:56 PM FOG::MODDebug MAC ID 0 44:A8:42:E9:57:4A
      1/19/2016 3:56 PM FOG::MODDebug MAC ID 1 34:02:86:92:41:86
      …
      1/19/2016 4:06 PM FOG::SnapinClient No Tasks found for: 44:A8:42:E9:57:4A

      The target computer has 2 network adapters. FOG knows about the network adapter asscoiated with 44:A8:42:E9:57:4A. Is 44:A8:42:E9:57:4A the ethernet adapter or the wireless adapter? To answer the question another way is net0 your pxe boot adapter or is net1 your pxe boot adapter.

      posted in Windows Problems
      george1421G
      george1421
    • RE: Active directory Join issue

      This is interesting on the time issue.

      From within the linux console if you type date does linux know the correct time? If it does then we may have to dig into the php.ini to ensure that the proper timezone is set there.

      posted in Windows Problems
      george1421G
      george1421
    • RE: New Fog Server Build Cannot Deploy

      To borrow a quote again from Sebastian:

      “Could you please run a debug session on this device (WebGUI -> Host -> Basic tasks -> Debug) and run lsblk from the command line of the target computer? What do you get?”

      The order reported by lsblk may give us an idea which drive is /dev/sda as well as what this drive thinks it is. If you could take a screen shot of the output and post it here, that would be helpful for the devs.

      posted in FOG Problems
      george1421G
      george1421
    • RE: New Fog Server Build Cannot Deploy

      @Chris-Sodey Excellent feed back

      I know the @Developers where working just recently on kernel enhancements for M.2 ssd drives. [Edit] looking at your OP you are using a mostly current build already so you should have the fixes for the m.2 ssd drive already. so it may be the blank drive that is causing the issue [/Edit]

      It would be interesting to know from a dev standpoint is it the fact of having this M.2 ssd installed or not having any partitions and format on this device that is causing the issue (as outlined in the link I provided below). With your assistance I’m sure the devs can work this out. This shadow hard drive seems to be embedded in more hardware than originally through.

      posted in FOG Problems
      george1421G
      george1421
    • RE: Host pc/laptop not booting to the fog menu.

      Lets try to get a little clarity around your setup here.

      You have install fog, is it safe to assume you installed 1.2.0, or did you install the current fog trunk version (i.e. pre 1.3.0)?

      Is it safe to assume you are using a Microsoft dhcp server? (your event log might suggest something different). One might think you have two dhcp servers covering the same subnet.

      What exactly did you set options 66 and 67 to?

      What is the IP address of your fog server?

      posted in FOG Problems
      george1421G
      george1421
    • RE: New Fog Server Build Cannot Deploy

      @Chris-Sodey said:

      The computer has 2 SSDs. 500GB samsung 850 EVO and a soldered on 16GB SSD.

      There was just another recent post where th OP was trying to deploy to a Lenovo (I think) and this built in drive was causing a problem with fog because it wasn’t formatted, it was just a blank drive. I think the OP was able to put a partition on that drive and then fog was happy enumerating it. If this is a systemic issue I do think the developers need to be aware of this built in drive.

      [Edit] just for reference here is the thread I was thinking about: https://forums.fogproject.org/topic/6461/cannot-get-capture-to-work-new-server/37 There was no mention of what hardware, or any real answer on a resolution[/Edit]

      posted in FOG Problems
      george1421G
      george1421
    • RE: Fog IP Address change

      @Wayne-Workman Sure

      The content of /etc/subversion/servers on my servers are like this:

      [global]
      http-proxy-host = 192.168.1.56
      http-proxy-port = 3128
      

      for git you can issue the following commands (from stackoverflow.com😞
      git config --global http.proxy http://192.168.1.56:3128
      git config --global https.proxy https://192.168.1.56:3128

      If you really wanted to not use env variables, then wget has proxy settings in /etc/wgetrc just uncomment the proxy lines and add the appropriate values and save.

      posted in FOG Problems
      george1421G
      george1421
    • RE: Fog IP Address change

      Since most companies that have a proxy server in their environment restrict direct internet access we have to configure linux (and fog) to communicate with the internet over the company authorized proxy server(s).

      Most command line utilities will inspect the environment variables to check to see if they need to use the proxy protocol when attempting to access files and services on the internet.

      These environment variables are http_proxy, https_proxy, and ftp_proxy (I’ve also seen these variables referenced in all upper case like HTTP_PROXY, HTTPS_PROXY and so on. To date I’ve only use the lower case env variables so I can’t say if case is important for all linux distros)

      You could add these env variables to each command invocation, but typically system admins will add them to a common logon script so they are available to anyone who logs into the linux system. Most common is to add them to the bash shell logon script /etc/bashrc To make these variables persistent in the environment they must be defined with the export function as below.

      export http_proxy=http://<proxy_server_ip>:<proxy_server_port>
      export https_proxy=http://<proxy_server_ip>:<proxy_server_port>
      export ftp_proxy=http://<proxy_server_ip>:<proxy_server_port>

      In the case of the fog installer, we need to tell the fog installer to not use the proxy protocol when attempting to connect to the fog server directly. So we must also include this env variable.

      export no_proxy=“<fog_server_ip>”

      During the fog installation the installer script makes wget calls back into the running fog server for specific actions. Without the no_proxy setting the installer script would make that request to the proxy server. Some proxy servers won’t proxy requests to internal networks. So this setting is required.

      There are some command line commands that don’t inspect the env variables but require specific settings in their config files. These include FOG, svn (I assume git too), cpan, and pear. For these you will need to update the appropriate config file. For FOG (proper) you need to update the proxy server settings in the fog management console. For SVN you need to create a file in /etc/subversion called servers and then populate it with the required settings.

      posted in FOG Problems
      george1421G
      george1421
    • RE: Fog IP Address change

      @Wayne-Workman Just to be sure I understand, you want to know about and why we use proxy servers. And then how to configure linux to use them (??).

      posted in FOG Problems
      george1421G
      george1421
    • RE: USB Boot BIOS client into FOG menu

      Not exactly. This thread discusses pxe booting (in BIOS mode) into the fog menu, were the others are for UEFI booting. You would need this if for some reason you could not pxe boot in bios mode, such as a broken pxe implementation on the nic or unable to setup pxe booting on your dhcp server. Since you will need to sit in front of the computer to select the fog menu item, usb booting may be an option.

      posted in Tutorials
      george1421G
      george1421
    • RE: Dell optiplex 3020 "drmk v8.00 can't load kernel file"

      While this doesn’t appear to be a FOG problem I did a quick google-fu search (as I’m sure you did).

      I did find this article. https://forum.acronis.com/forum/70905#comment-252812

      Can you confirm that post deployment the dell utility partition is marked as active as listed in the above post?

      As always, its helpful to know what OS you are trying to deploy and what version of FOG you are running (the numbers in the cloud on the FOG management page will tell us a bit more than just 1.2.0 or such)

      posted in Hardware Compatibility
      george1421G
      george1421
    • RE: Updated to SVN 5927 and seem unable to use old images?

      @Andrew-Aitken I’m not saying there isn’t a way, but there is no way that I know of to convert an image other than deploy and recapture. Maybe one of the devs has a better idea. But the quickest route is to deploy and recapture.

      posted in FOG Problems
      george1421G
      george1421
    • RE: Updated to SVN 5927 and seem unable to use old images?

      Can you tell us what version you were running before you updated to 5927?
      Also what version did you use to capture the image?

      I know the devs have made some great improvements in the image deployment in the past few months. If you have a really old captured image you may have to spin up a older fog server, deploy to a client and then capture right away to get the latest disk format. But that is without knowing where you started from.

      posted in FOG Problems
      george1421G
      george1421
    • RE: No longer possible to select all tasks

      Can you check the apache error log and see if apache is throwing an error when you click on the check box? The location is dependent on your specific OS.

      posted in Bug Reports
      george1421G
      george1421
    • RE: Unattend - Set domain user as local administrator

      @Wayne-Workman The section I provided makes a (normal) domain account a local admin. We do this to allow applications like pdq deploy and other utilities admin access to the workstation without using a domain level admin account.

      posted in Windows Problems
      george1421G
      george1421
    • RE: Cannot Get Capture To Work (New Server)

      @Tom-Elliott Interesting. Then if we look at this picture http://imgur.com/QnoooBh can we tell if sda or sdb is thowing the error. Its not quite clear. Its coming up with an unterminated string. According to the output of lsblk it should be working no problem.

      posted in FOG Problems
      george1421G
      george1421
    • RE: Cannot Get Capture To Work (New Server)

      @Tom-Elliott His link to the image has this built in lenovo hard drive as /dev/sdb, where his main SATA SSD is /dev/sda. But who knows what format or partition table it has on this 14GB drive, let alone the reason why it is there truly there.

      posted in FOG Problems
      george1421G
      george1421
    • RE: Expose FOG host and image properties to post install scripts

      @Junkhacker This can get me started very nicely, but I still need access to some of the other settings as I listed in my OP. Specifically I would need to know the site location of the computer which is the name of the assigned location as well as the Product Key. I think I’m pretty close on having all of the bits though.

      posted in Feature Request
      george1421G
      george1421
    • RE: Cannot Get Capture To Work (New Server)

      @nbuursma OK, that is where lenovo is hiding all of that malware lol.

      I think that should be a question for the @Developers but the structure of the drives /dev/sda (etc) should not trow off FOG. But that 14GB empty hard drive might.

      posted in FOG Problems
      george1421G
      george1421
    • RE: Unattend - Set domain user as local administrator

      This is precisely what we use (which appears to be in your unattend.xml file. I can say for sure this below works in Win7.

      <UserAccounts>
        <DomainAccounts>
          <DomainAccountList wcm:action="add">
            <DomainAccount wcm:action="add">
              <Group>Administrators</Group>
              <Name>joe_sombody</Name>
            </DomainAccount>
            <Domain>domain.com</Domain>
          </DomainAccountList>
        </DomainAccounts>
      </UserAccounts>
      
      posted in Windows Problems
      george1421G
      george1421
    • 1
    • 2
    • 741
    • 742
    • 743
    • 744
    • 745
    • 767
    • 768
    • 743 / 768