Changes

From Genome Analysis Wiki
Jump to navigationJump to search
Line 45: Line 45:  
Installing Debian packages generally requires root access, however, you <b>can install as a non-root user</b> using the following instructions (bash commands shown here):
 
Installing Debian packages generally requires root access, however, you <b>can install as a non-root user</b> using the following instructions (bash commands shown here):
 
<code>
 
<code>
tempdir=/tmp/$$.gotcloud.removeme    # Temp directory
+
tempdir=/tmp/$$.gotcloud.removeme    # Temp directory
destdir=$HOME                        # Where you want GotCloud installed
+
destdir=$HOME                        # Where you want GotCloud installed
 
+
pkg=[path_to_deb_file]/gotcloud-bin_*_amd64.deb
+
pkg=[path_to_deb_file]/gotcloud-bin_*_amd64.deb
dpkg -x $pkg $tempdir
+
dpkg -x $pkg $tempdir
rsync -av --delete $tempdir/usr/local/gotcloud/* $destdir/gotcloud || exit 1
+
rsync -av --delete $tempdir/usr/local/gotcloud/* $destdir/gotcloud || exit 1
rm -rf $tempdir
+
rm -rf $tempdir
 
+
pkg=[path_to_deb_file]/gotcloud-test_*_amd64.deb
+
pkg=[path_to_deb_file]/gotcloud-test_*_amd64.deb
dpkg -x $pkg $tempdir
+
dpkg -x $pkg $tempdir
rsync -av --delete $tempdir/usr/local/gotcloud/* $destdir/gotcloud || exit 1
+
rsync -av --delete $tempdir/usr/local/gotcloud/* $destdir/gotcloud || exit 1
rm -rf $tempdir
+
rm -rf $tempdir
 
+
$destdir/gotcloud/scripts/check_requirements.sh  # Check requirements
+
$destdir/gotcloud/scripts/check_requirements.sh  # Check requirements
 
</code>
 
</code>
   Line 119: Line 119:  
   <b>sudo apt-get install java-common default-jre make libssl0.9.8</b>
 
   <b>sudo apt-get install java-common default-jre make libssl0.9.8</b>
 
</code>
 
</code>
      
===Testing the GotCloud Installation===
 
===Testing the GotCloud Installation===
283

edits

Navigation menu