archedraft

Community Developer
  • Posts

    2070
  • Joined

  • Last visited

Everything posted by archedraft

  1. I just bought this last week for 10.13. It works; however, I have to plug the USB devices directly into it. I have 2 different USB hubs and for some reason High Sierra doesn’t recognize them? 10.11 works with both with out any issues so I have no idea what’s going on. Good news is the new PCIe card has 4 usb so plugging everything into it is fine. I really wish I knew why the hubs are not working (did 10.13 add some sort of hardware compatibility requirements or maybe a USB 3 controller has to has a USB 3 hub??). ORICO 4-Port USB3.0 PCI-E Expansion Card USB3.0 4 Port PCI Express to USB3.0 Host Controller Adapter Card with 30cm 15PIN SATA to Big 4PIN Power Cord Compatible with Windows,Vista,Linux and Mac OS http://www.newegg.com/Product/Product.aspx?Item=9SIA1DS1EA8223
  2. One item I’ve just noticed is the VM cpu screen seems to be a tad too small horizontally for my setup. It pushes the second CPU pair box to a new line. I was very confused, until I realized that 6.4 changed the CPU to show pairs. See attached screenshot.
  3. Upgraded from latest RC. unRAID booted fine and all VMs and Dockers appeared to load when all of the sudden everything froze. Let it sit for 10 mins but it’s was completely unresponsive, not even CLI. Had to hard reset so no diags. Upon reboot my VMs did not auto start. Virtual Manager had set its self to not auto start and said the default ISO and VM storage paths did not exist. It was looking for the unRAID default paths which I removed many versions ago. Anyways, I set up my correct paths which were set that way in the last RC and started the VMs. unRAID has been up and working for the past 10 hours and everything appears to be good. Not sure what happened but my guess is the VM settings may have caused the original unresponsiveness. Anyways hope this may help [emoji4] As always, thanks LT for another great release with amazing features!
  4. You were correct. I purchased a new powered HDD to USB docking station and it mounts the NTFS drives. I’m guessing the old usb enclosure one didn’t like the new Linux?? Regardless, the new $20 docking station is much nicer anyways so oh well! Thanks for your help.
  5. I used to have a script that would check if the array was started and parity check was not running before backing up files. Using: #!/bin/bash var=/proc/mdcmd array=$(grep -Po '^mdState=\K\S+' $var) rsync=$(grep -Po '^mdResync=\K\S+' $var) if [[ $array == STARTED && $rsync -eq 0 ]]; then rysnc script fi I saw that from rc8 onwards the preferred method to read array status is by quering the var.ini and disks.ini files. so I updated the a test script to the following: #!/bin/bash var=/var/local/emhttp/var.ini array=$(grep -Po '^mdState=\K\S+' $var) rsync=$(grep -Po '^mdResync=\K\S+' $var) echo $array echo $rsync if [[ $array == STARTED ]]; then echo "ARRAY STARTED" else echo "ARRARY NOT STARTED" fi if [[ $rsync -eq 0 ]]; then echo "RSYNC 0" else echo "RSYNC Running" fi and my output is: "STARTED" "0" ARRARY NOT STARTED ./test: line 17: [[: "0": syntax error: operand expected (error token is ""0"") RSYNC Running Does anyone know why the if else logic is coming back false instead of true like the echo variables are stating?
  6. How do I check the file system with UD? I wonder if the issue is the USB enclosure... I got a new error message. usb 1-1-port6: unable to enumerate USB device
  7. Does UD no longer support NTFS format? In the past I would take my backup hard drives out of the safe and plug it into unRAID via USB and then copy all the new content to the backup hard drives. I tired to do this today and got the following errors. I can plug them into a Windows computer and it reads the drive just fine. I am running 6.4.0-rc9f and UD version 2017.10.07 unRAID Log Oct 21 08:42:22 Pithos kernel: usb 1-1.6: device descriptor read/64, error -71 Oct 21 08:42:22 Pithos kernel: usb 1-1.6: device descriptor read/64, error -71 Oct 21 08:42:23 Pithos kernel: usb 1-1.6: device descriptor read/64, error -71 Oct 21 08:42:23 Pithos kernel: usb 1-1.6: device descriptor read/64, error -71 Oct 21 08:42:23 Pithos kernel: usb 1-1.6: device not accepting address 31, error -71 Oct 21 08:42:24 Pithos kernel: usb 1-1.6: device not accepting address 31, error -71 Oct 21 08:42:24 Pithos kernel: usb 1-1.6: device descriptor read/64, error -71 Oct 21 08:42:24 Pithos kernel: usb 1-1.6: device descriptor read/64, error -71 Oct 21 08:42:24 Pithos kernel: usb 1-1.6: device descriptor read/64, error -71 Oct 21 08:42:25 Pithos kernel: usb 1-1.6: device descriptor read/64, error -71 Oct 21 08:42:25 Pithos kernel: usb 1-1.6: device not accepting address 34, error -71 Oct 21 08:42:26 Pithos kernel: usb 1-1.6: device not accepting address 35, error -71 UD Log Oct 21 08:39:11 Partition 'DATA BACKUP' could not be mounted... Oct 21 08:39:34 Disk with serial 'HGST_HTS725050A7E630_TF655AY9KGBT4L' is not set to auto mount and will not be mounted... Oct 21 08:40:13 benchmark: shell_exec(/usr/bin/timeout 20 /bin/df '/dev/sdj1' --output=used,source 2>/dev/null|/bin/grep -v 'Filesystem'|/bin/awk '{print $1}') took 30.533089s. Oct 21 08:40:13 Adding disk '/dev/sdj1'... Oct 21 08:40:13 Mount drive command: /sbin/mount -t ntfs -o auto,async,noatime,nodiratime,nodev,nosuid,umask=000 '/dev/sdj1' '/mnt/disks/DATA_BACKUP' Oct 21 08:40:13 Mount failed with error: ntfs-3g: Failed to access volume '/dev/sdj1': No such file or directory Oct 21 08:40:13 Mounting ntfs drive read only. Oct 21 08:40:13 Mount drive ro command: /sbin/mount -t ntfs -ro auto,async,noatime,nodiratime,nodev,nosuid,umask=000 '/dev/sdj1' '/mnt/disks/DATA_BACKUP' Oct 21 08:40:13 Mount of '/dev/sdj1' failed. Error message: ntfs-3g: Failed to access volume '/dev/sdj1': No such file or directory
  8. FWIW, my key was F2 to get me into the OVMF settings page. I thought I was going to go insane as I was mashing the delete key without success.
  9. The original guides were no where near as easy to install everything as your videos have become. It was really impressive to take the USB installer and covert that to an image file to install the macOS system. I really like how this install is becoming more vanilla than the older OS X systems. I attempted changing the XML as you suggested but still no luck. Let me know if you have success this weekend! Edit: If anyone is having issues getting the full macOS High Sierra installer downloaded and instead getting the 19.9 MB installer, I had to upgrade my Sierra (10.12) system to the latest Sierra version and then download macOS High Sierra to get the full ~5GB version.
  10. Awesome video on High Sierra @gridrunner! I actually haven't upgraded my OS X since Yosemite so I thought it was time. I do have a question, I got everything up and running with VNC. Then I went back and edited the XML to include my graphics card and USB controller. Graphics loaded fine but the USB mouse movement is crazy laggy. Have you run into this? I also tried Sierra (macOS 10.12) and after everything was installed and running fine, I added the USB controller and the mouse was also laggy. It was working fine on Yosemite under Seabios, so not sure if this is a newer mac symptom or possibly something to do with OMVF.
  11. Agreed, very nice fit! Glad you like it.
  12. This is really cramping my lurking the unRAID forums in the background!
  13. Lol, thank you for posting this!
  14. Lol, sorry I could not help myself.
  15. This has got "danger stranger" written all over it!
  16. Looks very nice! Thanks to everyone involved!
  17. Yeah the IP/app_name is what I am looking for. It wouldn't necessary need to have a valid SSL as most of them are just http currently. I just do not want to be able to access them through my external ip address.
  18. I have this installed so that I can access certain dockers from a outside network. I was thinking it would be nice to use the reverse proxy for internal network access only. Is there an easy way have the outside and internal network separate from within this single docker or would it be best to install a separate nginx docker for internal only items?
  19. Yum, cookies! Good choice (with a side of vanilla ice cream... )