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

    How to make a multi hardware image

    Scheduled Pinned Locked Moved
    Tutorials
    4
    14
    6.2k
    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

      [quote=“Varadin, post: 15621, member: 14268”]Hi Tom your solution is good in theory. if you manage a huge computer park it is far most easy to keep in hand one usb nic and one pci nic and upload the driver then manage a 120 go windows image … and this technique permit to add driver on the fly into your repository, upgrade them easily or remove them if they are not need anymore[/quote]

      I understand what you’re saying and agree to a point. I work for a school district so every year we bid for the system we need to replace others. Because of this, we actually only maintain 6 different systems. Our images, with all drivers of all systems included with all software for the base is only 20GB. So for us, it’s just easier to build the image with the drivers embedded.

      Different strokes for different folks I guess.

      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

        I agree Tom, I use a similar method as what you have described. But I as well work in a school corporation and we only keep about 5 - 6 models on hand, and normally share drivers. Since we use the same company, it normally just involves dropping in the new driver, sysprepping and pushing out the new image.

        I would be interested in looking at your scripts and information to see how I can streamline my processes a little better.

        But on the same note, a colleague of mine uses the same process as Lee has described,

        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

          I wasn’t feeling too well today, so I was not at work, but I’ll try to get something here tomorrow.

          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

            No rush, my teachers are busy teaching again so I can go back to playing and learning. Windows 7 got thrown on me last minute last year, so this year I want to take some time to prepare and work the bugs out; I learned to sysprep and all that jazz, now I need to streamline and fix some hiccups.

            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

              We have a network share that we just placed all the drivers, but this could easily be changed to be right on the

              @echo off
              net use z: \<location of drivers> <ADPASSWORD> /user:<ADUSERNAME>
              for /r z:\ %%i in (*.inf) do pnputil -a %%i
              net use /del z:

              Thanks,

              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

                Ahh yes, another Active Directory environment.

                I’ve been talking with our technology director, and I have him almost convinced that an Active Directory environment would be good for us.

                Any experience with a Novell Network? I haven’t been able to get anything to path on my Novell network without first logging on, and if there are no NIC drivers, there is no log on. If there is no log on, there is no access. Are there similar ways to connect to content via the command line? Ideas?

                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

                  net use z: \<location of drivers> <ADPASSWORD> /user:<ADUSERNAME>

                  This is for a Hardware (mostly) independent image. So theorethically, you would just create a VM. It’s network drivers should work with any Windows.

                  Change the ADPASSWORD and ADUSERNAME info out for your novell stuff.

                  This script is run before the image is uploaded. So basically, the image comes prepackaged with all the needed drivers.

                  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

                    I’ll give it a shot! I normally use a virutal image and install the novell client before I push the image, there is just one specific model that has a hiccup with the NIC drivers. I’ll let you know what I figure out with the scripts.

                    Not trying to be lazy, I know that Novell and AD are both LDAP network I just didn’t know if the commands transposed 🙂

                    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

                      Windows commands always do. Good thing for SAMBA.

                      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

                        Awesome, I got a form of it working. However if I don’t have the Novell client installed on the computer, it will not map the drive. It tries, it just never succeeds. This should more than work for my student and staff images. Thanks a bunch!

                        I would just like to figure out how to map the drive without installing the Novell client, but that isn’t your problem 🙂

                        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
                        • 1 / 1
                        • First post
                          Last post

                        206

                        Online

                        12.0k

                        Users

                        17.3k

                        Topics

                        155.2k

                        Posts
                        Copyright © 2012-2024 FOG Project