From 05fd2f52e5fa3535c605c3291c11b74e1461abc3 Mon Sep 17 00:00:00 2001 From: d33bs Date: Fri, 13 Feb 2026 10:44:58 -0700 Subject: [PATCH] various docs updates --- README.md | 14 ++++++++++---- src/mount_isilon.sh | 4 ++-- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2bc1a5b..81fb886 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/src/mount_isilon.sh b/src/mount_isilon.sh index b4d1c7e..2a7c123 100644 --- a/src/mount_isilon.sh +++ b/src/mount_isilon.sh @@ -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/ into ~/mnt/. @@ -23,7 +23,7 @@ echo " 4) Mount //data.ucdenver.pvt/dept/SOM/DBMI/ to ~/mnt/" 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 &2