• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Blackout
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 15
    • Posts 264
    • Best 1
    • Controversial 0
    • Groups 1

    Blackout

    @Blackout

    Developer

    83
    Reputation
    2.3k
    Profile views
    264
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Blackout Unfollow Follow
    Developer

    Best posts made by Blackout

    • FOG Wiki

      Please search the FOG Wiki as it contains far more information than this forum.

      wiki.fogproject.org

      posted in Tutorials
      B
      Blackout

    Latest posts made by Blackout

    • RE: PXE Boot menu not working on Dell Latitude E6510

      Moved to [URL=‘http://fogproject.org/forum/forums/hardware-hardware-compatibility.19/’]Hardware Compatibility[/URL]

      posted in Hardware Compatibility
      B
      Blackout
    • RE: Intel Atom D510 warning(s) message on PXE boot

      Ignore these “errors”. They are not errors.

      They are “drivers” trying to load. They are failing to load as you do not have the hardware. This is expected behavior and nothing to worry about.

      I’m going to shoot the noob developer who put those retarded “please report!” messages in his “driver”…

      posted in Hardware Compatibility
      B
      Blackout
    • RE: New page in image management tab

      [SIZE=6][B]The Ten Minute Guide to diff and patch[/B][/SIZE]

      [url]http://jungels.net/articles/diff-patch-ten-minutes.html[/url]

      posted in Feature Request
      B
      Blackout
    • RE: Problems I encountered to get FOG working .32 on Ubuntu 12.04 LTS. Fresh install.

      Thanks for reporting Jonathan.

      The 0.33 installer has been updated to work with all of the latest releases of our supported platforms. (Debian, Ubuntu, Redhate, CentOS and Fedora)

      posted in Bug Reports
      B
      Blackout
    • RE: Transmit bandwidth in graph is wrong

      You need to go out on your own and find information to give me.
      3 lines saying “my other appliance says your graph is wrong” gives me no information.

      First, verify which one is correct. Use a 3rd piece of software or something.

      The graph contacts the server in question and asks it “right now, how much data are you moving”, then its plotted on the graph. Verify on the server the graph is correct.

      posted in Bug Reports
      B
      Blackout
    • RE: GuiWatcher On Windows 7

      Correct, Windows Vista and up introduced service “interactive mode” - basically it stops services interacting with your desktop… i.e. viruses & malware

      posted in Bug Reports
      B
      Blackout
    • RE: Spam

      The new spam system has stopped over 500 spam registrations in the last week.

      A few still managed to seep through. Please bare with us while we fine tune the spam settings.

      This thread will remain open if you would like to suggest or comment.

      posted in General
      B
      Blackout
    • RE: Image upload stops at 80% hung_task_timeout

      There is something stopping it at 13%. Out of disk space?

      There is only so much i can do with 21 words of information 🙂

      posted in FOG Problems
      B
      Blackout
    • RE: Image upload stops at 80% hung_task_timeout

      It stops at 80% because it’s an incomplete image. Filesystem problems would be my guess.

      chkdsk /x 😄

      Resysprep, reupload image

      posted in FOG Problems
      B
      Blackout
    • RE: FOG Service - PLEASE recompile

      Here is the new version of getMacAddress() i just wrote. It’s untested, see how you go.

      [code] public ArrayList getMacAddress()
      {
      // Variables
      ArrayList alMacs = new ArrayList();

              try
              {
                  // Get all network interaces
                  NetworkInterface[] adapters = NetworkInterface.GetAllNetworkInterfaces();
       
                  // Iterate all network interaces
                  foreach (NetworkInterface adapter in adapters)
                  {
                      // Get IP Properties
                      IPInterfaceProperties properties = adapter.GetIPProperties();
           
                      // Push MAC address into array
                      alMacs.Add( adapter.GetPhysicalAddress().ToString() );
           
                      // DEBUG
                      //log("N/A", "Found network interface: Name: " + adapter.Description + ", MAC: " + adapter.GetPhysicalAddress().ToString());
                  }
              }
              catch (Exception e)
              {
                  log("N/A", e.Message);
              }
      
              return alMacs;
          }[/code]
      

      I have attached a compiled DLL, give it a shot and let me know how it goes.

      EDIT: I’ve tested this and it worked as intended.

      [code] 30/08/2012 1:48 PM FOG::MODDebug Reading config settings…
      30/08/2012 1:48 PM FOG::MODDebug Reading of config settings passed.
      30/08/2012 1:48 PM FOG::MODDebug Starting Core processing…
      30/08/2012 1:48 PM FOG::MODDebug Operating System ID: 6
      30/08/2012 1:48 PM FOG::MODDebug Operating System Minor: 1
      30/08/2012 1:48 PM FOG::MODDebug MAC ID 0 BC:5F:F4:49:96:63
      30/08/2012 1:48 PM FOG::MODDebug MAC ID 1 00:50:56:C0:00:01
      30/08/2012 1:48 PM FOG::MODDebug MAC ID 2 00:50:56:C0:00:08
      30/08/2012 1:48 PM FOG::MODDebug MAC POST String: BC:5F:F4:49:96:63|00:50:56:C0:00:01|00:50:56:C0:00:08
      30/08/2012 1:48 PM FOG::MODDebug A user is currently logged in
      30/08/2012 1:48 PM FOG::MODDebug Username: BLACKOUT\Blackout
      30/08/2012 1:48 PM FOG::MODDebug Hostname: BLACKOUT
      30/08/2012 1:48 PM FOG::MODDebug Attempting to open connect to: http://10.0.0.23/fog/service/debug.php
      30/08/2012 1:48 PM FOG::MODDebug Server responded with: Hello FOG Client
      30/08/2012 1:48 PM FOG::MODDebug Module has finished work and will now exit.[/code]

      I have also attached the latest version of MODDebug which outputs the above as soon as the service starts (it used to wait 100 seconds)

      [url=“/_imported_xf_attachments/0/162_MODDebug.dll?:”]MODDebug.dll[/url][url=“/_imported_xf_attachments/0/163_AbstractFOGService.dll?:”]AbstractFOGService.dll[/url]

      posted in Feature Request
      B
      Blackout