Changes

From Genome Analysis Wiki
Jump to navigationJump to search
Line 26: Line 26:     
==GotCloud Debian Packages==
 
==GotCloud Debian Packages==
  −
Installing Debian packages requires root access.
      
If you would like to install from:
 
If you would like to install from:
Line 44: Line 42:  
</code>
 
</code>
 
Where 'M.n' is replaced with the specific version numbers.
 
Where 'M.n' is replaced with the specific version numbers.
 +
 +
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>
 +
tempdir=/tmp/$$.gotcloud.removeme    # Temp directory
 +
destdir=$HOME                        # Where you want GotCloud installed
 +
 +
pkg=[path_to_deb_file]/gotcloud-bin_*_amd64.deb
 +
dpkg -x $pkg $tempdir
 +
rsync -av --delete $tempdir/usr/local/gotcloud/* $destdir/gotcloud || exit 1
 +
rm -rf $tempdir
 +
 +
pkg=[path_to_deb_file]/gotcloud-test_*_amd64.deb
 +
dpkg -x $pkg $tempdir
 +
rsync -av --delete $tempdir/usr/local/gotcloud/* $destdir/gotcloud || exit 1
 +
rm -rf $tempdir
 +
 +
$destdir/gotcloud/scripts/check_requirements.sh  # Check requirements
 +
</code>
    
See [[GotCloud: Versions]] for details on the changes for each version.
 
See [[GotCloud: Versions]] for details on the changes for each version.
Line 163: Line 179:  
   '''rm -rf ~/testsnp'''              # If no error
 
   '''rm -rf ~/testsnp'''              # If no error
 
</code>
 
</code>
      
== Tar Binary Releases ==
 
== Tar Binary Releases ==
283

edits

Navigation menu