Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# CU DBMI storage utilities

These scripts are here to help you get started with storage quickly, but please review and use them with care since environments can vary!
These scripts are here to help you get started with data storage quickly.

## Run `mount_isilon.sh` from GitHub
Please use your best judgment when using these scripts, and treat them as use-at-your-own-risk since environments can vary.

This script is used for interfacing with Isilon storage at CU Anschutz.
It requires you already have a share on Isilon and that your user has access to the share (please verify both before using).
## Connecting to Isilon Storage

These guides assume you already have an Isilon share and that your account has access (please verify or request both before using).

For additional setup and connection guidance on Windows or macOS, see the SOM knowledge base docs:
https://medschool.zendesk.com/hc/en-us/sections/360005463054-Map-to-SOM-Network-Drive

You can also use this script to connect to Isilon storage at CU Anschutz from the command line on macOS or Linux.

You can run the script directly from a GitHub raw URL:

Expand Down
4 changes: 2 additions & 2 deletions src/mount_isilon.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env sh
# shellcheck shell=sh
# ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
# mount_bandicoot.sh
# mount_isilon.sh
#
# This script creates a local mount point and mounts a CIFS/Samba share
# at //data.ucdenver.pvt/dept/SOM/DBMI/<mount_name> into ~/mnt/<mount_name>.
Expand All @@ -23,7 +23,7 @@ echo " 4) Mount //data.ucdenver.pvt/dept/SOM/DBMI/<name> to ~/mnt/<name>"
echo ""

# Prompt for mount/share name used for both remote and local paths.
printf "Mount/share name (e.g., LabName, etc.): " >/dev/tty
printf "Mount/share name (for example: LabName): " >/dev/tty
read -r MOUNT_NAME </dev/tty || MOUNT_NAME=""
if [ -z "$MOUNT_NAME" ]; then
echo "✗ Mount/share name cannot be empty." >&2
Expand Down