• Hangs before image upload (not during)

    2
    0 Votes
    2 Posts
    1k Views
    Tom ElliottT

    When you register the system, the “Do you want to image the system now?” is not referring to uploading an image. It’s referring to “Downloading” the image to the client.

    Also, update to 1.1.2 as there was a bug with 1.1.1 where registering the host and assigning the image id did not work properly.

    You’ll likely need to delete the hosts as they most likely got created with hostID=‘0’ which is in valid.

    From terminal you can do this:
    [code]mysql -u root [ -p’MYSQLPASSWORD IF SET’ #ONLY ENTER THIS IF YOU SET A PASSWORD ] fog
    delete from hosts WHERE hostID=‘0’;[/code]

    Then re-register the host.

  • Installed a clean version of 1.1.2 database errors after reboot

    3
    0 Votes
    3 Posts
    1k Views
    B

    restarting the mysql service did the trick. Thank you!

  • Custom Fog Registration menu

    3
    0 Votes
    3 Posts
    2k Views
    S

    and the fog.custom.reg

    [HTML]#!/bin/sh
    . /usr/share/fog/lib/funcs.sh
    clearScreen;
    displayBanner;
    hd=“”;
    getHardDisk;

    setupDNS ${dns}

    sysman=“”;
    sysman64=“”;
    sysproduct=“”;
    sysproduct64=“”;
    sysversion=“”;
    sysversion64=“”;
    sysserial=“”;
    systype=“”;
    biosversion=“”;
    biosvendor=“”;
    biosdate=“”;
    mbman=“”;
    mbproductname=“”;
    mbversion=“”;
    mbserial=“”;
    mbasset=“”;
    cpuman=“”;
    cpuversion=“”;
    cpucurrent=“”;
    cpumax=“”;
    mem=“”;
    hdinfo=“”;
    caseman=“”;
    casever=“”;
    caseserial=“”;
    casesasset=“”;
    sysserial64=“”;
    systype64=“”;
    biosversion64=“”;
    biosvendor64=“”;
    biosdate64=“”;
    mbman64=“”;
    mbproductname64=“”;
    mbversion64=“”;
    mbserial64=“”;
    mbasset64=“”;
    cpuman64=“”;
    cpuversion64=“”;
    cpucurrent64=“”;
    cpumax64=“”;
    mem64=“”;
    hdinfo64=“”;
    caseman64=“”;
    casever64=“”;
    caseserial64=“”;
    casesasset64=“”;

    echo “”;
    echo “”;
    if [ -n “$hd” ]; then
    part=$hd’1’;
    echo " * Using disk device…$hd";

    echo " * Starting host registration..."; mac=`ifconfig | grep HWaddr | head -n1 | base64`; exists=`wget -O - --post-data="mac=${mac}" "http://${web}service/man.hostexists.php" 2>/dev/null` if [ "$exists" = "#!ok" ]; then host=""; imageid=""; osid="NQ=="; blImage=""; blDoAD=""; echo echo -n " Enter the hostname of this computer: "; read host; host=`echo $host | base64`; while [ "$imageid" = "" ] do res=`wget -O - "http://${web}service/imagelisting.php" 2>/dev/null` i=0 OLDIFS=$IFS; IFS='

    ';
    for line in $res
    do
    i=$((i+1));
    echo $line;
    if [ “$i” = “20” ]
    then
    echo -n “Press Enter to Proceed…”
    read dummy;
    clearScreen
    i=0;
    fi
    done

    echo echo -n " Enter the image ID for this computer: "; read imageid; imageid=`echo $imageid | base64`; done if [ "$blDoAD" = "" ] then echo echo -n " Would you like to add this host to AD (using default settings)? (y/N) "; read tmpAd; blDoAD="0"; case "$tmpAd" in Y | yes | y | Yes | YES ) blDoAD="1"; ;; [nN]*) ;; *) ;; esac fi echo echo " If you entered all the required information, "; echo -n " would you like to image this computer now? (y/N) "; read blImage; realdoimage="0"; case "$blImage" in Y | yes | y | Yes | YES ) tmp=""; echo echo echo " You have selected to image this host. This"; echo " will destroy all current data on this computer."; echo " Are you sure you wish to continue?"; sleep 1; echo -n " If so type \"fog\": "; read tmp; tmp=`echo $tmp | tr '[A-Z]' '[a-z]'` if [ "$tmp" = "fog" ]; then echo echo " This host will reboot and imaging will start!"; echo realdoimage="1"; else echo echo " You have NOT confirmed imaging, so we will not send an image!"; echo fi sleep 3; ;; [nN]*) ;; *) ;; esac echo echo -n " * Attempting to register host................."; res=""; while [ "${res}" = "" ] do res=`wget -O - --post-data="mac=${mac}&advanced=1&host=${host}&imageid=${imageid}&osid=${osid}&doimage=${realdoimage}&doad=${blDoAD}" "http://${web}service/auto.register.php" 2>/dev/null` echo "${res}"; sleep 2; done; else echo " * Unable to register host for the following reasons:"; echo " ${exists}"; sleep 10; fi doInventory; echo echo echo echo " System Information"; echo " ------------------"; echo echo " * System Manufacturer: $sysman"; echo " * System Product Name: $sysproduct"; echo " * System Version: $sysversion"; echo " * System Serial Number: $sysserial"; echo " * Computer Form Factor: $systype"; sleep 1; echo echo " BIOS Information"; echo " ----------------"; echo echo " * BIOS Version: $biosversion"; echo " * BIOS Vendor: $biosvendor"; echo " * BIOS Date: $biosdate"; sleep 1 echo echo " Motherboard Information"; echo " -----------------------"; echo echo " * Motherboard Manufacturer: $mbman"; echo " * Motherboard Product Name: $mbproductname"; echo " * Motherboard Product Version: $mbversion"; echo " * Motherboard Serial Number: $mbserial"; echo " * Motherboard Asset Tag: $mbasset"; sleep 1 echo echo " CPU Information"; echo " ---------------"; echo echo " * CPU Manufacturer: $cpuman"; echo " * CPU Version: $cpuversion"; echo " * CPU Current Speed: $cpucurrent"; echo " * CPU Max Speed: $cpumax"; sleep 1 echo echo " Memory Information"; echo " ------------------"; echo echo " * Memory: $mem"; sleep 1 echo echo " Hard Disk Information"; echo " ---------------------"; echo echo " * Hard Disk: $hdinfo"; sleep 1 echo echo " Case Information"; echo " ----------------"; echo echo " * Case Manufacturer: $caseman"; echo " * Case Version: $casever"; echo " * Case Serial Number: $caseserial"; echo " * Case Asset Number: $casesasset"; echo echo echo echo echo poststring="mac=${mac}&sysman=${sysman64}&sysproduct=${sysproduct64}&sysversion=${sysversion64}&sysserial=${sysserial64}&systype=${systype64}&biosversion=${biosversion64}&biosvendor=${biosvendor64}&biosdate=${biosdate64}&mbman=${mbman64}&mbproductname=${mbproductname64}&mbversion=${mbversion64}&mbserial=${mbserial64}&mbasset=${mbasset64}&cpuman=${cpuman64}&cpuversion=${cpuversion64}&cpucurrent=${cpucurrent64}&cpumax=${cpumax64}&mem=${mem64}&hdinfo=${hdinfo64}&caseman=${caseman64}&casever=${casever64}&caseserial=${caseserial64}&casesasset=${casesasset64}"; echo -n " * Attempting to send inventory................"; res=""; while [ "$res" = "" ]; do res=`wget -O - --post-data="${poststring}" "http://${web}service/inventory.php" 2>/dev/null` echo "$res"; sleep 3; done

    else
    echo “hard disk not found!”;
    fi
    sleep 10
    [/HTML]

  • Active Directory OU Settings FOG 1.1.2

    8
    0 Votes
    8 Posts
    4k Views
    JunkhackerJ

    this has already been changed in svn, so that if the default field contains 1 or less entries, then the field on the hosts will be a text box. the way that the OU field was implemented in 1.1.2 was mostly an oversight/incomplete implementation caused by the discovery/fix of a bad bug that made us release the new version sooner then we had originally intended.

  • Fog[1.1.1] Can't add to the directory with organisational units.

    8
    0 Votes
    8 Posts
    3k Views
    J

    Glad you figured it out. I always just copy and paste my OU format from AD directly. It’s listed under the targeted folder’s properties.

  • Fog Centralized management issues

    2
    0 Votes
    2 Posts
    1k Views
    Tom ElliottT

    I think I got this.

  • Fog Version: 1.1.1

    7
    0 Votes
    7 Posts
    2k Views
    S

    Just to update you, I have just tested updating the image in fog 1.1.2 which uses part clone to capture and the progress bar is now working. 😉

    Thanks for the help, appreciated. 🙂

  • 0.32 storage with 1.x server

    6
    0 Votes
    6 Posts
    2k Views
    J

    Added a new storage and still the same display.

    [ATTACH]1115[/ATTACH]

    Hardware Information

    General Information
    Storage Node VaubanVieux
    IP 10.121.84.7
    Kernel 2.6.32-31-generic
    Hostname fog0210003P
    Uptime 15:53:13 up 1 day, 7:04, 0 users, load average: 0.16, 0.13, 0.05
    CPU Type GenuineIntel
    CPU Count 1
    CPU Model Intel® Xeon® CPU E5-2620 0 @ 2.00GHz
    CPU Speed 1995.192
    CPU Cache 15360 KB
    Total Memory 497
    Used Memory 146
    Free Memory 350
    File System Information
    Total Disk Space 196.8 GB
    Used Disk Space 89.4 GB
    Network Information
    lo Information
    lo TX 14.93 KiB
    lo RX 14.93 KiB
    lo Errors 0
    lo Dropped 0
    eth3 Information
    eth3 TX 10.8 MiB
    eth3 RX 7.61 MiB
    eth3 Errors 0
    eth3 Dropped 0

    [url=“/_imported_xf_attachments/1/1115_Sans titre.jpg?:”]Sans titre.jpg[/url]

  • Progress Bar not showing data - Fog 1.1.2

    4
    0 Votes
    4 Posts
    2k Views
    S

    Just to update you, I have just tested updating the image in fog 1.1.2 which uses part clone to capture and the progress bar is now working. 😉

  • (1.1.1) Multicast Hang - Starting to restore image (-)

    27
    0 Votes
    27 Posts
    15k Views
    Tom ElliottT

    [quote=“RLane, post: 32372, member: 23505”]After hours of troubleshooting, I really feel like a moron. We established the problem being a core switch/VLAN issue. Existing VLANs when I inherited the environment had ‘ip multicast-routing’ enabled - right… but when I added new VLANs, consequently the “Server” VLAN, I didn’t re-add ‘ip pim sparse-dense-mode’ and ‘ip cgmp’ commands to get the multicasts on the same broadcast. Disappointing I spent a good week on this but didn’t check it. Thanks Tom for the help – obviously not a FOG issue. Worked fantastic afterwards.[/quote]

    I tried saying it all, and I’m sorry I couldn’t help any further. I tried all of my knowledge and it felt/sounded like environment. I appreciate the feedback though thank you.

  • Printer Manadger Service is Disabled

    4
    0 Votes
    4 Posts
    2k Views
    Jaymes DriverJ

    [quote=“Ronny Olsen, post: 32296, member: 18879”]As I said in the first post, it is enabled on the fog client.
    I have all services enabled on the client, and on the registered host.
    And disable things globally if I don’t need it.
    But thanks for the reply 😃

    But I have an update. It seems like it is working if I disable/enable the service.
    So I added a startup-bat that does this, but it still seems like some kind of a bug.
    It has only happened on this Optiplex 7010 with Windows Ent. (Could be a windows update, I will test this on an other model with latest updates).[/quote]

    Have you tried adjusting the service to “Automatic (Delayed)”?

  • Snap-ins taking a painfully long time to deploy?

    4
    0 Votes
    4 Posts
    1k Views
    JunkhackerJ

    i’m guessing that something is blocking the client from communicating with the fog server, then. perhaps they are only allowed to communicate with web services when people are logged in? firewall, or network authentication issues perhaps?

  • 0 Votes
    2 Posts
    1k Views
    A

    Well, I did a “mysqlcheck -o” and will be keeping an eye on things.

  • This is not partclone image

    15
    0 Votes
    15 Posts
    7k Views
    D

    Just to update with the solution. I downloaded 1.1.2 files again and than I ran 1.1.2 setup again; nothing more and now it works, thank you for pointing me in the right direction.

  • Fog registration with NUC

    36
    0 Votes
    36 Posts
    15k Views
    S

    I’m having the same issue with the new Intel NUC Kit, they seem to have put in a different mainboard. The NUC’s manufactured in 01/14 worked flawless, while the newer series from 05/14 has some kinks (only accepts 1.35V RAM or 1333MHz 1.5V anything below and it doesn’t even start).
    Anyway, they get stuck on “iPXE initialising devices…”. I’ve already tried every file from the /tftboot folder, no luck so far.
    Maybe Mike has more luck.

    P.S. I’m on 1.1.2

  • FOG Project new version 1.1.2

    3
    0 Votes
    3 Posts
    2k Views
    Robx64R

    Thank you for quick response.
    So will be this old pxe menu still available ?
    It’s very important for me.
    I’m using it in my company and it’s much easier to use this menu instead setting up everything through the web interface.
    I’m asking because is not completely clear how this new menu works.
    For now i got main menu
    example:
    IBM
    DELL
    HP
    Other
    so when you choose a brand (HP) will appear the list of available images:
    DC7600
    DC7700
    etc.
    and scrolling up/down you can choose exact image for machine you intending to imaging.
    This is most important for me.
    Of course you know how it works 🙂
    Anyway i’ll check everything after the weekend.
    I have no access to the server atm.

  • Problem with service in Windows Vista Pro

    3
    0 Votes
    3 Posts
    1k Views
    A

    Yes i “Run as administrators” when i install the client

  • Download Completed! Moving file to TFTP server...

    4
    0 Votes
    4 Posts
    2k Views
    E

    I’m having the same problem on Ubuntu 12.04

  • Storage edition

    12
    0 Votes
    12 Posts
    3k Views
    J

    I find out that i had to put the main node in first in exports file and not second.
    Since it’s the same datastore, it will use the first it an access.

  • 1.1.2 Update/Install Failed!

    3
    0 Votes
    3 Posts
    2k Views
    A

    Worked! You guys rocks! thanks !!

171

Online

12.4k

Users

17.4k

Topics

155.9k

Posts