JayJ

Members
  • Posts

    5
  • Joined

  • Last visited

JayJ's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Hi, I'm having trouble figuring out why my NVME cache speed never seems to get over 80MB/s read or write speeds. I 've got a Crucial 500GB drive set up as a cache that I'm primarily using to store my VM images on. For example, right now I'm transferring 9GB of files from one virtual drive to another that are both on the NVME cache and its taken over 30 mins and is averaging around 15MB/s. They're both mapped directly via /mnt/nvme_cache/domains/... I get the same kind of speeds if I transfer files from array or another cache to this drive. Also, if I do a /mnt/nvme_cache cp via command line I get similar speeds (I'm trying to bypass shfs to see if that's an issue). Any ideas as to how to diagnose/trouble shoot this issue as I'm at a loss as to where to start looking! Thanks! diagnostics-20211119-1350.zip
  2. yes i think you're both right. at some stage I must have had a typo and attempted to copy either with the array not started or mistyped a directory. after a good nights sleep and some valheim distraction i wrote a script to do the copy with some validation and monitoring on free space and it appears to be running and copying correctly. thank you all for your help! This has been super useful at helping me understand how unraid works under the hood. For anyone migrating from DrivePool to Unraid, here is the script that I'm using to move the files over and the steps I've taken. What I did was: Create an array with sufficient space for my data. Create the shares and make sure that I've set appropriate minimum free space. Turned off parity syncing while copying. Mount the drives using the Unassigned Drive plugin. Run the below script. The -n switch on the cp command won't overwrite copy so is useful if it needs to stop and be restarted. I'm not a dev, so I don't expect that the below is the best way of doing things though. #!/bin/bash # set array share paths downloads=/mnt/user/downloads person=/mnt/user/person media=/mnt/user/media # check shares exist if [ ! -d $downloads ]; then echo "Download share doesn't exist" exit 9999 fi if [ ! -d $person ]; then echo "person share doesn't exist" exit 9999 fi if [ ! -d $media ]; then echo "Media share doesn't exist" exit 9999 fi # enumerate through mounted ntfs disk using unassigned drive plugin for diskname in /mnt/disks/* do # set the DrivePool directory name on the mounted disk sourcefolder=$diskname/Pool*/ServerFolders # check / isn't filling up freespace=`df / | awk '/[0-9]%/{print $(NF-2)}'` if [[ $freespace -lt 6500000 ]]; then echo "/ is filling up and is running out of space" exit 9999 fi # copy files from ntfs to array cp -rvn $sourcefolder/person/* $person/ cp -rvn $sourcefolder/Downloads/* $downloads/ cp -rvn $sourcefolder/Music/* $media/music/ cp -rvn $sourcefolder/Videos/TV\ Shows/* /$media/videos/tv/ cp -rvn $sourcefolder/Videos/Movies/* $media/videos/movies/ done
  3. i created the share via the UI to make sure that any logic that needs to get applied occurs. to be clear, what is happening is i set the cp to run and then i get out of space errors and the entire computer cracks it because / is full...the top line when i run a df is at 100%. going into /mnt/user/[shares] and deleting things reduces the rootfs back down. I've had this issue twice now, first time i blew everything away and started again from scratch--i can't figure out what i'm doing wrong! blacktron-diagnostics-20210918-0046.zip
  4. sorry, i am trying to copy to mnt/user/[share]. i'd imagine i'd have the same issue with MC right as that's just doing a cp.
  5. I'm finally doing it! I'm a WHS2011 refugee that has been sitting on a DrivePool install for far too long. Have finally blown away Windows 10 and have started off with Unraid. It all seems to make sense in terms of setting things up, but my google-fu is failing me and I can't seem to join the dots on how the /mnt/user/share concept works. I have setup an array, and parity hasn't synced yet. I've turned it off in the hope that I once I've copied my data over I can sync it. I've mounted my old NTFS drives that have data and am trying to copy them over one by one into shares that I've created through the UI in /mnt/user/share {edited typo had /mnt/share} (something along the lines of cp -rv /mnt/disks/ntfs_disk1 /mnt/user/share/downloads. I get that /mnt/user is supposed to be a logical volume that spans the disks in the array but it doesn't seem to be working. What is happening is I'm filling up the rootfs and the shares don't seem to be writing to the array. I can't seem to figure out what to google for...what am i doing wrong?