• Date of real upload date, not image creation

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    Tom ElliottT

    “Feature” added.

  • Feature Request - Allow Fog to Use Any Mac Address

    Solved
    2
    0 Votes
    2 Posts
    1k Views
    Tom ElliottT

    This “Feature” has now been added.

  • Shading on Alternate Rows in List View

    3
    0 Votes
    3 Posts
    1k Views
    B

    Thanks, Tom! Big help!! My image names are really long, and they usually take up 2-3 lines of space. So, having the shading helps me in telling where one image name ends and the other begins… 🙂

  • Feature Request: "Remove All Snapins" from a group.

    4
    0 Votes
    4 Posts
    2k Views
    J

    +1

    😉

  • Port Fog to Openmediavault as a plugin

    3
    0 Votes
    3 Posts
    2k Views
    G

    No i did not tried it yet but i will…

  • Boot/deploy ISO's from the PXE-menu

    4
    0 Votes
    4 Posts
    2k Views
    M

    I have this added to my PXE-menu:
    LABEL System Rescue CD “Live Image”
    MENU PASSWD m0nd30
    LINUX sysrescue/rescue32
    INITRD sysrescue/initram.igz
    APPEND scandelay=1 docache netboot=nfs://10.187.38.3:/images/sysrescue setkmap=uk
    TEXT
    SystemRescueCD network boot image (recovery)
    ENDTEXT
    \n
    Then you just need to mount the iso from your OS.

  • Offline Image

    3
    0 Votes
    3 Posts
    2k Views
    G

    that’s possible… but please let’s focus on 0.33 working before adding stuff 🙂
    It could be done by using syslinux to boot the init.gz + kernel of FOG, and modifying a bit its code to tell it to look for a file on the disk rather than on a server… interesting…

  • Request: Collapsible Groupings

    1
    0 Votes
    1 Posts
    849 Views
    No one has replied
  • Having a next user level besides mobile user

    17
    0 Votes
    17 Posts
    8k Views
    S

    Thanks for the update on this Tom 😉

  • IPXE vs. PXE

    13
    0 Votes
    13 Posts
    15k Views
    Tom ElliottT

    Or if you know the macs of the systems just add a simple if statement and perform the task right from ipxe.

  • Ipmi / super micro motherboard support.

    2
    0 Votes
    2 Posts
    2k Views
    S

    Hi there,

    from what I understand from your post you want FOG to be able to get the MAC address of the IPMI interface and add it to the inventory.

    From what I know about the supermicro IPMI would not be possible without integrating some form of IPMI driver into the linux kernel FOG boots to gather this inventory.

    The actual machine doesn’t see the IPMI as a network card as such, only a device in device manager (if it was windows)

    When the kernel boots and gathers its inventory you might be able to get some information from dmidecode once said driver is installed but I imagine it would be limited information as its meant to go the other way ie get information about the system while logged in via IPMI interface, not the other way which could also be a security risk.

    let us know how you get on as I have thought about this same issue with HP iLO before and could be handy to have a link to the IPMI/iLO from inside FOG inventory

  • FOG PXE Boot Menu Configuration page

    16
    0 Votes
    16 Posts
    7k Views
    JunkhackerJ

    i may have messed up the formatting of the ipxe boot menu when i sent it to you last. here’s what should be in the php file.
    note: the first line ipxe sees must be #!ipxe

    [url=“/_imported_xf_attachments/0/540_boot.php.txt?:”]boot.php.txt[/url]

  • Fog deploying acronis tib images

    4
    0 Votes
    4 Posts
    3k Views
    Jaymes DriverJ

    You could always use Acronis to load an image on a machine (register it to FOG and load your image from Acronis) but BEFORE booting the OS (that way you won’t have to sysprep again), upload the image to FOG. This would make an exact copy of your current set up and load it to the FOG server in a format it can understand.

    I realize that this is very cumbersome if you have multiple images, but it is a work around 🙂

  • A handful of feature requests

    4
    0 Votes
    4 Posts
    2k Views
    Tom ElliottT

    The “Image Size” I’ve been providing is directly how large partclone is reporting the Device Size is. So you would need a drive with at least that size + a little more. There’s no way, for now, to pull all the image size (rec.img.000) size AND (sys.img.000) size, or d1p#.img sizes. It’s not 100% accurate, but should give a fairly good indication of the size needs.

    BCD I’m aware of that, but it would mean, image, mount proper drive location, interject the bcd where necessary, and much verification. I’ll try to take time this weekend and test that it works, but it’s no guarantee.

    User Management is a goalgoal. I plan to introduce some types of RBAC for users and, maybe later on, groupings of rbacs similar to AD, but less complex.

    I don’t have a goals/progress. I’m just a guy who started trying to get the community back up and excited. I’ve been working fairly hard, but I don’t know what all the expectations are. I know the main feature to add before a “stable” release is Windows 8 support. That’s where I’m stuck and I’m sure others are as well.

  • Imaging using partclone instead of partimage

    33
    0 Votes
    33 Posts
    24k Views
    Tom ElliottT

    Gilou,

    It does not currently contain resize2fs. I’m building another version of init.gz right now with resize2fs enabled. Hopefully this will help you, and all of us out.

    Thank you,

  • Host Import CSV to include secondary MAC addresses

    1
    0 Votes
    1 Posts
    902 Views
    No one has replied
  • Add IP Address changer - Snap-in scripts included

    6
    0 Votes
    6 Posts
    4k Views
    T

    Updated:

    The following will now ignore the case of the Computer name by adding the /I argument to the If statement.

    [INDENT=2]@Echo Off[/INDENT]
    [INDENT=2] [/INDENT]
    [INDENT=2]Set csv=\Server\Share\pcsetup\ipchanger\ComputerList.csv[/INDENT]
    [INDENT=2] [/INDENT]
    [INDENT=2]for /f “skip=1 delims=, tokens=1-7” %%a in (%csv%) do ([/INDENT]
    [INDENT=2] if /I “%computername%”==“%%a” ([/INDENT]
    [INDENT=2] [/INDENT]
    [INDENT=2] netsh int ipv4 set address “Local Area Connection” static %%b %%c %%d[/INDENT]
    [INDENT=2] netsh int ipv4 set dnsserver “Local Area Connection” static %%e[/INDENT]
    [INDENT=2] netsh int ipv4 add dnsserver “Local Area Connection” %%f[/INDENT]
    [INDENT=2] netsh int ipv4 add dnsserver “Local Area Connection” %%g[/INDENT]
    [INDENT=2] [/INDENT]
    [INDENT=2] )[/INDENT]
    [INDENT=2])[/INDENT]
    [INDENT=2]REM Pause[/INDENT]
    [INDENT=2]Echo On[/INDENT]

  • FreeNAS PBI plugin for FOG

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Close Forum "Bug reports"

    2
    0 Votes
    2 Posts
    1k Views
    K

    Adrian,

    All new requests should be placed on the fogproject forums here. The information on sourceforge was let up for historical purposes, records. It would not have been easy to move all the information from SF to here, but we didn’t want to delete any of the information either.

  • Feature Request: Full UEFI Support

    Solved
    2
    0 Votes
    2 Posts
    1k Views
    G

    Hi,

    In my opînaion, this is heavily linked to the use of partclone instead of partimage… So this is work in progress I think 😉

164

Online

12.3k

Users

17.4k

Topics

155.6k

Posts