Jump to content

comet424

Members
  • Posts

    1,922
  • Joined

  • Last visited

Everything posted by comet424

  1. so i decided to check my sisters Unraid.. its a 4 Bay unit.. i ran the Extended Scan.. been running since yesterday afternoon.. its stuck it hasnt done anything... and now i see the drives are spun down... does the diagnostics say anything? maybe whats caused it to just be stuck? i looked in the system log but i cant really tell mitchsserver-diagnostics-20210816-0818.zip
  2. @Squid ah ok ... be nice to be able to change the words to Icons on any theme but ill look into it.. even like how Home Assistant works for icos a MDI: icon name and changes words etc i tried the URL (open new tab) tower keeps telling me i need to enable popups.. but why does it work when you click Docker... click Krusader click Webgui and it doesnt ask your for pop up.. anyway URl(open new tab) = webgui icon .. or is that also more re writes of coding does the webgui icon for each docker .. is that Pop up enabled.. or is that something different.. i have to find out in my broswers my popups i guess so i tried the url option you have in the page. http://tower/Settings/RecycleBin and that lets me open the Recycle bin.. so that works that way.. ya nothings perfect.. but like the app 🙂 now gotta find the pop up thing in my browsers Update:. found the pop up security option in least Internet Explorer.. and Krusader now works thanks great app to help it make it bit easier 🙂
  3. custom tab for Recycle Bin does not work the webpage is RecycleBin for the built in Page its Recycle Bin (recycle.bin/RecycleBin.page) it also adds a _ on back of bin in the address bar also be able to Add Spaces for Custom Tab words.. i cant type "User Scripts" as it comes out "UserScripts" so i gotta do "User_Scripts" but Plex Streams offers a space.. not 100% big deal but worth noting also is there a way to make on the custom Tab. a Docker App load.. so i could have Krusder.. Click it and Krusader opens a window instead of Docker.. but it be a tab just like windows Task bar offers and any way to add Icons instead of a word so you can mouse over an Icon just like windows task bar i see there is option for Icon but i dont see how it works it does nothing least i dont see anything in IE/Edge
  4. so i skimmed over it.. none helped.. they talked about Avast anti virus.. but i dont use it.. and they talk about gui.. but Docker is the only slow thing its like you leave it idle for a few hours... and when you load up unraid page.. you can click VMS it takes a few seconds.. but it loads.. you click docker.. and she taking like 20 seconds to load.. its like your spinner drivers are spun down and you gotta wait for it to spin up.. now i did try changing some settings like making sure the cache drive folders like appdata system vms all said Only.. i figure maybe if set to Perfer maybe thats causing Docker to be slow it might be reading the array waiting for a disk to spin up.. not 100% sure also the Transmission Icon came back.. and no longer and orphane image.. and once that happened Docker loads in 1 second.. but it took a day after me setting vms appdata etc to Cache Only also i changed Cpu scalling to On Demand... i just guessing.. like that other guy having similar issues as me.. so i going to let it go idle till tommorow and see if she still slow i did clean up and deleted alot of junk so i recovered 2TB.. and i finished cycle 1 of 3 after 51 hours for the 12TB.. . and if i needed to hit stop array.. does it stop preclear? i not touching much as i dont wanna put the cycles to waste.. so for now i just letting this idle and see if docker help but what i skimmed from the FAQ didnt help my case 😞 will see what tomorrow brings also read the docker faq about pinning but i cant do that not without a reboot and dont wanna mess up my preclearing so ill try those tests in a week i have like transmission pinned on a 3rd cpu and thread.. and i used to have cpu isolation but i was experiencing issues so i turned them off.. so not sure if i cpu isolate if it help but cant do that need reboot and cant do that yet
  5. i took out the >> log file figured maybe it stop but it didnt.. when i viewed the log file it gave this at the end so for now i using Krusader to copy the files.. but rather use rsync so i dont get errors of out of disk space that krusader gives Number of files: 9,258 (reg: 2,529, dir: 6,729) Number of created files: 0 Number of deleted files: 0 Number of regular files transferred: 0 Total file size: 22,748,666,656 bytes Total transferred file size: 0 bytes Literal data: 0 bytes Matched data: 0 bytes File list size: 0 File list generation time: 0.001 seconds File list transfer time: 0.000 seconds Total bytes sent: 326,441 Total bytes received: 1,096,969 sent 326,441 bytes received 1,096,969 bytes 569,364.00 bytes/sec total size is 22,748,666,656 speedup is 15,981.81 Copying Virtual DJ Folder To Drive 2 Overflow in read_varint() rsync error: error in rsync protocol data stream (code 12) at io.c(1747) [sender=3.2.3] rsync error: received SIGUSR1 (code 19) at main.c(1592) [Receiver=3.2.3] Script Finished Aug 13, 2021 23:42.14
  6. i have a script to copy music from my array to 2 mobile drives.. but when i run it.. i get an read_varint() error.. how i fix that? i have about 200k+ of files around 4TB of music and music videos. Copying Virtual DJ Folder To Drive 1 Overflow in read_varint() rsync error: error in rsync protocol data stream (code 12) at io.c(1747) [sender=3.2.3] rsync error: received SIGUSR1 (code 19) at main.c(1592) [Receiver=3.2.3] Copying Music To Drive 2 Copying Virtual DJ Folder To Drive 2 Overflow in read_varint() rsync error: error in rsync protocol data stream (code 12) at io.c(1747) [sender=3.2.3] rsync error: received SIGUSR1 (code 19) at main.c(1592) [Receiver=3.2.3] Script Finished Aug 13, 2021 23:05.45 my code is #!/bin/bash # Copying Music To Drive 1 #--------------------------------------- echo "" echo "Copying Music To Drive 1" rsync --protect-args -avu --stats --numeric-ids --progress -e '/mnt/user/Music/Music' '/mnt/disks/Music Drive 1' >> /boot/logs/cronlogs/Music_Drive_1.log # Copying Virtual DJ Folder To Drive 1 #--------------------------------------- echo "" echo "Copying Virtual DJ Folder To Drive 1" rsync --protect-args -avu --stats --numeric-ids --progress -e '/mnt/user/Music/VirtualDJ' '/mnt/disks/Music Drive 1' >> /boot/logs/cronlogs/Music_Drive_1VirtualFolder.log # Copying Music To Drive 2 #--------------------------------------- echo "" echo "Copying Music To Drive 2" rsync --protect-args -avu --stats --numeric-ids --progress -e '/mnt/user/Music/Music' '/mnt/disks/Music Drive 2' >> /boot/logs/cronlogs/Music_Drive_2.log # Copying Virtual DJ Folder To Drive 2 #--------------------------------------- echo "" echo "Copying Virtual DJ Folder To Drive 2" rsync --protect-args -avu --stats --numeric-ids --progress -e '/mnt/user/Music/VirtualDJ' '/mnt/disks/Music Drive 2' >> /boot/logs/cronlogs/Music_Drive_2VirtualFolder.log is there a setting i have set wrong.. is it too big for rsync to work really.. it was working before but now i get that error
  7. so i turned off Plex.. if it click Docker still takes around 18 -20 seconds if i click Dashboard and the Docker page sections also takes 18-20 seconds to load and the only 2 dockers i have running is lan-cache krusader does it mean anything?
  8. ah does my settings look better again? and docker takes 18 seconds to load counting the second after i press the docker tab so nothing improved the speed is there a way to run a diaganostic.. to see when you press Docker.. to see what is taking sooo long to load.. like a ping if you were to load up in windows app say onedrive it tell ya it took 2.5 seconds loading IE took 4 seconds is there a program/diagnostic that records the load times when you click Docker so i could see whats taking sooooooooooo long as sometimes Docker takes 30-1min to load prior to your findings some was on the array.. is there anything i can record in the terminal... like you have that grep program i not fluent with linux stuff.. but is there something that can show slowiness so i can fix it ? and still Transmission os orphaned and doesnt work even though its running... when you click webugui.. its working just not downloading.. so kinda frustrating and i dont wanna shut off array or reboot as i doing a 12tb preclear.... so i dont wanna jeopardize it but if there is a plugin to show load times of docker what would it be called
  9. @trurl ah ok ya thats where i mentioned i had to set to cache perfer because cache only doesnt work when u wanna use the mover when you switch ssd's ok so i did that.. appdata takes forever.. is the problem Docker is slow due to Plex running and or transmission/deluge i have noticed plex takes forever? should it be appdata on its own ssd vms on its own ssd plex docker on its own ssd would that speed it up? here is the diaganostic when i click the compute its fast for vms,system but took 30 seconds to do appdata so i was wondering should we be doing seperate SSD to to speed up the system.. least for Plext as it doesnt matter if its on a Sata SSD or a NVME 3500/3000 or a 7000/5000 nvmes it was still slow as molasses so thats why i was also thinking its unraid the bottle neck too maybe when i gone to the faster nvmes tower-diagnostics-20210812-1142.zip
  10. but ill check with krusader to make sure none of those 4 folders be on the array but it shouldnt be i know i may have mixed up words i see i had the cache only set to prefer.. i was doing a NVME transfer to send in for RMA and i set to Perfer when i was using Mover as there is no option when VMS appdata etc is on the ARRAY but you set it to CACHE ONLY that mover will move it from the array to cache.. mover will only move it when you set to PERFER so thats why its set there but i should have set things to ONLY after it was done.. it be nice MOVER would move the Folders from the Array when you set things to CACHE ONLY so i double checking things with krusdader but i been having this slowness problems for over a year now even when all the settings were set to Cache only and nothing on the array
  11. @trurl i have it set cache only i dont have any cache on the array but /mnt/cache <=== would read the Cache Only /mnt/user <==== would read cache and read the array shares i basiclly commenting on the one guys findings that setting your Docker appdata to /mnt/cache/appdata and not to /mnt/user/appdata that its possibly acting slower pointing to user not to cache is basiclly what i was trying to get at i have no appdata/vms/docker/system they all on the cache nothing on the array so my cache drive set to Cache only and has 126gb free onit.. it doesnt really change unless plex gets bigger.. as i dont do any caching its just vms,docker,appdata,system so thats only on the cache download drive is just a Spinner Cache drive just so i can download from transmission or all my Windows Downloads go directory to this spinner drive so the array stays off lancahce pool drive is just the drive for downloading Epic Games as i have to re install the games. so i reported this issue back in 2020 but never had any solution.. where you can see the Docker Video so slow loading but VMs page will load faster. i picked up a 12TB drive yesterday so i preclearing it so thats going to take a week.. and i not sure if you can take the array offline without messing up the Pre clear progress.,.. i not sure if it stops if you stop an array.. and Fix Common Issues doesnt find anything so what what should i look for? so recap after reading all my dislexia writting non of the 3 pools save to the array.. they all cache only the appadata,docker,system,vms all on the cache drive i was asking if its possible slow because vms docker points to /mnt/user/appdata and maybe i need to change to /mnt/cache/appdata as another user was finding slower speeds this way too and figured it was reading the array when you point to /mnt/user instead of /mnt/cache hopefully you can understand i know with my dislexia it sounds ok in my head not always as you read it also why i asked should VMS and the docker/appdata/system be on 2 different SSDS too
  12. so i still struggling with Docker speed.. where it can be like 2 3 seconds to 10 seconds to 1min to populate also i find that the Transmission Icon goes away as an orphane but it has come back once i shut down a VMetc here is a video i made here some Diganostics i took also the Docker acts like a Spinner Drive when put to sleep takes time to power up.. and get working... would it be better to set the appdata cache only to /mnt/cache/appdata and not /mnt/user/appdata this way it wont go to the array i not sure? my video of docker never loading.. when i do it takes about 1 min.. i took this on aug 9 https://1drv.ms/u/s!AkZ74ugB21kngYMnucOZA60pvyfm6w?e=WM2LLm so i not sure whats causing it.. the orphane pic is transmission isnt even running but i noticed if i shut off a VM the image usually comes back and then Docker will speed up but it will go back to sleep later currently running on a Sata SSD.. but this happens on my NVME 3500/3000 it doesnt matter what it does its always sleeping and takes a long time to run but vms always populate before the Dockers.. and in dockers i only running maybe 2-3 apps always is it a memory thing then? and should you put your VMS on a different SSD then your appdata? would that help things i run like 4-5 VMS but they basiclly idlying tower-diagnostics-20210809-1045.zip tower-diagnostics-20210812-1033.zip tower-diagnostics-20210812-1020.zip
  13. @HynesJeff ya Top Tabs of the Gui Docker Plugins VMs, etc i find it slow choosing Docker.. i took video how i stop choose a different option after .. it takes like anywhere from 2 seconds or 10-30 to 1 min to load up the Docker Page
  14. @Linguafoeda is it working well no issues? im having trouble myself with AMD audio on the Asus X570 windows VM pops and pauses passing the audio running a Volumio VM not a problem.. as soon as i do it for a windows VM it cant pass through right.. not sure if the intel boards have the same issue.. i can get a usb graphics card to work .but getting the audio doesnt even running this MSI program didnt help
  15. @HynesJeff have you also noticed that Docker and VMs are completely slow on the top tabs its like the SSDs goto sleep after a given amount of time and you gotta wait for them to spin up even though they are a SSD they act like a spinner so clicking a Docker or a VM takes about 10 seconds to populate give or take. on a 3500 or a 7000 nvme like it was a spinner drive but once running its quick no one in the forums could answer it. its still and un answered question i asked multiple times..so i wrote the tech support unraid to ask... about the slowness and the slowness of 3500 and 7000mb/s nvmes unraid cant reach those speeds seems to be capped around 2500 and may spike to 3000 at the end of a Disk speed test.. so i asked them as no one could answer it in the forums i wonder if that would solve the issue.. if i change it from /mnt/user/appdata to /mnt/cache/appdata as all my appdata is on the cache but it will go to sleep and i asked this question for a couple years now i think i may have to try.. see if this would help mine..
  16. and i guessing your setup is just passing a video card with the audio where im actually passing a USB sound card or the onboard sound with a usb graphics card with no audio so i can goto a projector and a sound system
  17. ya i had a guy help me pass the USB controllers it still the audio pops or stops... i have DJ mixer for playing music i tried in it too with DJ software so i could play music or use it as a VLC player.. video streams fine.. but nothing works right.. so i passed through the usb controller checking it off in the system devices.. setting the VIFO to Both streams i still getting issues and using the dj mixer ahd the Virtual DJ software i can see how the music will jump forward back and pause for a second then play again.. the audio just soo spuratic how did you manage to solve audio issues? i dunno if it even could be with ASUS?as really there is no support for such stuff Windows yes but running a VM not so much are there Bios settings you need to enable disable? as its truly frustrating
  18. i running a ryzen 3600 on a asus x570 tuf gaming plus board i run volumio and audio runs fine but if i shut it off and run Windows 10VM the audio is cutting in and out.. and that fix from cd quality to dvd quality doesnt fix it.. if i use either a usb audio or on board.. i cant get it from cutting in and out.. even did remote Desktop.. is there a fix for this issue? i have tried some MSI thing that didnt help either
  19. @SiteAssemble ah ok.. ya i run for my 3 intake fans on a Y.. they are noctura industrial 3000 rpm fans.. then the 2 fans cpu and the chipset fan.. and then my 2 exhaust fans are 6000 rpm fans.. my bios sets all the fans to manual so it wont ever come on except for unraid telling it too.. supposedly lol.. but comes on when i dunno.. i cant tell why its coming on unless the main page is slow reading the temperatures where the fan control reads the temperature more often i dunno
  20. @Meles Meles reason i ask is.. like Video games and Windows 10 can not use the speeds of Gen 4 SSD the difference from a SAta and NVMe Gen 4 is not much difference.. so i was curious if Unraid say in version 10 will be optomized to run faster things for a Gen 4 at 7000mb/s or might as well go with just sata of a 3500/3000mbs i just trying to see if its worth keeping a Gen 4.. i posted a new posting.. Windows can get 7000mb/s but unraid cant get it in disk speed
  21. now only if they offered fan control for unassigned drives be nice.. unassigned drives are over heating in the bays cuz the array is off but fans still come on when main page says the temps are not the minum speed so i guess the plugin sees the temp before the main page does
  22. @SiteAssemble figure it out.. i dunno if they can fix it fans were on Hwmon2 orginally was on Hwmon1 but then i added and nvme. and moved to hwmon2 now when i added ta 2nd nvme it moved fans to Hwmon3 thats why it buggered it up i dunno why nvme doesnt goto hwmon3 so thats why its buggering up my fan control needs a disclaimer.. each time you add a nvme run terminal run pwmconfig and see what hwmon(x) your fan moved to... this frustrating.. dunno why hwmon keeps moving finally its quiet i was getting frustrated and you forget these things
  23. @SiteAssemble seems fan control is broken if you have 2 NVMEs installed you cant turn off the fans they just running.. you can disable them all and then enable they dont even spin down and this is after i plugged a 2nd nvme in
  24. @SiteAssemble ok ill email you later but are you finding the Fans are running when they should be shut off?? it was working but Fans are spinning 2 exhaust at like 80%.. when i plugged an unnassigned drive in the 2nd nvme slot.. i can not turn it on and off at the moment.. gonnna try to disable then re enable the fans to see if it fixs it but fan control is spinning all the fans even though the temperatures arent at the min setting.. its messed
  25. i running disk speed on a 3500/3000mb/s and a 7000/5000mb/s nvmes they both perform around 2500 mb/s o dunno if its read or right in the diskspeed docker app.. the 7000mbs/5000/s peaks at 800-1000gb going to 3400 mb/s but the 3500./3000 stayed constant around 2200/mbs roughly and my wd Satas they stay constant so is it a bios, is it limited to the OS, is it board i running on a Asus X570 Tuf Gaming.. both Nvme are Gen 4 slot Pcie4 so i not sure why i not getting faster speeds is there a setting in unraid? i wanted to use for dockers and hopefully speed up Docker/Plex... sometimess Docker seems to be sleeping when you click it.. like a Spinner drive.. you gotta wait till it spins up then works.. it seems to be same for Docker.. also i wanted to speed up Plex it seems to be slow at times... first to are Sata WD, 3and 4 are the XPG 3500/3000 and Samsung 7000/5000 mbs... i just seem to get max speed for sata but not for nvme
×
×
  • Create New...