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

Automatic hardware detection & driver installs in FOG

Scheduled Pinned Locked Moved Solved
General
10
37
23.8k
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.
  • A
    ArchFan @cml
    last edited by Jun 24, 2015, 4:45 PM

    @cml said:

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

    Just make sure you call the script from fog.postdownload

    ${postdownloadpath}/driverinstall.sh
    

    Shouldn’t entering echo ${postdownloadpath}/driverinstall.sh on the server output /images/postdownloadscripts/driverinstall.sh, or no? I was having some issues at first and ended up putting the absolute path to rule that out as an issue

    T 1 Reply Last reply Jun 24, 2015, 4:47 PM Reply Quote 0
    • T
      Tom Elliott @ArchFan
      last edited by Jun 24, 2015, 4:47 PM

      @ArchFan I don’t think so. Not on the server. The client/host during imaging or in the init process itself, yes, the server no.

      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

      A 1 Reply Last reply Jun 24, 2015, 4:50 PM Reply Quote 0
      • A
        ArchFan @Tom Elliott
        last edited by Jun 24, 2015, 4:50 PM

        @Tom-Elliott said:

        @ArchFan I don’t think so. Not on the server. The client/host during imaging or in the init process itself, yes, the server no.

        Gotcha - I’ve had some other issues getting it to work as intended, so it probably wasn’t an issue after all. Thanks Tom

        1 Reply Last reply Reply Quote 0
        • M
          MRCUR Testers @giejo63
          last edited by Jun 24, 2015, 6:20 PM

          @giejo63 I’m running into the same issues. I have a sysprepped Win 7 image that has the C:\drivers location set to look for drivers. I have the drivers on the FOG server in /images/drivers and the scripts are executable. The postdownload file is set to run the script, and I have SetupComplete.cmd on the image set as described in Andrew’s wiki page.

          Anyone have some ideas?

          G 1 Reply Last reply Jul 10, 2015, 10:47 AM Reply Quote 1
          • A
            ArchFan
            last edited by ArchFan Jun 26, 2015, 10:46 AM Jun 26, 2015, 4:16 PM

            Feeling pretty discouraged at the moment 😞

            My postdownloadscript works perfectly unless I use variables, at which point it no longer works. You can see a few of the things I’ve attempted and commented out. Even using ${postdownloadpath} doesn’t seem to work - I can only call my postdownload script if I specify the absolute path. My cabs are in /images/drivers/Win7/. So for the Optiplex 9020M, the location is /images/drivers/Win7/Optiplex 9020M/*.CAB - I’ve also tried Optiplex9020M - still doesn’t work. I’m on Rev 3606, Debian 7

            The only things in /images/postdownloadscripts are fog.postdownload and driverinstall.sh. Permissions on both are 777

            Contents of fog.postdownload:

            #!/bin/sh
            ## This file serves as a starting point to call your custom postimaging scripts.
            ## <SCRIPTNAME> should be changed to the script you're planning to use.
            ## Syntax of post download scripts are
            #. ${postdownpath}<SCRIPTNAME>
            #. ${postdownloadpath}driverinstall.sh
            . /images/postdownloadscripts/driverinstall.sh
            
            

            Contents of driverinstall.sh:

            #!/bin/sh
            
            #This script was adapted from Lee Rowlett's fog.drivers postdownload script (https://forums.fogproject.org/topic/4278/utilizing-postscripts-rename-joindomain-drivers-$
            #This script assumes your image has been modified to look in C:\Windows\Drivers in addition to the default location for Windows drivers (http://technet.microsoft.com/$
            #Make sure this script is called from your fog.postdownload file by adding ${postdownloadpath}/driverinstall.sh to the /images/postdownloadscripts/fog.postdownload fi$
            mkdir /ntfs &>/dev/null; #Create new directory called ntfs and supress any system or error messages
            mount.ntfs-3g /dev/sda2 /ntfs; #Mount the NTFS Windows OS partition to the new ntfs directory
            machine=`dmidecode -s system-product-name`; #Get the model name of the computer being imaged
            #machine=$(dmidecode -s system-product-name)
            #machine=$(echo $machine | tr -d ' ') #Remove the trailing spaces from the model info
            #Get the OS version info and set it equal to the osn variable for later use
            #if [ $osid == "5" ]; then
            osn="Win7"
            #elif [ $osid == "6" ]; then
            #osn="Win8"
            #elif [ $osid == "7" ]; then
            #osn="Win8.1"
            #fi
            #osn="Win7"
            mkdir /ntfs/Windows/Drivers &>/dev/null; #Create the C:\Windows\Drivers directory and supress any system or error messages
            echo -e "Extracting Drivers..."; #Tell the user that FOG is extracting the drivers within C:\Windows\Drivers
            #cabextract -d /ntfs/Windows/Drivers "/images/drivers/$osn/Optiplex9020M/9020M-Win7-A04-JG7GH.CAB" &>/dev/null;
            cabextract -d /ntfs/Windows/Drivers "/images/drivers/$osn/$machine"/*.CAB &>/dev/null
            echo -e "DONE!"; #Tell the user that FOG has finished copying the drivers and finish the imaging process
            
            
            1 Reply Last reply Reply Quote 0
            • G
              giejo63 @MRCUR
              last edited by Jul 10, 2015, 10:47 AM

              @MRCUR Still no luck for me
              image is correctly deployed but fog.postdownload doesn’t seem to run…
              i don’t know why …

              1 Reply Last reply Reply Quote 0
              • G
                giejo63
                last edited by Jul 10, 2015, 11:54 AM

                Debugging 🙂 i found 2 problems:

                • ${postdownloadpath} variable is not recognized

                • when i put the full path /images/postdownloadscripts/driverinstall.sh, i have an error which says that /bin/bash^M: bad interpreter. -> i dont have any ^M at the end of the line.

                Any ideas for the variable and bad interpreter ??
                Thanks in advance

                C 1 Reply Last reply Jul 10, 2015, 12:02 PM Reply Quote 0
                • C
                  cml Moderator @giejo63
                  last edited by Jul 10, 2015, 12:02 PM

                  @giejo63

                  Did you by chance transfer the file from a windows machine? If so you may need to convert line endings.

                  dos2unix /images/postdownloadscripts/driverinstall.sh

                  G 1 Reply Last reply Jul 10, 2015, 12:14 PM Reply Quote 0
                  • G
                    giejo63 @cml
                    last edited by Jul 10, 2015, 12:14 PM

                    @cml i will try that. Maybe it comes from a windows machine.
                    Do you konw why i can’t use the ${postdownloadpath} variable ? (my fog server is a ubuntu 14.04)

                    T 1 Reply Last reply Jul 10, 2015, 12:30 PM Reply Quote 0
                    • T
                      Tom Elliott @giejo63
                      last edited by Jul 10, 2015, 12:30 PM

                      @giejo63 where are you check the variable? Is it on the server or the system downloading the image?

                      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

                      G 1 Reply Last reply Jul 10, 2015, 12:32 PM Reply Quote 0
                      • G
                        giejo63 @Tom Elliott
                        last edited by Jul 10, 2015, 12:32 PM

                        @Tom-Elliott it is the postdownloadscript location variable in fog.postdownload

                        1 Reply Last reply Reply Quote 0
                        • T
                          Tom Elliott
                          last edited by Jul 10, 2015, 12:43 PM

                          I mean where are you checking the variable being set?

                          Are you checking directly on the fog server with echo $postdownloadscript or are you checking on the system receiving the image?

                          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

                          G 1 Reply Last reply Jul 10, 2015, 12:51 PM Reply Quote 0
                          • G
                            giejo63 @Tom Elliott
                            last edited by Jul 10, 2015, 12:51 PM

                            @Tom-Elliott as it is in the fog.postdownload script, i think it is the system receiving the image

                            1 Reply Last reply Reply Quote 0
                            • 1
                            • 2
                            • 2 / 2
                            • First post
                              Last post

                            244

                            Online

                            12.0k

                            Users

                            17.3k

                            Topics

                            155.2k

                            Posts
                            Copyright © 2012-2024 FOG Project