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

    Posts made by cml

    • RE: [SVN ???] iPXE input/output error

      Here are the new files with debugging for undi, dhcp, dns, and tftp.

      tftpboot.tar.gz

      posted in Bug Reports
      cmlC
      cml
    • RE: Lenovo 11e - Doesn't pass Menu screen on iPXE

      I forgot github redirects their files differently.

      This should be the correct link: https://github.com/FOGProject/fogproject/raw/dev-branch/packages/tftp/realtek.pxe

      posted in FOG Problems
      cmlC
      cml
    • RE: Lenovo 11e - Doesn't pass Menu screen on iPXE

      @Ahagel Source forge is down, but you should be able to get it from github.

      wget https://github.com/FOGProject/fogproject/blob/dev-branch/packages/tftp/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: Rename fails but adds client to domain.

      @Psycholiquid

      I don’t believe .32 has been touched in quite some time. You would also have to install the legacy client on your image, but you can try that with the current version of FOG you have as well.

      Still strange that it only happens to the one model.

      posted in FOG Problems
      cmlC
      cml
    • RE: Two "new fog client" settings?

      What about something like this?

      • Showing I have duplicate values.
      mysql> select * from globalSettings where settingKey="FOG_TFTP_PXE_KERNEL";
      +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+
      | settingID | settingKey          | settingDesc                                                                        | settingValue | settingCategory |
      +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+
      |         6 | FOG_TFTP_PXE_KERNEL | Location of kernel file on the PXE server, this should point to the kernel itself. | bzImage      | TFTP Server     |
      |       147 | FOG_TFTP_PXE_KERNEL | Location of kernel file on the PXE server, this should point to the kernel itself. | bzImage      | TFTP Server     |
      +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+
      2 rows in set (0.00 sec)
      
      
      • Dropping duplicates.
      mysql> ALTER IGNORE TABLE globalSettings ADD UNIQUE INDEX (settingKey);
      Query OK, 133 rows affected (0.01 sec)
      Records: 133  Duplicates: 2  Warnings: 0
      
      mysql> ALTER TABLE globalSettings DROP INDEX SettingKey;
      Query OK, 131 rows affected (0.00 sec)
      Records: 131  Duplicates: 0  Warnings: 0
      
      • Showing the duplicate is now gone.
      mysql> select * from globalSettings where settingKey="FOG_TFTP_PXE_KERNEL";
      +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+
      | settingID | settingKey          | settingDesc                                                                        | settingValue | settingCategory |
      +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+
      |         6 | FOG_TFTP_PXE_KERNEL | Location of kernel file on the PXE server, this should point to the kernel itself. | bzImage      | TFTP Server     |
      +-----------+---------------------+------------------------------------------------------------------------------------+--------------+-----------------+
      1 row in set (0.00 sec)
      
      posted in Bug Reports
      cmlC
      cml
    • RE: Dell Lattiude E6540

      Do you have other E6540s that work?

      I have had this issue with some Lenovos in the past. Updating the BIOS and resetting to defaults usually fixes it, but when it doesn’t we’ve had to replace the NIC.

      posted in Hardware Compatibility
      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: Lenovo 11e - Doesn't pass Menu screen on iPXE

      You could download it manually, I have never tested this though.

      cd /tftpboot
      https://svn.code.sf.net/p/freeghost/code/trunk/packages/tftp/realtek.pxe
      
      posted in FOG Problems
      cmlC
      cml
    • RE: How do you add your drivers to make universal images?

      @nengelhardt

      You can do something like this https://anothermike2.wordpress.com/2011/05/07/adding-drivers-using-pnputil-and-forfiles/

      But it will make your images HUGE

      posted in Windows 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: iPxe initialising devices... Sticking

      @Dragnous When it goes dead can you try unplugging the usb and plugging it back in?

      posted in General
      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: iPxe initialising devices... Sticking

      1.2.0 is the latest stable version, but I do not believe those options were added untila later revision. You can upgrade to trunk which has been reliable and stable for me that last few months.

      Of course make sure you backup first.

      posted in General
      cmlC
      cml
    • RE: iPxe initialising devices... Sticking

      @Dragnous

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

      posted in General
      cmlC
      cml
    • RE: iPxe initialising devices... Sticking

      @Dragnous

      On the host management page

      upload-0154d872-982a-4306-8124-7d47af7b630a

      The same setting exists on the group management page, so you can apply it to a group of computers.

      upload-599e5fe9-b89f-4057-9347-4702d89d455b

      posted in General
      cmlC
      cml
    • RE: pb update 4737 - php5

      Ah, unmet dependencies apt-get -f install should fix them.

      apt-get -f install
      
      apt-get -y install php5 php5-cli php5-fpm php-gettext
      
      posted in Bug Reports
      cmlC
      cml
    • RE: pb update 4737 - php5

      @techno.clarensac

      Can you copy the error output and paste it here?

      posted in Bug Reports
      cmlC
      cml
    • RE: pb update 4737 - php5

      @techno.clarensac

      Looks like you just have to force the install.

      sudo apt-get -f install php5 php5-cli php5-fpm php-gettext```
      posted in Bug Reports
      cmlC
      cml
    • RE: pb update 4737 - php5

      Are you able to re-install the packages manually?

      sudo apt-get -y install php5 php5-cli php5-fpm php-gettext
      
      posted in Bug Reports
      cmlC
      cml
    • 1 / 1