Everything posted by jbat66
-
[Plugin] unbalanced
UB just uses rsync to copy/move files, now while rsync "can" send files over a network connection, you would have to specify that in the command line. I don't see any reason why your NIC would have traffic because of an UB move. sniff the traffic and see what kind of traffic it is.
-
[6.8.2] CPU usage reported by GUI, is way different than True CPU usage
CPU usage displayed on the Dashboard page in the GUI, is way different than True CPU usage reported useing command line tools such as htop and others. See attached image for example.
-
[Support] binhex - Plex Pass
Yep same thing just happened to me. I'm running the binhex-plex not the binhex-plexpass Network type is host, all other Docker and VM's are working fine. I did just upgrade my free plex account to a plex pass, but that was it. I also just added a user, and that was about the time it quit working.
-
[Plugin] unbalanced
I'm not sure if the unBALANCE plugin can do what you are wanting to do. I would use rsync at the command prompt and move a top level directory to your disk 4 so that you have space on disk 3 and disk 4. In the unRAID share management page, I would set Share 3 to only use Disk 3 and Disk 4, and then only split at the top level. If you are uncomfortable with rsync at the command prompt, you may want to look into the binhex - Krusader - Docker Container, and use that to move your files. When you set up Krusader, set your path varable to /mnt and not /mnt/user so that you can see the disk shares. One last note, wether you are using rsync or Krusader, make sure never to move or copy files from a "disk" share to a "user" share. Always go disk to disk or user to user. i.e. rsync -a /mnt/disk1/sharename/folder /mnt/disk2/sharename/folder or rsync -a /mnt/user/sharename/folder /mnt/user/someothershare/folder
-
[Plugin] unbalanced
Thanks, and I really do like your Reset to Default button. Basically just do a warning "don't change these settings, unless you understand rsync, otherwise click the reset button" lol
-
[Plugin] unbalanced
Yes that makes sense, thanks. One can never interrupt a transfer with -P enabled, for fear of a partial file hanging out. The only option would be to not interrupt the transfer, or if the transfer is interrupted, to make sure you do the same transfer later successfully or like you said delete all the files that were copied thus far. It would be great if it defaults stay as -avPRX, but you have made the -X customizable, it would be great if all the options were customizable. Not UnBALANCE related, but rsync related. Today I had a problem moving files with rsync, and it was failing because it could not change the group settings. As you know the -a includes the -g and -o options specifically -a includes -rlptgoD. So I changed my settings from -av to -rlptDv (same as -av but no g and o) and was able to complete my transfer. Sometimes there are reasons when someone needs to change the rsync options. Thanks.
-
[Plugin] unbalanced
Love your work on UB!!! I searched this thread but only saw one other comment about rsync -options. Would it be possible to let users change all the command line options for rsync, and not just the -X? "By default, rsync is invoked with -avPRX flags. Note that the X flag is customizable, so you can remove it if needed." Here is why I ask. the -P is problematic. I lost a 250GB file because of it. Here is the example. I have widget.dat (250GB) on Disk 1 along with other files in the share. I start the move to Disk 2, most of the file move, but it starts moving the 250GB file, and I cancel the move, before being completely done (or power outage or whatever). Now I have widget.dat (250GB) on Disk 1, and widget.dat (39GB) on Disk 2. Now not looking at all my file sizes in the CLI, which most folks would not go. I use UB to move the files from Disk 2 back to Disk 1. My good widget.dat (250GB) on Disk 1 got overwritten by the partial ie bad widget.dat (39GB) from Disk 2. Good by file!!!! IMHO If -P was not on I would not have had data loss.