• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. cml
    3. Best
    • Profile
    • Following 0
    • Followers 0
    • Topics 11
    • Posts 120
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: iPxe initialising devices... Sticking

      @Dragnous

      upload-4bb9b28d-bbe8-4979-972f-5a7a307030ff

      posted in General
      cmlC
      cml
    • RE: Add Image page not loading

      @cmcleod
      Check under storage management and make sure you have at least one node as master.

      posted in Bug Reports
      cmlC
      cml
    • RE: image upload error

      You could do it through mysql.

      This should only nullify the cells that contain fog/kernel/bzImage, but you can remove everything after the WHERE and have it set all hosts.

      UPDATE hosts SET hostKernel = NULL WHERE hostKernel="fog/kernel/bzImage";

      posted in FOG Problems
      cmlC
      cml
    • RE: User Profile

      @prince-xyryl I do not believe the built-in administrator account can be deleted, but you can disable it.

      I am assuming you have something similar to this in your unattend file, correct?

      <AutoLogon>
                      <Password>
                          <Value>notmypw</Value>
                          <PlainText>true</PlainText>
                      </Password>
                      <LogonCount>3</LogonCount>
                      <Enabled>true</Enabled>
                      <Username>administrator</Username>
      </AutoLogon>
      

      If you remove that block when you run sysprep with the generalize switch it should not enable the administrator account. Just make sure you create your other account before hand.

      If you need the administrator account after sysprep you can disable it with this command: net user administrator /active:no

      More information: https://technet.microsoft.com/en-us/library/Cc766343(v=WS.10).aspx

      posted in General
      cmlC
      cml
    • RE: SVN 3587 - Failed to restore image

      @Wayne-Workman @ITCC

      The image must be decompressed first as well.

      This is ran from within the image folder.

      cat d1p2.img | pigz -d -c | partclone.restore -O /dev/sda2 -N -f -i -C
      
      posted in Bug Reports
      cmlC
      cml
    • RE: image upload error

      Better yet forget all of that mysql nonsense. You can add all of your hosts to a group and change Group Kernel to nothing, or whatever you may want there.

      posted in FOG Problems
      cmlC
      cml
    • RE: SVN trunk on CENTOS6.7 installation notes

      Hosts can be in more than one group. I have a group named ‘All’ that I use just for mass updating (update AD, add/remove snapins, etc)

      posted in General
      cmlC
      cml
    • RE: Can't delete Host from Group

      This ran in mysql will remove the hosts from the group. All you have to do is swap in your host and group names (leave the quotes).

      I also advise always backing up before you make any mysql changes.

      DELETE FROM groupMembers WHERE gmHostID = (SELECT hostId FROM hosts WHERE hostName="HOSTNAME") AND gmGroupID = (SELECT groupID FROM groups WHERE groupName="GROUPNAME");
      
      posted in Bug Reports
      cmlC
      cml
    • RE: Automatic hardware detection & driver installs in FOG

      @ArchFan
      Under: /images/postdownloadscripts/
      Name: driverinstall.sh

      Just make sure you call the script from fog.postdownload

      ${postdownloadpath}/driverinstall.sh
      
      posted in General
      cmlC
      cml
    • RE: Wake on LAN over different VLANS

      @szecca1

      In wireshark first select your connection and then click start
      upload-e49875ba-fccb-4db4-bd77-9fbaf92d62fe

      Once started type wol into the filter box and click on apply.

      This is what it looks like when I send a wol:
      upload-9b5bc60e-7570-4aff-83dc-0481f839b087

      posted in FOG Problems
      cmlC
      cml
    • Rev 5229 - Terms under task management.

      Terms were changed from upload/download to capture/deploy under hosts but it seems to remain under task management. May cause confusion.

      upload-cf50abec-c5d4-40e8-a091-3354ecfc53e3
      upload-41c261e4-3d95-4e27-90c8-ab9eb4ddacf6

      posted in Bug Reports
      cmlC
      cml
    • RE: Wake on LAN over different VLANS

      Your switch is not forwarding the packets across subnets. Do you know what manufacture/model your L3 device is?

      posted in FOG Problems
      cmlC
      cml
    • RE: FOG Imaging Log Not Working

      Those having issues, do you have any errors in your Apache logs?

      Fedora/CentOS

      tail /var/log/httpd/error_log
      

      Debian/Ubuntu

      tail /var/log/apache2/error.log
      
      posted in Bug Reports
      cmlC
      cml
    • RE: Host PC stuck in full wipe mode upon startup

      What version of fog are you running?

      You could try checking in the MySQL table tasks.

      mysql -u root -p
      USE fog;
      SELECT * FROM tasks ORDER BY id DESC LIMIT 5;
      

      That may point you in the right direction, but I will do some testing one I get back to a computer to make sure.

      posted in FOG Problems
      cmlC
      cml
    • RE: Fog 1.2.0 PXE Problems with Certain models

      I had the same issues with one particular model that is now working fine, so this may be solved by upgrading to trunk.

      You can also try upgrading your undionly.kpxe file to the trunk version.

      cd /tftpboot/
      mv undionly.kpxe undionly.kpxe.bak
      wget https://svn.code.sf.net/p/freeghost/code/trunk/packages/tftp/undionly.kpxe
      
      posted in FOG Problems
      cmlC
      cml
    • RE: Unable to delete snapin tasks

      You can delete them from the database manually.

      root@Fog:~# mysql -u root -p
      Enter password:
      
      mysql> use fog;
      
      Database changed
      mysql> DELETE FROM snapinTasks WHERE ststate = 0;
      Query OK, 33 rows affected (0.24 sec)
      
      mysql> quit;
      Bye
      root@Fog:~#
      
      
      posted in FOG Problems
      cmlC
      cml
    • RE: Lenovo 11e - Doesn't pass Menu screen on iPXE

      @Wendell321 It should already be on your server. /tftpboot/realtek.pxe

      posted in FOG Problems
      cmlC
      cml
    • RE: proxyDHCP Issue

      https://ask.wireshark.org/questions/8931/capture-file-appears-to-be-damaged-or-corrupt

      Maybe the issue is tftp defaulting to ASCII? Can you try transfering it with WinSCP?

      Or try using binary mode?

      tftp -i x.x.x.x get issue.pcap
      

      From: https://technet.microsoft.com/en-us/library/Ff698993.aspx?f=255&MSPPError=-2147217396

      posted in FOG Problems
      cmlC
      cml
    • RE: default.ipxe timeout - maybe a dhcp problem? Wireshark logs inside.

      @Wayne-Workman

      Sure,

      I follow the steps in the wiki for the most part, except for the ipxescript I use:

      #!ipxe
      ifclose
      ifopen && goto bootme || goto netstart
      :netstart
      dhcp || shell
      ifopen || reboot
      :netboot
      chain tftp://192.168.1.20/default.ipxe || goto shell
      

      Where of course 192.168.1.20 is replaced with your FOG IP.

      But, reading back over the wiki the section labeled Custom ipxe script has a way that bypasses default.ipxe entirely.

      posted in FOG Problems
      cmlC
      cml
    • RE: sending discover loop

      Have you tried resetting the BIOS to defaults? Are there any BIOS updates for that machine?

      It sounds like the machine is not getting an offer from your DHCP server, but without network logs I’m just guessing.

      What hosts your DHCP? What switching do you use? Are you able to capture packets via wireshark or tcpdump?

      posted in FOG Problems
      cmlC
      cml
    • 1
    • 2
    • 3
    • 2 / 3