| 13 | * '''Resolution (no internet access)''': To remedy this, WebPositive's libraries will be manually copied to the partition you are installing to and then the files will be "deleted" on the CD. To note, file modification on the LiveCD will not persist across reboots. |
| 14 | * Click [ Desktop (Live-CD) ] |
| 15 | * Click Deskbar --> select Applications --> click DriveSetup |
| 16 | * Prepare and mount the partition you wish to install to. |
| 17 | * Close DriveSetup |
| 18 | * On the Desktop, right click the destination partition and in that popup menu: |
| 19 | * select Add-ons --> Open Terminal |
| 20 | * run the following commands & ignore the comments (lines starting with ''#''). |
| 21 | {{{ |
| 22 | # Set up a variable to reduce typing. |
| 23 | export dir=apps/WebPositive/lib |
| 24 | |
| 25 | # Create the directory on the partition being installed to. |
| 26 | mkdir -p $dir |
| 27 | |
| 28 | # Copy the files from the LiveCD to the partition. |
| 29 | cp /boot/$dir/* $dir/ |
| 30 | |
| 31 | # Temporarily delete the files on the LiveCD. |
| 32 | rm -rf /boot/$dir/*.so |
| 33 | |
| 34 | # Launch Installer |
| 35 | Installer |
| 36 | |
| 37 | }}} |
| 38 | * Installer will prompt you "The target volume is not empty ....", click [ Install anyway ]. |