Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Tools to compress data on most unix systems (including Fourierseq):

  1. Gzip:
    Code Block
    gzip <inputfile>
    - creates
    Code Block
    <inputfile.gz>
    - common for unix systems, but probably wont' port between unix and mac/windows
  2. Zip:
    Code Block
    zip <zipfilename> <inputfilename>
    - should be mac/pc compatible, but I'd test it first to make sure...
  3. Bzip:
    Code Block
    bzip2 <inputfile>
    - creates
    Code Block
    <inputfile.bz2>

Also, when you send files remotely, you should check their integrity by running the program "md5sum" on the file on Fourierseq, and then again on the file on the remote system. They should give you the same code, indicating the file's contents are exactly intact.