Configure Samba Share
Install SAMBA:
># apt-get update
># apt-get install samba
           
Create shared folder:
># mkdir -p /opt/samba/share
># chown nobody:nogroup /opt/samba/share
            
Edit /etc/samba/smb.conf:
...
[global]    
    ...    
    security = user
...
[share]
    comment = Deployment Share
    path = /opt/samba/share  
    browsable = yes
    guest ok = yes    
    guest account = nobody
    read only = no
    create mask = 0755
[image-builder-share]
    comment = Image Builder Share
    path = /opt/image-builder/share
    browsable = yes
    guest ok = yes    
    guest account = nobody
    read only = no
    create mask = 0755
            
Restart services:
># restart smbd
># restart nmdb
            
Copy Prerequisites Into The Share
Create folder structure:
># mkdir -p “/opt/samba/share/Prerequisites/IIS”
># mkdir -p “/opt/samba/share/Prerequisites/SQL Server/2012”
># mkdir -p “/opt/samba/share/Prerequisites/SQL Server/Tools”
            Download and put the following files into the specified paths under
/opt/samba/sharefolder:ASP .NET MVC 4 setup package:
Prerequisites/AspNetMVC4Setup.exeAdditional files to build ASP application : should be placed to
Prerequisites/WebApplications.exeMS SQL Server 2012: Extract the content of the ISO/EXE file to the
Prerequisites/SQL Server/2012/. After thatsetup.exeshould be located inside this directory.Microsoft® Windows PowerShell Extensions for Microsoft® SQL Server®2012:
Prerequisites/SQL Server/Tools/PowerShellTools.msiMicrosoft® SQL Server® 2012 Shared Management Objects:
Prerequisites/SQL Server/Tools/SharedManagementObjects.msiMicrosoft® System CLR Types for Microsoft® SQL Server® 2012 :
Prerequisites/SQL Server/Tools/SQLSysClrTypes.msi


