• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Latest FOG 0.33b

    Scheduled Pinned Locked Moved
    General
    77
    1.6k
    6.1m
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Tom ElliottT
      Tom Elliott
      last edited by

      r1261 released.

      Removes obsolete imgargs command. Adds reporting of whether the host is registered or not as a gap in the menu.

      Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

      Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

      Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

      1 Reply Last reply Reply Quote 0
      • Tom ElliottT
        Tom Elliott
        last edited by

        r1262 released.

        Fixes Windows 8 and below imaging issues. Yes this includes UEFI/GPT disks. You will need to disable secure boot on the drives but all seems to work. You may even (which I might fix myself) randomize the GUID of the disk to get booting to work as well. Hopefully this helps, and it’s very exciting.

        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

        Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

        Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

        1 Reply Last reply Reply Quote 0
        • Jaymes DriverJ
          Jaymes Driver Developer
          last edited by

          [quote=“Tom Elliott, post: 23612, member: 7271”]r1262 released.

          Fixes Windows 8 and below imaging issues. Yes this includes UEFI/GPT disks. You will need to disable secure boot on the drives but all seems to work. You may even (which I might fix myself) randomize the GUID of the disk to get booting to work as well. Hopefully this helps, and it’s very exciting.[/quote]

          Nice job Tom!

          Now I just wait to hear those dreaded words “Get Windows 8 installed on all the staff and student machines!”

          WARNING TO USERS: My comments are written completely devoid of emotion, do not mistake my concise to the point manner as a personal insult or attack.

          1 Reply Last reply Reply Quote 0
          • Tom ElliottT
            Tom Elliott
            last edited by

            Lol, still refining a little bit, you know trying to get the procedure (for mps/mpa types) at least right now.

            Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

            Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

            Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

            1 Reply Last reply Reply Quote 0
            • B
              BigMan99211
              last edited by

              What has changed since version 1256, that would stop “Full Host Registration…” from running? It worked fine 2 days ago, now it’s just bypassing and trying to boot to the hard drive…

              "Failure is not an option. It come pre-installed on Windows…" - Anonymous

              "Life is hard; It's harder if you're stupid" - John Wayne

              1 Reply Last reply Reply Quote 0
              • Tom ElliottT
                Tom Elliott
                last edited by

                Did you make edits to the boot.php file? If so, check that the line has a \n at the end.

                Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                1 Reply Last reply Reply Quote 0
                • B
                  BigMan99211
                  last edited by

                  No. I haven’t made any changes.

                  "Failure is not an option. It come pre-installed on Windows…" - Anonymous

                  "Life is hard; It's harder if you're stupid" - John Wayne

                  1 Reply Last reply Reply Quote 0
                  • JunkhackerJ
                    Junkhacker Developer
                    last edited by

                    @BigMan99211 post a copy (remove your IP addresses if you care to) of the results you get from this url
                    (your-fog-server-address)/fog/service/ipxe/boot.php?mac=00:00:00:00:00:00

                    1 Reply Last reply Reply Quote 0
                    • B
                      BigMan99211
                      last edited by

                      [CODE]#!ipxe
                      colour --rgb 0xFF6600 2
                      cpair --foreground 7 --background 2 2
                      console --picture http://10.20.0.225/fog/service/ipxe/bg.png
                      :MENU
                      menu
                      item fog.local Boot from hard disk
                      item fog.memtest Run Memtest86+
                      item fog.reg Quick Registration and Inventory
                      item fog.reginput Perform Full Host Registration and Inventory
                      item fog.sysinfo Client System Information
                      item fog.debug Debug Mode
                      choose --default fog.local --timeout 3000 target && goto ${target}
                      :fog.local
                      sanboot --no-describe --drive 0x80 || exit ||
                      goto MENU
                      :fog.memtest
                      kernel fog/memtest/memtest bootfile=http://10.20.0.225/fog/service/ipxe/boot.php?mac=${net0/mac} fastboot
                      boot ||
                      :fog.reg
                      kernel fog/kernel/bzImage bootfile=http://10.20.0.225/fog/service/ipxe/boot.php fastboot
                      imgfetch fog/images/init.gz
                      imgargs fog/kernel/bzImage root=/dev/ram0 rw ramdisk_size=127000 ip=dhcp dns= keymap= web=10.20.0.225/fog/ loglevel=4 consoleblank=0 mode=autoreg
                      boot ||
                      goto MENU
                      :fog.reginput
                      kernel fog/kernel/bzImage bootfile=http://10.20.0.225/fog/service/ipxe/boot.php fastboot
                      imgfetch fog/images/init.gz
                      imgargs fog/kernel/bzImage root=/dev/ram0 rw ramdisk_size=127000 ip=dhcp dns= keymap= web=10.20.0.225/fog/ loglevel=4 consoleblank=0 mode=manreg
                      boot ||
                      goto MENU
                      :fog.sysinfo
                      kernel fog/kernel/bzImage bootfile=http://10.20.0.225/fog/service/ipxe/boot.php fastboot
                      imgfetch fog/images/init.gz
                      imgargs fog/kernel/bzImage root=/dev/ram0 rw ramdisk_size=127000 ip=dhcp dns= keymap= web=10.20.0.225/fog/ loglevel=4 consoleblank=0 mode=sysinfo
                      boot ||
                      goot MENU
                      :fog.debug
                      kernel fog/kernel/bzImage bootfile=http://10.20.0.225/fog/service/ipxe/boot.php fastboot
                      imgfetch fog/images/init.gz
                      imgargs fog/kernel/bzImage root=/dev/ram0 rw ramdisk_size=127000 ip=dhcp dns= keymap= web=10.20.0.225/fog/ loglevel=4 consoleblank=0 mode=onlydebug
                      boot ||
                      goto MENU
                      autoboot[/CODE]

                      "Failure is not an option. It come pre-installed on Windows…" - Anonymous

                      "Life is hard; It's harder if you're stupid" - John Wayne

                      1 Reply Last reply Reply Quote 0
                      • A
                        ArchFan
                        last edited by

                        [quote=“BigMan99211, post: 23619, member: 21932”]What has changed since version 1256, that would stop “Full Host Registration…” from running? It worked fine 2 days ago, now it’s just bypassing and trying to boot to the hard drive…[/quote]

                        I have the same issue, except that any time I choose anything from the iPXE menu, it boots to HDD regardless. I thought it was just me, so I was going to try a fresh install. I didn’t customize any of the configs, etc other than adding the MYSQL passwords to the 2 required files

                        1 Reply Last reply Reply Quote 0
                        • Tom ElliottT
                          Tom Elliott
                          last edited by

                          Change your FOG Configuration files
                          FOG Configuration (?) Icon
                          FOG Settings
                          Change the areas that have fog/memtest/memtest, fog/images/init.gz, fog/kernel/bzImage to say only memtest, init.gz, bzImage respectively.

                          Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                          Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                          Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                          1 Reply Last reply Reply Quote 0
                          • JunkhackerJ
                            Junkhacker Developer
                            last edited by

                            This post is deleted!
                            1 Reply Last reply Reply Quote 0
                            • JunkhackerJ
                              Junkhacker Developer
                              last edited by

                              [quote=“ArchFan, post: 23627, member: 19266”] … the 2 required files[/quote]

                              2?

                              1 Reply Last reply Reply Quote 0
                              • Tom ElliottT
                                Tom Elliott
                                last edited by

                                I don’t know any more

                                I’ve since changed it to one required file.

                                /var/www/{fog,html/fog}/commons/config.php

                                The other config.php just tells the FOG<SERVICENAME> files to point to the main config.php file.

                                Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                                Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                                Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                                1 Reply Last reply Reply Quote 0
                                • B
                                  BigMan99211
                                  last edited by

                                  This is all i’m seeing in /var/www/fog/commons/config.php

                                  [CODE]<?php
                                  /*

                                  • FOG is a computer imaging solution.
                                  • Copyright © 2007 Chuck Syperski & Jian Zhang
                                  • This program is free software: you can redistribute it and/or modify
                                  • it under the terms of the GNU General Public License as published by
                                  • the Free Software Foundation, either version 3 of the License, or
                                  • any later version.
                                  • This program is distributed in the hope that it will be useful,
                                  • but WITHOUT ANY WARRANTY; without even the implied warranty of
                                  • MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
                                  • GNU General Public License for more details.
                                  • You should have received a copy of the GNU General Public License
                                  • along with this program. If not, see http://www.gnu.org/licenses/.

                                  */

                                  /*

                                  • DATABASE VARIABLES

                                  */

                                  define(‘DATABASE_TYPE’, ‘mysql’); // mysql or oracle
                                  define(‘DATABASE_HOST’, ‘localhost’);
                                  define(‘DATABASE_NAME’, ‘fog’);
                                  define(‘DATABASE_USERNAME’, ‘root’);
                                  define(‘DATABASE_PASSWORD’, ‘’);

                                  /*

                                  • SYSTEM SERVICE VARIABLES

                                  */

                                  define( “UDPSENDERPATH”, “/usr/local/sbin/udp-sender” );
                                  define( “MULTICASTLOGPATH”, “/opt/fog/log/multicast.log” );
                                  define( “MULTICASTDEVICEOUTPUT”, “/dev/tty2” );
                                  define( “MULTICASTSLEEPTIME”, 10 );
                                  define( “MULTICASTINTERFACE”, “eth0” );
                                  define( “UDPSENDER_MAXWAIT”, null );
                                  define( “LOGMAXSIZE”, “1000000” );

                                  define( “REPLICATORLOGPATH”, “/opt/fog/log/fogreplicator.log” );
                                  define( “REPLICATORDEVICEOUTPUT”, “/dev/tty3” );
                                  define( “REPLICATORSLEEPTIME”, 600 );
                                  define( “REPLICATORIFCONFIG”, “/sbin/ifconfig” );

                                  define( “SCHEDULERLOGPATH”, “/opt/fog/log/fogscheduler.log” );
                                  define( “SCHEDULERDEVICEOUTPUT”, “/dev/tty4” );
                                  define( “SCHEDULERSLEEPTIME”, 60 );

                                  /*

                                  • SYSTEM CONFIG VARIABLES

                                  */

                                  require_once(‘system.php’);

                                  /*

                                  • IMPORTANT NOTICE!

                                  • In order to make updating from version to version of fog easier, we have moved
                                  • most off these settings into the fog database. The only settings which are
                                  • active are the settings above. All settings below this message are transfered
                                  • to the fog database during schema update/installation. To modify these
                                  • settings please use the fog management portal.

                                  */

                                  define(‘TFTP_HOST’, “10.20.0.225”);
                                  define(‘TFTP_FTP_USERNAME’, “fog”);
                                  define(‘TFTP_FTP_PASSWORD’, “cc9a0b7a329e856c1b8013dd254a2f8e”);
                                  define(‘TFTP_PXE_CONFIG_DIR’, ‘/tftpboot/pxelinux.cfg/’);
                                  define(‘TFTP_PXE_KERNEL_DIR’, ‘/tftpboot/fog/kernel/’);
                                  define(‘PXE_KERNEL’, ‘bzImage’);
                                  define(‘PXE_KERNEL_RAMDISK’,127000);
                                  define(‘USE_SLOPPY_NAME_LOOKUPS’,true);
                                  define(‘MEMTEST_KERNEL’, ‘memtest’);
                                  define(‘PXE_IMAGE’, ‘init.gz’);
                                  define(‘PXE_IMAGE_DNSADDRESS’, “”);
                                  define(‘STORAGE_HOST’, “10.20.0.225”);
                                  define(‘STORAGE_FTP_USERNAME’, “fog”);
                                  define(‘STORAGE_FTP_PASSWORD’, “cc9a0b7a329e856c1b8013dd254a2f8e”);
                                  define(‘STORAGE_DATADIR’, ‘/images/’);
                                  define(‘STORAGE_DATADIR_UPLOAD’, ‘/images/dev/’);
                                  define(‘STORAGE_BANDWIDTHPATH’, ‘/fog/status/bandwidth.php’);
                                  define(‘UPLOADRESIZEPCT’,5);
                                  define(‘WEB_HOST’, “10.20.0.225”);
                                  define(‘WOL_HOST’, “10.20.0.225”);
                                  define(‘WOL_PATH’, ‘/fog/wol/wol.php’);
                                  define(‘WOL_INTERFACE’, “eth0”);
                                  define(‘SNAPINDIR’, “/opt/fog/snapins/”);
                                  define(‘QUEUESIZE’, ‘10’);
                                  define(‘CHECKIN_TIMEOUT’,600);
                                  define(‘USER_MINPASSLENGTH’,4);
                                  define(‘USER_VALIDPASSCHARS’, ‘1234567890ABCDEFGHIJKLMNOPQRSTUVWZXYabcdefghijklmnopqrstuvwxyz_()^!#-’);
                                  define(‘NFS_ETH_MONITOR’, “eth0”);
                                  define(‘UDPCAST_INTERFACE’, “eth0”);
                                  define(‘UDPCAST_STARTINGPORT’, 63100 ); // Must be an even number! recommended between 49152 to 65535
                                  define(‘FOG_MULTICAST_MAX_SESSIONS’,64);
                                  define(‘FOG_JPGRAPH_VERSION’, ‘2.3’);
                                  define(‘FOG_REPORT_DIR’, ‘./reports/’);
                                  define(‘FOG_UPLOADIGNOREPAGEHIBER’,true);
                                  ?>[/CODE]

                                  "Failure is not an option. It come pre-installed on Windows…" - Anonymous

                                  "Life is hard; It's harder if you're stupid" - John Wayne

                                  1 Reply Last reply Reply Quote 0
                                  • Tom ElliottT
                                    Tom Elliott
                                    last edited by

                                    What are you talking about?

                                    Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                                    Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                                    Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                                    1 Reply Last reply Reply Quote 0
                                    • Tom ElliottT
                                      Tom Elliott
                                      last edited by

                                      [quote=“Tom Elliott, post: 23628, member: 7271”]Change your FOG Configuration files
                                      FOG Configuration (?) Icon
                                      FOG Settings
                                      Change the areas that have fog/memtest/memtest, fog/images/init.gz, fog/kernel/bzImage to say only memtest, init.gz, bzImage respectively.[/quote]

                                      Have you followed the above information I already stated?

                                      Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                                      Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                                      Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                                      1 Reply Last reply Reply Quote 0
                                      • B
                                        BigMan99211
                                        last edited by

                                        I guess I don’t understand your directions…

                                        "Failure is not an option. It come pre-installed on Windows…" - Anonymous

                                        "Life is hard; It's harder if you're stupid" - John Wayne

                                        1 Reply Last reply Reply Quote 0
                                        • JunkhackerJ
                                          Junkhacker Developer
                                          last edited by

                                          in your fog configuration page, there are settings for the locations for the locations of
                                          FOG_TFTP_PXE_KERNEL, which is currently fog/kernel/bzImage it needs to just be bzImage
                                          FOG_MEMTEST_KERNEL, which needs to just be memtest
                                          and FOG_PXE_BOOT_IMAGE, which needs to just be init.gz

                                          no editing of php files, all from the web interface

                                          1 Reply Last reply Reply Quote 0
                                          • B
                                            BigMan99211
                                            last edited by

                                            OK! Got it! Makes more sense now… 😄

                                            "Failure is not an option. It come pre-installed on Windows…" - Anonymous

                                            "Life is hard; It's harder if you're stupid" - John Wayne

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 50
                                            • 51
                                            • 52
                                            • 53
                                            • 54
                                            • 77
                                            • 78
                                            • 52 / 78
                                            • First post
                                              Last post

                                            233

                                            Online

                                            12.0k

                                            Users

                                            17.3k

                                            Topics

                                            155.2k

                                            Posts
                                            Copyright © 2012-2024 FOG Project