• Issue imaging with Surface Pro

    Solved
    21
    0 Votes
    21 Posts
    7k Views
    george1421G

    @jemerson93 The mbr/gpt issue needs to be resolved, period. The truth may be this slow creation process may be a ‘feature’ of 4.17.x kernel and not a bug. I can tell you this issue is still on the developers plate (which is getting overloaded at the moment). Please give them a bit to get back from holiday and back in business.

  • PXE-E32 Error; Not sure what went wrong.

    Solved
    22
    0 Votes
    22 Posts
    6k Views
    J

    @sebastian-roth Can go ahead and mark this as solved. Thank you for the help.

  • Edit Image

    Solved
    4
    0 Votes
    4 Posts
    798 Views
    george1421G

    @quazz said in Edit Image:

    You could potentially use postdownloadscripts instead for something like this.

    This is exactly how I go about updating the golden image between image captures. It uses a similar concept to dynamically installing drivers during image deployment. I do take this one step more by creating a file in the golden image that has a sequence number in it, that way I can reference that file in the post install script to only apply the fixes related to that specific sequence number.

  • Reattempting to update database...Failed

    Solved
    15
    0 Votes
    15 Posts
    2k Views
    T

    Thanx.
    The thread can be marked als solved. Can I do this somewhere or can just a board admin do that?

  • FOG 1.5.4 boots to menu but fails to register

    Solved
    5
    0 Votes
    5 Posts
    914 Views
    S

    @Korvyr From the pictures yo posted I guess you have a different issue to what has been initially posted. Would you mind opening a new thread and posting your client hardware details there? I will move your posts to that as soon as you opened a new thread.

  • Free space is always 0

    Solved
    6
    0 Votes
    6 Posts
    905 Views
    S

    @Mike-Fahey Can you post the commands used to delete and how you see that there is still no free space? If we don’t see what you are, how can we help you?

  • FOG initial images boots but cannot subsequently locate DHCP server

    Solved
    5
    0 Votes
    5 Posts
    2k Views
    M

    Hi, yeah I’d understood what you were getting at. I’ve tested with a dumb switch in line at the client end and it worked first time.

    Many thanks for your help.

  • Allowed memory size of 536870912 bytes exhausted

    Solved
    9
    0 Votes
    9 Posts
    2k Views
    Tom ElliottT

    @andrewg78 it’s because of the huge history. There is no fixing that can cure it beyond cleaning it out. With 1.6, however, it will be somewhat alleviated to the use of proper sql pagination. This isn’t a leak persay, it just can’t store the amount of information in the memory space.

  • Connection time out (4c0a6035)

    Solved
    6
    0 Votes
    6 Posts
    2k Views
    Wayne WorkmanW

    @tlyneyor Glad I could help. I’ve seen duplicates a lot, so I’m really familiar and very weary of them.

    An easy way to detect rogue DHCP services is to do a packet capture on a linux box while issuing the commands to release the current lease and get a new one:
    dhclient -r; dhclient. In the packet capture, you would see the rogue DHCP server’s address and MAC address.

    Also, there is a way on Linux to check a specific IP address to see if there are duplicates: arping -D -q -I eth0 -c 2 192.168.1.250 ; echo $? If you get a 0 back from that command, it means there are no duplicates. 1 or anything else that isn’t 0 means there are duplicates. Note that eth0 in the command is the name of the interface you are using to send the request out of and 192.168.1.250 is the IP being tested. This does not need to be run on the affected computer, and probably should be executed on a normal-functioning system.

  • Join Domain after deploy is not checked on newly registered hosts

    Solved
    2
    0 Votes
    2 Posts
    396 Views
    george1421G

    Can you tell me (sorry a bit too lazy to look) when you quick register a host, does it ask you for a group assignment? If so you could use the persistent group (hack) to create a host template with all of the settings you want by default for new hosts, then when you add the system to a template group, those settings will be copied to the newly registered host.

    The other way I can think how to do this is create a mysql database trigger, to when a new host is added to the hosts table in mysql, the check box is checked in the database. I’m not really in favor of the second part, but it will work if all other choices fail. The template host/persistent group plugin it a bit cleaner approach.

  • FOG server crashing on group deployment

    Unsolved
    19
    0 Votes
    19 Posts
    5k Views
    N

    @reese I am having the same issue. How did you safely downgrade back to 1.4.4. I had no issues there but can’t image an entire lab anymore. Just locks up. Hints on the downgrade process would be appreciated!

  • PXE boot fails due to incorrect server IP

    Solved
    2
    0 Votes
    2 Posts
    310 Views
    W

    I figured it out!

    I’m using Meraki as the router and setting option 66 and 67 doesn’t work (well… 67 does but 66 isn’t enough)

    Under DHCP, the appropriate boot options need to be set.

    0_1533836669297_Screenshot 2018-08-09 13.43.37.png

  • 0 Votes
    3 Posts
    2k Views
    RobTitian16R

    This can be marked as solved. I updated to 1.5.4 and everything is confirmed to be working once more. Thanks!

  • Fixparts Missing? 1.5.4 Win 10

    Solved
    14
    0 Votes
    14 Posts
    5k Views
    S

    @gnichols I am sorry but we can’t help if we don’t know more details about your setup and what exactly goes wrong. Most situations/setups are more or less different and we need to know all your details to help. Start by opening a new thread and answering the following questions: FOG version? Has it ever worked for you? When did it break and why (update…)? Can you take a picture of the exact error on your screen and post that too?

  • Clone Image type Single Disk question

    2
    0 Votes
    2 Posts
    420 Views
    george1421G

    If I understand your question correctly, your source computer only has a single hard drive, but your target computer has 2 hard drives. Can you deploy to this? Yes. in the host definition for the target computer update “Host Primary Disk” field to point to the correct disk.

  • Active Multi-cast Tasks 'In-Progress, status 0'', while Active tasks ended.

    Solved
    1
    1 Votes
    1 Posts
    392 Views
    No one has replied
  • Images folder mounted to new partition

    Solved
    2
    0 Votes
    2 Posts
    303 Views
    george1421G

    @stucraster I have a tutorial around moving your imaging files off the root partition here: https://forums.fogproject.org/topic/11048/moving-fog-s-images-files-off-the-root-partition-2017-edition

    Usefull commands are lsblk to show block devices (i.e. storage devices) and df -h to show mounted disks.

  • Force install mysqldb instead of mariadb

    Solved
    5
    0 Votes
    5 Posts
    1k Views
    Wayne WorkmanW

    @leonj So try to go to the web interface, and then immediately check the apache error log file. Post the last 20ish lines of that, sanitized if necessary. Also - we need to know what versions of MySQL and PHP and php-mysqlnd you are using.

  • Replication of Storage node

    Solved
    2
    0 Votes
    2 Posts
    539 Views
    george1421G

    This message is telling me that either you change the password of the linux user fog’s password on the storage node or the settings in the storage node configuration on the master fog server is incorrect.

    Understand this is the FOG service account called fog not the web ui’s default administrator account also called fog

  • Session multicast disappear just after the launch

    Solved
    6
    0 Votes
    6 Posts
    914 Views
    M

    @tom-elliott Hello, sorry, I did not understand what I had to try?

141

Online

12.3k

Users

17.4k

Topics

155.7k

Posts