Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

ezhik

Members
  • Joined

Everything posted by ezhik

  1. You need to switch it to HBA mode first and update it to 4.52.
  2. Tested on a Fresh 6.3.2 Final. Works like a charm! Thank you!
  3. RC9, same issue. No luck.
  4. Alright. So I just confirmed, to crossflash Fujitsu D2607 into 9211-8i: 3 x A21 -> success 1 x A11 -> success So here is the procedure I had to follow to make BOTH ports work on a11 and a21. a11 - sbrfj.bin a21 - sbrjohnny.bin 1) boot into freeDOS: a) get your sas address by executing: megacli -adpallinfo -aall |find /i "sas address" > sas_addr.txt b) create a back-up of your current sbr megarec.exe -readsbr 0 orig-sbr.bin c) flash a11 or a21 sbr: megarec writesbr 0 sbr-a11.bin or megarec writesbr 0 sbr-a21.bin d) clean out flash megarec -cleanflash 0 note: if you are getting an error cleaning flash, reboot and try again. might take 3-4 reboots. e) reboot into efi shell: note: for me the drive was fs2. fs2: sas2hax -o -f 2118it.bin f) reboot into efi shell: fs2: sas2hax -o -f 2118it.bin -b mptsas2.rom sas2hax -o -sasadd 5000* note: if you don't know what your sas address is, use openssl to generate random hex characters: openssl rand -hex 6 d847203de496 So your random SAS Address would be: 5000d847203de496 g) reboot into freedos megarec writesbr 0 sbr-a11.bin or megarec writesbr 0 sbr-a21.bin sas2flsh -o -sasadd (use same sas address from step #f) h) reboot and enjoy!
  5. The problem still exists even with 6.3-RC6. Not sure what the problem is here. No issues on Ubuntu or Windows OS accessing drives.
  6. So I've tested this on Ubuntu 16.04. Works without any issues. Modules loaded: hpsa and cciss. $ pv ubuntu-gnome-16.04.1-desktop-amd64.iso > ~/Downloads/ubuntu-gnome-16.04.1-desktop-amd64.iso 1.21GiB 0:00:01 [ 631MiB/s] [====================================================================================>] 100% # modinfo hpsa filename: /lib/modules/4.4.0-47-generic/kernel/drivers/scsi/hpsa.ko license: GPL version: 3.4.14-0 description: Driver for HP Smart Array Controller version 3.4.14-0 author: Hewlett-Packard Company srcversion: EFB2AD999EE7878A33900C5 depends: scsi_transport_sas intree: Y vermagic: 4.4.0-47-generic SMP mod_unload modversions parm: hpsa_allow_any:Allow hpsa driver to access unknown HP Smart Array hardware (int) parm: hpsa_simple_mode:Use 'simple mode' rather than 'performant mode' (int) # # modinfo cciss filename: /lib/modules/4.4.0-47-generic/kernel/drivers/block/cciss.ko license: GPL version: 3.6.26 description: Driver for HP Smart Array Controllers author: Hewlett-Packard Company srcversion: 07CA5DF6C8E8F4A1C5D384D depends: intree: Y vermagic: 4.4.0-47-generic SMP mod_unload modversions parm: cciss_tape_cmds:number of commands to allocate for tape devices (default: 6) (int) parm: cciss_simple_mode:Use 'simple mode' rather than 'performant mode' (int) parm: cciss_allow_hpsa:Prevent cciss driver from accessing hardware known to be supported by the hpsa driver (int) #
  7. I tested the card under windows 7, quite impress by the read and copy speeds. No issues. I think it is the driver that is the problem. Cheers.
  8. Rob you are correct. The fault is declared when I am attempting to copy the data from the array (read it). I changed the SATA mode to AHCI. It made no difference. Are you using one of these drivers? http://h20564.www2.hpe.com/hpsc/swd/public/readIndex?sp4ts.oid=7553524&swLangOid=8&swEnvOid=4049 It's running latest 4.52 firmware. I am willing to do as much testing as possible on this. I would really appreciate it if we could make this working. Cheers. If sending you a card would be better, I have no problem with sending one.
  9. Have you tried 6.3.0-rc3? Let me know if anything else is needed. I uploaded the diagnostics above. Unfortunately RC3 crashes on read from the array (with lots of read/access errors).
  10. ezhik replied to wgstarks's topic in Lounge
    Can you make it without the XEON logo in the middle? Looks awesome. Cheers.
  11. Anything else can be useful here?
  12. Getting read errors and a kernel panic.
  13. Have you tried 6.3.0-rc3? So it did not work. Attaching diagnostics. Cheers. diagnostics-20161108-2222.zip
  14. I am on 6.2.4. I will try the latest 6.3.0 RC tonight. Cheers!
  15. Hello, Submitting a request for proper HP H240 support in unRAID.
  16. If you are using nginx, there is logging that is enabled by default. You might want to disable that. The logs grow pretty heavily.
  17. ezhik replied to sypack's topic in General Support
    And my reverse proxy is only local. I am against exposing this externally.
  18. ezhik replied to sypack's topic in General Support
    I advise strongly against this if it is to be then exposed to the Internet. If it is on the LAN then it's fine. I guess there are use cases where HTTPS is required on your LAN too. No doubt. This can also be easily brute-forced. The user id is always the same (root) and I don't know of a way to change that.
  19. ezhik replied to sypack's topic in General Support
    Add an nginx docker container with mapping port 443 to 443. Use openssl to generate certs. https://www.digitalocean.com/community/tutorials/how-to-create-a-self-signed-ssl-certificate-for-nginx-in-ubuntu-16-04 Create a config for reverse proxy: site-confs/www.conf --- server { listen 443 ssl; server_name unraid-ssl; ssl_certificate /certs/unraid.crt; ssl_certificate_key /certs/unraid.key; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header Host $host; proxy_pass http://your_unraid_ipv4:80; } } ---
  20. Thanks for the hard work. #archlinux #respect
  21. ezhik replied to wgstarks's topic in Lounge
    You know it
  22. ezhik replied to wgstarks's topic in Lounge
    Good stuff. Thank you to all that shared. MLP rocked, my daughter loved it as well

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.