Converting the ISO file to USB Key
The FreePBX Distro SNG7 .iso can be copied to a USB Key for easy install. You can download the xxx.iso image to your local computer from http://www.freepbx.org/downloads. Â Once downloaded, you will need to use the dd command (disk cloning) to transfer the file onto your USB drive. Â Follow the steps below for Windows or Mac/Linux.
Â
Â
Â
Windows
Windows users will need to download a utility that can create a USB-bootable image from the .iso file. The recommended tool is
After you have downloaded and installed Win32DiskImager, use the browse button to navigate to the location of the .iso file. Insert a USB thumb drive and select its drive letter (in this example, drive E). Click the Write button. The image will be written to the USB thumb drive.
Â
Â
Once completed, you should see a message like this:
Â
NOTE: If the burned image fails to boot, wipe the USB stick before trying a second burn using a utility such as Active@ KillDisk. Otherwise, the second burn attempt will fail since Windows does not understand the GPT partition that was written from the image file. Be very careful that you specify the USB stick when using a wipe utility!
Mac or Linux
First you need to find the USB drive on your local Mac computer with the following command:
Disk
diskutil list |
Â
It should return something like what is shown below. In our example we can see the USB device is mounted as a DOS_FAT_32 under /dev/disk1
Return
MacBook-Pro:~ tony$ diskutil list
/dev/disk0
   #:                      TYPE NAME                   SIZE      IDENTIFIER
   0:     GUID_partition_scheme                       *750.2 GB  disk0
   1:                       EFI                        209.7 MB  disk0s1
   2:                 Apple_HFS Macintosh HD           749.3 GB  disk0s2
   3:                Apple_Boot Recovery HD            650.0 MB  disk0s3
/dev/disk1
   #:                      TYPE NAME                   SIZE      IDENTIFIER
   0:    FDisk_partition_scheme                       *4.1 GB    disk1
   1:                DOS_FAT_32 NO NAME                4.1 GB    disk1s1 |
Â
Now, unmount the disk using the command below. Remember to replace the disk number with the id of your USB stick.
unmount
diskutil unmountDisk /dev/disk1 |
Â
You should see something like this:
unmount
Â
Use the dd command to write. Again, be sure to replace the disk number with the id of your USB stick. Replace if=Desktop/SNG7-FPBX-64bit-1706-1.iso with the path to your ISO image. This step may take 10-15 minutes to complete.
DD
Â
When complete, you should see a confirmation like the one below:Â
DD
Â
In the terminal window performing the dd on Mac or Linux you can type "ctrl-t" (or ^t) to see how far the dd command is though the copy.
Â
Now you can go boot your PBX from the USB image and go through the normal ISO installer process, skipping steps 1-3 and starting with step 4 where it asks you which version of Asterisk you would like to install.