• Problem Unable to located master node...

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Hard Drive Not Found

    2
    0 Votes
    2 Posts
    1k Views
    B

    It does sound like a RAID driver issue. Most likely you’ll need to use a different kernel or [URL=‘http://www.fogproject.org/wiki/index.php?title=Building_a_Custom_Kernel’]build your own[/URL].

  • Computers not using free slots in the Que

    1
    0 Votes
    1 Posts
    869 Views
    No one has replied
  • FOG Uploading image as raw?

    4
    0 Votes
    4 Posts
    3k Views
    M

    I ran into a similar issue, but only on one model of laptop, Dell E6510. I tested the same Windows 7 image on another model (HP) and it worked and uploaded as NTFS versus Raw. If anyone gets any information on how to fix this issue, it would be greatly appreciated. Again - Windows 7 64 bit - NTFS File System according to Windows and Partition Magic - Fog only sends up as Raw regardless of image type (Single Partition/NTFS Resizable, Multiple Partition/Single Disk).

    Thanks.

  • New StorageNode issues

    3
    0 Votes
    3 Posts
    2k Views
    N

    That is certainly an option, but it doesn’t solve my issue of mounting a larger storage location for my sites that can’t have large local storage on their storage nodes (VM environment doesn’t lend itself to a large VM for storing images).

  • Adding custom advanced tasks or modifying existing ones?

    3
    0 Votes
    3 Posts
    3k Views
    N

    For the custom task to clear itself from Active Tasks you may be able to switch out pxelinux with ipxe. Using the following embedded script to undionly.kpxe will send the mac to a php script on your web server which can delete the task. This method would delete the active task before it has finished though which may not be desirable in your environment.

    -fogboot.ipxe

    [CODE]#!ipxe
    dhcp
    chain http://1.1.1.1/images/boot.php?mac=${net0/mac}&asset=${asset:uristring}
    boot[/CODE]

    -build command
    [CODE]make bin/undionly.kpxe EMBED=fogboot.ipxe[/CODE]

    -sample boot.php
    [CODE]<?php
    $mac = urldecode($_GET[‘mac’]);
    // Do some stuff with the mac here…

    $fogServer = “1.1.1.1”;
    $kernel = “images/bzImage”;
    $kernelOptions = “root=/dev/ram0 rw ramdisk_size=127000 ip=dhcp dns= mode=onlydebug”
    $initrd = “images/init.gz”;

    echo writeIPXE($fogServer, $kernel, $kernelOptions, $initrd);

    function writeIPXE($fogServer, $kernel, $kernelOptions, $initrd){
    $ipxe = <<<DOC
    #!ipxe
    kernel http://$fogServer/$kernel $kernelOptions
    initrd http://$fogServer/$initrd
    boot
    DOC;
    return $ipxe;
    }
    ?>[/CODE]

  • Reboot = lost connection

    5
    0 Votes
    5 Posts
    2k Views
    B

    [quote=“BryceZ, post: 9242, member: 2”]Have you tried:
    [CODE]sudo stop tftpd-hpa
    sudo start tftpd-hpa[/CODE][/quote]

    Yes, no luck

  • "Password required"

    4
    0 Votes
    4 Posts
    2k Views
    J

    Sorry for the initial post. I have no excuse for the immaturity displayed. However, by tinkering with the server, I’ve seemed to get a decent grasp on the basic tasks provided by the software. Again, apologies for all of this.

  • Dell Optiplex 960 won't Inventory

    1
    0 Votes
    1 Posts
    849 Views
    No one has replied
  • Ubuntu Desktop Blocking Ports?

    3
    0 Votes
    3 Posts
    1k Views
    A

    Thank you, I greatly appreciate it.

  • Cannot change menu timeout after 0.32 upgrade

    3
    0 Votes
    3 Posts
    2k Views
    J

    Got it, thanks.

    But any idea why the web-based config options don’t work?

  • No DHCP or no TFTP

    4
    0 Votes
    4 Posts
    2k Views
    F

    worked fine

  • Uploading and Deploying Images.

    11
    0 Votes
    11 Posts
    4k Views
    J

    Good to hear. I work exclusively with OEM computers so the multiple partition is not a new thing for me to cause issues.

  • Fog client ubuntu?

    3
    0 Votes
    3 Posts
    2k Views
    D

    I am a Technology Director for a k-12 Public school and I use FOG to deploy my Windows and Linux machines. I LOVE IT. I would really like to have a FOG client for Ubuntu that would be able to Power down computers on a schedule like the GREEN FOG does for Windows.

  • Unable to get Gigabit Speeds

    13
    0 Votes
    13 Posts
    6k Views
    B

    Hello,

    I was reading you thread and from reading your initial post and the post where you state FOG “does not multicast” I believe I might have an idea of what’s happening to you.

    First, are you starting multiple individual images? If so, this means each PC is going to access the image on the fog server independently, hitting your disks harder and slowing the transfer with each additional PC.

    Secondly, you CAN multicast. Here’s how:

    Add the machines you want to image into inventory.
    Create a group and place the machines you want to image into that group.
    Go to TASK MANAGEMENT.
    LIST ALL GROUPS
    You’ll see the multicast option next to the group you want to image.
    Set the CRON settings, shutdown, etc., and hit submit the job.

    I hope I’m not totally off base, but I did this in the past and had the same reaction. “WOW this is too slow!” “I used ghost and it was soo much faster!” etc,.

    Let me know if it helps.

  • New User Trying to Upload Image to Dell 620

    2
    0 Votes
    2 Posts
    1k Views
    W

    sigh Please ignore my post … I found my answer here

    [url]http://community.spiceworks.com/topic/194077-fog-can-t-upload-image[/url]

    LOL … its early thats my excuse.

  • Ubuntu errors when downloading image to Vostro 3500

    2
    0 Votes
    2 Posts
    1k Views
    F

    Running FOG 0.32 on Ubuntu 11.04
    I am experiencing the same problem, even without using Dell Vostro clients.
    Receiving the
    NOHZ: local_softirq_pending 08
    error repeatedly regardless of the machine type.
    Our short term solution to this problem was replacing all of the gigabit switches on the network with 10/100 switching. Now everything works, but slowly. I would be interested to know why this worked.

  • New user - trying to DEPLOY XP image to virtualbox

    4
    0 Votes
    4 Posts
    2k Views
    C

    @Phil,
    Even easier than creating a new kernel, in the VirtualBox settings, create an IDE HDD.
    Settings > Storage > ‘right click’ IDE Controller > Add HardDisk
    Fog should recognize and deploy to this drive just fine for you… also make sure network settings are ‘bridged’

  • FOG tasks taking forever

    2
    0 Votes
    2 Posts
    992 Views
    T

    Can anybody help with this?

  • Images Subfolders for Additional Storage?

    6
    0 Votes
    6 Posts
    2k Views
    E

    Just realized the two partitions I was trying to use were on the same disk… just deleted the one I was trying to expand with and extended the size of the one currently in use.

    LVM would have been another way of going about it had I been using two separate disks like I thought I was. Thanks for your attempt at helping!

    #close

140

Online

12.3k

Users

17.4k

Topics

155.8k

Posts