Unpacking large .ZIP archives
Using Bamboo
- Configuring plans
- Linking to source code repositories
- Triggering builds
- Using stages in a plan
- Jobs and tasks
- Sharing artifacts
- Working with builds
- Deployment projects
- Getting feedback
- Integrating Bamboo with other applications
- Managing your user profile
- Bamboo variables
- Bamboo permissions
- Quick filters for Bamboo
- Unpacking large .ZIP archives
- Personal access tokens
On this page
Related content
- Javascript Error when accessing Issues link in Project Navigation after Upgrade
- JVM Segfault (SIGSEGV) After Plugin Initialisation
- SIGSEGV Segmentation Fault JVM Crash
- Uncaught QuotaExceededError displays in browser using Jira server
- Character Encoding Issues when using JASIG CAS Authenticator
- JIRA Agile error during page load - curl already exists
- How to fetch the Team name from the comments by using Regex
- JIRA Agile is currently unavailable error when Restoring the JIRA Cloud backup to JIRA 6.4.5 with JIRA Agile 6.7.4
- Error "Field with id' xxx' and name 'Team' does not support operation 'add' Supported operation(s) are: 'set'" on Jira Align Connector
- Configure the look and feel of Jira applications
We noticed that the TrueZIP archiver used by Bamboo might be incompatible with some binaries for archives exceeding 4 GB. In order to extract files from a large archive, use the following script:
TrueZIP extractor
#! /bin/sh
TRUEZIP_JAR=truezip-samples-7.7.9-jar-with-dependencies.jar
if [ ! $# -eq 1 ]; then
echo "Usage:"
echo " $0 [bambooCloudExportFile]"
exit 1
fi
BAMBOO_EXPORT_FILE=$1
if [ ! -f $BAMBOO_EXPORT_FILE ]; then
echo Can not access $BAMBOO_EXPORT_FILE
exit 1
fi
if [ ! -f $TRUEZIP_JAR ]; then
echo Downloading TrueZip JAR ...
curl -s https://repo1.maven.org/maven2/de/schlichtherle/truezip/truezip-samples/7.7.9/$TRUEZIP_JAR -o $TRUEZIP_JAR
fi
if [ -d bamboo-home ]; then
echo Directory bamboo-home exists, please remove it before proceeding
exit 1
fi
if [ -d database ]; then
echo Directory database exists, please remove it before proceeding
exit 1
fi
echo Unzipping Bamboo HOME directory ...
java -jar $TRUEZIP_JAR cp $BAMBOO_EXPORT_FILE/bamboo-home bamboo-home
echo Unzipping Bamboo database ...
java -jar $TRUEZIP_JAR cp $BAMBOO_EXPORT_FILE/database database
Last modified on May 24, 2016
Related content
- Javascript Error when accessing Issues link in Project Navigation after Upgrade
- JVM Segfault (SIGSEGV) After Plugin Initialisation
- SIGSEGV Segmentation Fault JVM Crash
- Uncaught QuotaExceededError displays in browser using Jira server
- Character Encoding Issues when using JASIG CAS Authenticator
- JIRA Agile error during page load - curl already exists
- How to fetch the Team name from the comments by using Regex
- JIRA Agile is currently unavailable error when Restoring the JIRA Cloud backup to JIRA 6.4.5 with JIRA Agile 6.7.4
- Error "Field with id' xxx' and name 'Team' does not support operation 'add' Supported operation(s) are: 'set'" on Jira Align Connector
- Configure the look and feel of Jira applications
Powered by Confluence and Scroll Viewport.