Skip to content

Instantly share code, notes, and snippets.

@max-mapper
Created February 4, 2017 06:09
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save max-mapper/55ced68be8fdfa0895956d575fea0c0e to your computer and use it in GitHub Desktop.
Save max-mapper/55ced68be8fdfa0895956d575fea0c0e to your computer and use it in GitHub Desktop.
my book duo (16tb) linux format
  1. install WD Drive Utilities on Mac OS
  2. convert to JBOD/EXFAT and turn off Drive Sleep
  3. plug into linux
sudo parted /dev/sd<num>
print
rm 1 (and others)
mklabel gpt
unit TB
mkpart primary 0.00TB 8.00TB
print
quit

then sudo mkfs.ext4 /dev/sd<num> and use the UUID to generate fstab entries:

UUID=<UUIDHERE> /media/hd1 ext4 defaults 0 0

then sudo mount -a to reload fstab and mount (mkdir your mountpoints first)

@beaulieumichel
Copy link

I followed the instructions for a MyBookDuo 20TB configured for RAID1 Mirror. And created a xfs filesystem.
Thanks for the guidance.

@yohhaan
Copy link

yohhaan commented Apr 12, 2021

To use both disks as 1 volume (with LUKS encryption): https://gist.github.com/yohhaan/3127792dc1570e4c4636b2fb142f0462

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment