• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Aaron
    3. Topics
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 12
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by Aaron

    • A

      Fog Storage Node problems

      FOG Problems
      • • • Aaron
      4
      0
      Votes
      4
      Posts
      1.7k
      Views

      A

      anyone got any ideas on this? kinda stuck and our old node with smaller disk is running out of space.

      cheers

      Aaron

    • A

      Unable to register or image hosts

      FOG Problems
      • • • Aaron
      2
      0
      Votes
      2
      Posts
      1.9k
      Views

      F

      Having the same problem with the same netbook, NB510.
      Tried Eric’s kernel, still same problem.

      Any help appreciated, need to get these imaged asap!

      EDIT: Also tried the core 3.3.3 kernel.
      Ran the ‘fog compatability’ test from ‘Client information’ on the pxe menu which said network drivers failed.
      Building custom 3.6.1 now with extra drivers now to test that.

      Didnt work with 3.6.1 however I think I have found the driver needed to make this work, but im unsure of how to add/patch the driver to the source code before building bzImage.
      [url]http://www.linuxfoundation.org/collaborate/workgroups/networking/alx[/url]
      Can anyone help?

      As this is down to the network module not being loaded can someone move this thread to Hardware?

      FIXED:
      [url]http://fogproject.org/forum/threads/dell-2330-all-in-one-network-issue.1054/#post-9005[/url] Someone compiled ALX drivers into the kernel last week 😄

    • A

      Scheduling Image tasks

      FOG Problems
      • • • Aaron
      1
      0
      Votes
      1
      Posts
      990
      Views

      No one has replied

    • A

      Web Interface Running slow

      FOG Problems
      • • • Aaron
      2
      0
      Votes
      2
      Posts
      2.1k
      Views

      C

      maybe this helps 8a copy fron the old forum):

      The disk pie chart (along with the server stats page) time out and returns Unable to pull server information

      The issue: the Fetch function uses the proxy settings provided in the fog settings (otherInfo>Fogsettings) but the storage node is most likely to be on the same LAN (or even the same server) and does not require a proxy sever.

      FIX1: configure the proxy server to deal with internal requests.
      OR
      FIX2: at the very end of /var/www/fog/commons/functions.include.php

      replace these 2 lines
      <code>
      //Proxy
      if($Proxy)
      </code>
      with:
      <code>
      //Proxy
      $url1 = explode(“/”, $URL);
      $noproxyfor = array(“192.168.”, “10.”);
      foreach($noproxyfor as $ip) {
      if(substr($url1[2], 0, strlen($ip)) == $ip) $Proxy = false;
      }
      if ($Proxy)
      </code>

      the array is of the IPs of the servers/ranges that you do not wish to proxy. it looks at the start of the hostname for the strings in the array
      eg. any host starting with “192.168.” and “10.” so this would include “192.168.1.2” and “10.2.5.7”
      feel free to add and edit the values in teh array for your lan/server

    • A

      PCs not joining correct OU

      FOG Problems
      • • • Aaron
      10
      0
      Votes
      10
      Posts
      6.0k
      Views

      A

      I think we are going to go with adding PCs manually before imaging as a workaround just now. Does anyone know how to manually add multiple computers to AD from a text / csv file etc?

    • 1 / 1