diff --git a/CHANGES.txt b/CHANGES.txt index de9fcab..761b2ae 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,9 @@ +v1.1.4 +- Now only creates the RAID array and storage pool. Volume creation can now be done in DSM. +- Because you now create the volume in DSM you can set the volume size. +- Changed to create pool volume and volume group like Synology does. +- Added instructions to create the volume in DSM. + v1.0.3 Changed 'latest version check' to download to /tmp and extract files to the script's location. diff --git a/README.md b/README.md index eb71df6..9f4548c 100644 --- a/README.md +++ b/README.md @@ -5,23 +5,38 @@ ### Description -Easily create an M.2 volume on Synology NAS without a lot of typing and no need for any how-to guides. +Easily create an M.2 volume on Synology NAS without a lot of typing and no need for any how-to guides. -This script will create a volume on your NVMe drive(s) for you. All you have to do is run the script and type yes and 1, 2, 3 or 4 to answer some simple questions. +This script will create the RAID and storage pool on your NVMe drive(s) for you so you can then create the volume in the DSM GUI. + +All you have to do is run the script and type yes and 1, 2, 3 or 4 to answer some simple questions. Then reboot, go to Storage Manager, Online Assemable and Create Volume. + +```YAML +sudo /volume1/scripts/create_m2_volume.sh +``` + +**Note:** Replace /volume1/scripts/ with the path to where the script is located. It also has a dry run mode so you can see what it would have done had you run it for real. -
+ ### What to do after running the script 1. Restart the Synology NAS. -2. Go to Storage Manager and select online assemble: +2. Go to Storage Manager and select Online Assemble: - Storage Pool > Available Pool > Online Assemble -3. Optionally enable TRIM: +3. Create the volume: + - Select the new Storage Pool > Create > Create Volume +4. Set the allocated size to max, or 7% less for overprovisioning. +5. Optionally enter a volume description. Be creative :) + - Click Next +6. Select the file system: Btrfs or ext4. + - Click Next and you've finished creating your volume. +7. Optionally enable and schedule TRIM: - Storage Pool > ... > Settings > SSD TRIM -Available Storage Pool
+Storage Pool available for online assembly
Online Assemble step 1
@@ -30,8 +45,20 @@ It also has a dry run mode so you can see what it would have done had you run itOnline Assemble step 2
+Create volume
+ + +Allocate volume capacity
+ + +Volume description
+ + +Select file system
+ +Success!
- +Enable TRIM
diff --git a/images/create-volume0.png b/images/create-volume0.png new file mode 100644 index 0000000..8fed601 Binary files /dev/null and b/images/create-volume0.png differ diff --git a/images/create-volume1.png b/images/create-volume1.png new file mode 100644 index 0000000..b17a4a4 Binary files /dev/null and b/images/create-volume1.png differ diff --git a/images/create-volume2.png b/images/create-volume2.png new file mode 100644 index 0000000..9478d44 Binary files /dev/null and b/images/create-volume2.png differ diff --git a/images/create-volume3.png b/images/create-volume3.png new file mode 100644 index 0000000..e91b301 Binary files /dev/null and b/images/create-volume3.png differ diff --git a/images/create-volume4.png b/images/create-volume4.png new file mode 100644 index 0000000..cd33958 Binary files /dev/null and b/images/create-volume4.png differ diff --git a/images/create-volume5.png b/images/create-volume5.png new file mode 100644 index 0000000..ae24279 Binary files /dev/null and b/images/create-volume5.png differ diff --git a/syno_create_m2_volume.sh b/syno_create_m2_volume.sh index 19a86c4..25e270a 100644 --- a/syno_create_m2_volume.sh +++ b/syno_create_m2_volume.sh @@ -12,25 +12,32 @@ # Resources: # https://academy.pointtosource.com/synology/synology-ds920-nvme-m2-ssd-volume/amp/ # https://www.reddit.com/r/synology/comments/pwrch3/how_to_create_a_usable_poolvolume_to_use_as/ +# +# Over-Provisioning unnecessary on modern SSDs (since ~2014) +# https://easylinuxtipsproject.blogspot.com/p/ssd.html#ID16.2 #----------------------------------------------------------------------------------- # TODO +# Better detection if DSM is uisng the drive. +# Show drive names the same as DSM does +# Support SATA M.2 drives +# Maybe add logging +# Add option to repair damaged array + +# DONE # Allow specifying the size of the volume to leave unused space for drive wear management. # # Instead of creating the filesystem directly on the mdraid device, you can use LVM to create a PV on it, # and a VG, and then use the UI to create volume(s), making it more "standard" to what DSM would do +# https://systemadmintutorial.com/how-to-configure-lvm-in-linuxpvvglv/ # # Physical Volume (PV): Consists of Raw disks or RAID arrays or other storage devices. # Volume Group (VG): Combines the physical volumes into storage groups. # Logical Volume (LV): VG's are divided into LV's and are mounted as partitions. -# -# Support SATA M.2 drives -# Maybe add logging -# Add option to repair damaged array -scriptver="v1.0.3" +scriptver="v1.1.4" script=Synology_M2_volume repo="007revad/Synology_M2_volume" @@ -205,6 +212,8 @@ echo -e "Unused M.2 drives found: ${#m2list[@]}\n" #echo -e "NVMe list: '${m2list[@]}'\n" # debug #echo -e "NVMe qty: ${#m2list[@]}\n" # debug +if [[ ${#m2list[@]} == "0" ]]; then exit; fi + #-------------------------------------------------------------------- # Select RAID type (if multiple M.2 drives found) @@ -385,38 +394,14 @@ if [[ $single != "yes" ]]; then fi -#-------------------------------------------------------------------- -# Select file system - -PS3="Select the file system: " -select filesys in "btrfs" "ext4"; do - case "$filesys" in - btrfs) - #echo -e "\nYou selected btrfs" # debug - format="btrfs" - break - ;; - ext4) - #echo -e "\nYou selected ext4" # debug - format="ext4" - break - ;; - *) - echo -e "${Red}Invalid answer${Off}! Try again." - ;; - esac -done -echo - - #-------------------------------------------------------------------- # Let user confirm their choices if [[ $m22 ]]; then - echo -e "Ready to create ${Cyan}RAID $raidtype $format${Off} volume"\ - "using ${Cyan}$m21${Off} and ${Cyan}$m22${Off}" + echo -e "Ready to create ${Cyan}RAID $raidtype ${Off} volume"\ + "group using ${Cyan}$m21${Off} and ${Cyan}$m22${Off}" else - echo -e "Ready to create ${Cyan}$format${Off} volume on ${Cyan}$m21${Off}" + echo -e "Ready to create volume group on ${Cyan}$m21${Off}" fi if [[ $haspartitons == "yes" ]]; then @@ -519,47 +504,48 @@ done #-------------------------------------------------------------------- -# Format the array +# Create Physical Volume and Volume Group with LVM -# Ensure mkfs.btrfs and mkfs.ext4 sees raid as SSD and optimises file system for SSD +# Create a physical volume (PV) on the partition +echo -e "\nCreating a physical volume (PV) on md$nextmd partition" +if [[ $dryrun == "yes" ]]; then + echo "pvcreate /dev/md$nextmd" # dryrun +else + pvcreate /dev/md$nextmd +fi -if [[ $format == "btrfs" ]]; then - if [[ $dryrun == "yes" ]]; then - echo "echo 0 > /sys/block/md${nextmd}/queue/rotational" # dryrun - echo "mkfs.btrfs -f /dev/md${nextmd}" # dryrun - else - # Ensure mkfs.btrfs sees raid as SSD and optimises file system for SSD - echo 0 > /sys/block/md${nextmd}/queue/rotational - mkfs.btrfs -f /dev/md${nextmd} - fi -elif [[ $format == "ext4" ]]; then - if [[ $dryrun == "yes" ]]; then - echo "echo 0 > /sys/block/md${nextmd}/queue/rotational" # dryrun - echo "mkfs.ext4 -f /dev/md${nextmd}" # dryrun - else - # Ensure mkfs.ext4 sees raid as SSD and optimises file system for SSD - echo 0 > /sys/block/md${nextmd}/queue/rotational # Is this valid for mkfs.ext4 ? - mkfs.ext4 -F /dev/md${nextmd} - fi +# Create a volume group (VG) +echo -e "\nCreating a volume group (VG) on md$nextmd partition" +if [[ $dryrun == "yes" ]]; then + echo "vgcreate vg$nextmd /dev/md$nextmd" # dryrun else - echo "What file system did you select!?"; exit + vgcreate vg$nextmd /dev/md$nextmd fi #-------------------------------------------------------------------- # Notify of remaining steps -echo -e "\nAfter the restart go to Storage Manager and select online assemble:" -echo -e " ${Cyan}Storage Pool > Available Pool > Online Assemble${Off}" - -echo -e "Then, optionally, enable TRIM:" -echo -e " ${Cyan}Storage Pool > ... > Settings > SSD TRIM${Off}" +echo -e "\n${Cyan}Remaining steps you need to do${Off}" +cat <