Skip to content

Commit 183734e

Browse files
author
purduercac-docs-bot
committed
Merge remote-tracking branch 'origin/main' into dev
2 parents 6349a8a + 88cbf16 commit 183734e

43 files changed

Lines changed: 1780 additions & 6 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
23.8 KB
Loading
153 KB
Loading
43.2 KB
Loading
109 KB
Binary file not shown.
499 KB
Binary file not shown.

docs/snippets/compress.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Archive and Compression
2+
3+
There are several options for archiving and compressing groups of files or directories. The most commonly used options are:
4+
5+
## tar
6+
7+
See the [official documentation for tar](http://www.gnu.org/software/tar/tar.html) for more information.
8+
9+
Saves many files together into a single archive file, and restores individual files from the archive. Includes automatic archive compression/decompression options and special features for incremental and full backups.
10+
11+
Examples:
12+
13+
```
14+
(list contents of archive somefile.tar)
15+
$ tar tvf somefile.tar
16+
17+
(extract contents of somefile.tar)
18+
$ tar xvf somefile.tar
19+
20+
(extract contents of gzipped archive somefile.tar.gz)
21+
$ tar xzvf somefile.tar.gz
22+
23+
(extract contents of bzip2 archive somefile.tar.bz2)
24+
$ tar xjvf somefile.tar.bz2
25+
26+
(archive all ".c" files in current directory into one archive file)
27+
$ tar cvf somefile.tar *.c
28+
29+
(archive and gzip-compress all files in a directory into one archive file)
30+
$ tar czvf somefile.tar.gz somedirectory/
31+
32+
(archive and bzip2-compress all files in a directory into one archive file)
33+
$ tar cjvf somefile.tar.bz2 somedirectory/
34+
```
35+
36+
Other arguments for `tar` can be explored by using the `man tar` command.
37+
38+
## gzip
39+
40+
See the [official documentation for gzip](http://www.gnu.org/software/gzip/gzip.html) for more information.
41+
42+
The standard compression system for all GNU software.
43+
44+
Examples:
45+
46+
```
47+
(compress file somefile - also removes uncompressed file)
48+
$ gzip somefile
49+
50+
(uncompress file somefile.gz - also removes compressed file)
51+
$ gunzip somefile.gz
52+
```
53+
54+
## bzip2
55+
56+
See the [official documentation for bzip](http://www.bzip.org/) for more information.
57+
58+
Strong, lossless data compressor based on the Burrows-Wheeler transform. Stronger compression than gzip.
59+
60+
Examples:
61+
62+
```
63+
(compress file somefile - also removes uncompressed file)
64+
$ bzip2 somefile
65+
66+
(uncompress file somefile.bz2 - also removes compressed file)
67+
$ bunzip2 somefile.bz2
68+
```
69+
70+
There are several other, less commonly used, options available as well:
71+
72+
- zip
73+
- 7zip
74+
- xz

docs/snippets/sharing_globus.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Data on any RCAC resource can be shared with other users within Purdue or with collaborators at other institutions. Globus allows convenient sharing of data with outside collaborators. Data can be shared with collaborators' personal computers or directly with many other computing resources at other institutions.
2+
3+
To share files, login to [https://transfer.rcac.purdue.edu](https://transfer.rcac.purdue.edu/), navigate to the endpoint (collection) of your choice, and follow instructions as described in Globus documentation on how to share data:
4+
5+
- <https://docs.globus.org/how-to/share-files/>
6+
7+
See also [RCAC Globus presentation](https://www.rcac.purdue.edu/training/globus).
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
tags:
3+
- Box Research Lab Folder
4+
authors:
5+
- jin456
6+
search:
7+
boost: 2
8+
draft: false
9+
---
10+
11+
# Accounts on Box Research Lab Folders
12+
13+
## Access to Box Research Lab Folder
14+
15+
### Obtaining an Account
16+
17+
All Purdue faculty, staff, and students have a Box.com account for personal files.
18+
19+
Research projects requiring regulated storage are assigned group data storage space within Box Research Lab Folder. Project PIs may authorize additional users to collaborate within the folder.
20+
21+
Box research lab Folders **are not** intended to store data protected by Federal privacy and security laws. REED Folders are designed to align with the NIST SP 800-171 standard, and are approved for storing L3 projects requiring HIPAA-aligned storage. Compliance with additional regulations such as CUI, ITAR, EAR, or FERPA are under review.
22+
23+
Neither Purdue or Box set any limits on the total amount or number of files that you may store within your Box Research Lab Folder. However, there are several restrictions on the nature of files you may store:
24+
25+
- Any one individual file may be no larger than 15 GB.
26+
27+
### Outside Collaborators
28+
29+
Within the bounds of your data use agreements, IRB protocols, or technology control plans, Box Research Lab Folders data may be shared with Purdue or non-Purdue collaborators.
30+
31+
### Login to Box to Access your Research Lab Folder
32+
33+
Access to your Box Research Lab Folder is done using your Purdue Career Account by visiting [purdue.box.com](https://purdue.box.com).
34+
35+
### Transferring Files into Box
36+
37+
Files may be up/downloaded from Box via [FTPS](https://support.box.com/hc/en-us/articles/360043697414-Using-Box-with-FTP-or-FTPS).

docs/userguides/boxfolder/faqs.md

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
---
2+
tags:
3+
- Box Research Lab Folder
4+
authors:
5+
- jin456
6+
search:
7+
boost: 2
8+
draft: false
9+
---
10+
11+
# Frequently Asked Questions
12+
13+
Frequently asked questions about Box Research Lab Folder.
14+
15+
## About Box Research Lab Folder
16+
17+
### What is a Box Managed Account and REED Folder?
18+
19+
A Box Managed account is your Purdue managed Box account. A REED folder is a project folder created in secure folder structured within Box.
20+
21+
### Does Purdue have a Business Associate Agreement with Box?
22+
23+
Box supports the HIPAA and HITECH regulations, as well as the ability to sign HIPAA Business Associate Agreements (BAAs) with customers. Customers who are required by law to comply with HIPAA, such as HIPAA Covered Entities and HIPAA Business Associates, must have an Enterprise or Elite account with Box and sign a HIPAA Business Associate Agreement (BAA).
24+
25+
- Purdue University signed a Business Associate Agreement with Box, and Box accounts are Enterprise.
26+
- Box provides the ability to use O365 online office application to open and work with content. Purdue University has signed a Business Associate Agreement with Microsoft.
27+
- All other third-party service providers with our instance of Box Enterprise are not covered by a Business Associate Agreement (BAA).
28+
29+
Do not use third-party applications to process data considered Restricted via your Purdue managed Box account. Purdue University does not maintain a contractual agreement with the vendor, and the required security controls are not in place.
30+
31+
## Data
32+
33+
### Can I integrate 3rd-Party Apps with my Box folder?
34+
35+
While official Box add-on applications are approved for use with Purdue Box.com folders, third-party apps have not been reviewed for impact to security and are not approved for use until a security review has been completed by IT Security and Policy. If the official Box apps cannot provide the functionality you need, you may request a security review of the third-party app you are considering by submitting an email including the app name and the functionality you are addressing with the app to itpolicyreq@purdue.edu.
36+
37+
### Can I use Unmanaged Box accounts, and other Cloud Storage Options?
38+
39+
Unmanaged (free and commercial) Box accounts and all other Cloud Storage options are not approved for storing or sharing sensitive or restricted data. Purdue University does not maintain a contractual agreement with the vendor, and the required security controls are not in place. Personal use of cloud storage can continue, however sensitive and restricted data must not be stored in the account. The table below will help you determine where to store your data.
40+
41+
| Classification | Personal Box Folder | REED Folder |
42+
| --- | --- | --- |
43+
| Individually Identifiable Health Information | No | Determined by Review |
44+
| Limited Data Set | No | Yes |
45+
| De-Identified Data | No | Yes |
46+
| De-Identified Data with Contractual Requirements | No | Yes |
47+
48+
### Should I use Box Drive if I work with Restricted Data?
49+
50+
Currently, Box Drive is not recommended for use to work with restricted data. However, if you have a business need for Box Drive, contact IT Security and Policy so we can help you understand the risk and ensure you have the appropriate controls in place to protect the data.
51+
52+
### Will Box Drive or Box Edit cache files on the local machine?
53+
54+
Box Drive does locally cache files that you have opened. Box Drive's cache size limit is based on your free disk space (50% of available space) and has a maximum limit of 25 GB. If you reach this limit, Box Drive begins removing files, starting with those files that have gone the longest without your accessing them. Also, if a cached file has a new version created on Box, Box Drive discards the locally cached version. Do not open data in Box Drive containing restricted data. More details: [Technical Information for Box Drive Administrators](https://community.box.com/t5/Deploying-Managing-Box-Drive/Technical-Information-for-Box-Drive-Administrators/ta-p/37454)
55+
56+
Box Edit does download the file to a cache when you are modifying a file. The cache can be cleared. See: [Clear Your Box Edit Cache](https://support.box.com/hc/en-us/articles/360043695814-Clear-Your-Box-Edit-Cache)
57+
58+
### Can I use FTP to access Box?
59+
60+
No, FTP is disabled.
61+
62+
### Can I delete my files permanently from Box?
63+
64+
Individuals can delete a file or folder, and the item will be placed in the Trash. Individuals will not be able to permanently delete the items. An automated process is in place to remove data older than 90 days. Once the item is purged, it can't be recovered using the built in Box tools.
65+
66+
### What are the recommended permission levels?
67+
68+
| Role | Permission Level |
69+
| --- | --- |
70+
| Project Team member who needs full control | Editor |
71+
| Project Team members who just needs to work within Box | Viewer Uploader |
72+
| Project Team member who needs Read/Download access | Viewer |
73+
| Partner who needs Read access | Previewer |
74+
| Partner who need to upload data | Uploader |
75+
76+
### How do I host sensitive or restricted data in Box?
77+
78+
Storage of restricted data in Box is subject to review from Purdue's IT Security and Policy group (ITSP). Access may also require approval from campus offices and committees responsible for contractual compliance and research regulatory affairs.
79+
80+
Purdue's managed Box environment can be used to store, de-identified data and limited data sets in scope of HIPAA for research. Fully identified data is subject to a security review and approval process.
81+
82+
All restricted data must be stored in a REED Folder. Do not use Box for an actual medical practice.
83+
84+
See the data map below for more details:
85+
86+
![HIPAA data map](/assets/images/userguides/storage/hipaa-dm.png)

docs/userguides/boxfolder/index.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
tags:
3+
- Box Research Lab Folder
4+
authors:
5+
- jin456
6+
search:
7+
boost: 2
8+
---
9+
10+
# Box Research Lab Folder User Guide
11+
12+
A Box Research Lab Folder is a managed storage solution built on top of the Box.com cloud platform, for research labs to share and collaborate within the lab and with outside collaborators.
13+
14+
- [**Box Research Lab Folder Overview**](overview.md)
15+
- [**Accounts**](accounts.md)
16+
- [**Frequently Asked Questions**](faqs.md)

0 commit comments

Comments
 (0)