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.

DirtyDarrell

Members
  • Joined

  • Last visited

Solutions

  1. DirtyDarrell's post in Unclean shutdown -- then I rebooted was marked as the answer   
    Your Unraid configuration files are still present in the diagnostics, which is a good sign. Here's what you can do:
     
    1.) Backup Your Current USB Drive
    -Before doing anything else, copy everything from your existing flash drive to a safe location.
     
    2.) Check for Super.dat File
    -The super.dat file in config/ stores your drive assignments. If it's intact, your array configuration should be recoverable.
     
    3.) Prepare a New Flash Drive
    -Install a fresh copy of Unraid on the new USB drive using the Unraid USB Creator.
    -Copy the entire /config/ folder from your backup (or extracted diagnostics) to the new flash drive.
    -Ensure the super.dat and ident.cfg files are included.
     
    4.) Reboot and Check Assignments
    -Insert the new USB into your server and boot up.
    -Check if your disk assignments and settings are restored.
     
    5.) Manually Reassign Drives (If Needed)
    -If Unraid doesn't detect your previous assignments, manually assign them without formatting.
    -Your parity should remain valid unless you made changes after the outage.
     
    Potential Issue with Cloud Backup Overwrite:
    If your flash backup on Unraid.net (or MyServers plugin) was overwritten with the post-failure state, you might not be able to restore directly from the cloud. However, since your diagnostics still contain super.dat and ident.cfg, you should be able to manually recover your array.
     
    I hope this sheds at least a little light, Lemme know if I can help anymore!

    Best & Success,
    -DirtyDarrell
  2. DirtyDarrell's post in Alienware AlienFX lighting no longer working properly in 6.12.2 was marked as the answer   
    UPDATE: This issue has been Fixed finally!
     
    Issue Overview:
    I encountered a persistent issue where the side panel LEDs on my Alienware Aurora R1 would not function when running Unraid, despite working fine in bare metal Windows 10 (installed on a separate SSD).
     
    -When booting into Windows 10, all AlienFX lighting zones (including Zone 3 - side panel) worked perfectly.
    -However, as soon as Unraid booted, the side panel LED would turn off, even though the front and bottom LEDs remained functional.
    -This issue first appeared in Unraid 6.12.2 and persisted through multiple updates, until it was finally resolved in Unraid 6.12.15.
    -The behavior almost resembled AWCC's default "Sleep Mode" being activated by Unraid, turning off certain lighting zones (specifically Zone 3 - the side panel).
    -Initially, I attempted to run Alienware Command Center (AWCC) inside a Windows 10 VM to gain control of the lighting. However, AWCC failed to recognize the LED controller and did not allow me to change the lighting settings within the VM. Due to this, I opted to manage the lighting from a bare metal Windows 10 SSD, as I didn’t frequently adjust the effects. Additionally, I suspected that the chipset lacked proper passthrough support for AWCC to function correctly within the VM, making a dedicated Windows installation the more reliable option.
     
    After extensive troubleshooting, I successfully restored full functionality to the AlienFX lighting system, including the side panel, while running Unraid 6.12.15. Below is a detailed write-up of what was happening and how it was resolved.
     
     
    🔹Root Cause Analysis:
    After testing multiple configurations, I determined that Unraid was either disabling power to the HID controller or failing to initialize it properly.
     
    Key observations:
    ✅The side panel LED worked during BIOS boot and in bare metal Windows 10.
    ❌As soon as Unraid took over, the side panel LED turned off.
    ✅Front and bottom LEDs continued to work in Unraid.
    ❌AlienFX settings had no effect while Unraid was running.
    -This strongly indicated that Unraid was either suspending the USB HID device or not initializing it properly at boot.
     
     
    1️⃣Ensure Unraid Is Not Disabling USB Power:
    Unraid may automatically place USB devices into power-saving mode, which can cause issues with HID devices like the Alienware LED controller.
     
    🔹Check USB Power Mode
    Run this command in the Unraid terminal to check if USB devices are in power-saving mode:
    cat /sys/bus/usb/devices/usb*/power/control
     
    *If the output says "auto", Unraid is managing USB power dynamically, which can turn off LEDs.
    *If the output says "on", USB power is fully enabled.
     
    🔹Force USB to Stay Powered On
    To prevent Unraid from disabling USB power, run:
    echo "on" | tee /sys/bus/usb/devices/usb*/power/control

    *Verify the change:
    cat /sys/bus/usb/devices/usb*/power/control

    *Now all devices should say "on".
     
     
    2️⃣Detect and Load Necessary Kernel Modules (lm-sensors)
    Certain kernel modules need to be loaded for Unraid to properly detect and communicate with HID devices like the Alienware LED controller.
     
    🔹Detect System Sensors
    Run the following command:
    sensors-detect
     
    *Accept all default prompts (Press Enter for each).
    *The system will suggest kernel modules to load.
     
    🔹Load Recommended Kernel Modules
    After sensors-detect completes, manually load the recommended modules:
    modprobe usbhid
    modprobe usbcore
    modprobe hid-generic

    *Confirm the modules are loaded:
    lsmod | grep hid
     
     
    3️⃣Manually Reset the Alienware HID LED Controller:
    Since Unraid sometimes fails to initialize HID devices properly, manually unbinding and rebinding the HID controller can force it to work.
     
    🔹Identify the HID Device
    Run the following to list all detected HID devices:
    ls /sys/bus/hid/devices/
     
    *Look for an entry containing 187C:0513, which is the Alienware Gaming Desktop LED Controller. (This may vary depending on your model)
     
    🔹Unbind and Rebind the HID Device
    Use the correct device ID from the previous command and run:
    echo -n "0003:187C:0513" | tee /sys/bus/hid/drivers/hid-generic/unbind
    sleep 2
    echo -n "0003:187C:0513" | tee /sys/bus/hid/drivers/hid-generic/bind
     
    *(If your HID ID is different, replace 0003:187C:0513 with the correct one from lsusb.)
     
     
    4️⃣Test if This Works After Reboot:
    Now that we’ve:
    -Enabled USB power
    -Loaded the required kernel modules
    -Manually reset the HID device
    We need to fully reboot Unraid:
    reboot
     
    *After rebooting, check if the side panel LED remains functional.
     
     
    ✅Automate the Fix on Every Boot:
    To ensure that Unraid always keeps the USB power settings and HID devices properly initialized, you can add the commands to Unraid’s startup script.
     
    1️⃣Open the Unraid startup script (go file):
    nano /boot/config/go
    2️⃣Add the following lines before the last exit line:
    # Ensure USB devices stay powered on
    echo "on" | tee /sys/bus/usb/devices/usb*/power/control
    # Load HID kernel modules
    modprobe usbhid
    modprobe usbcore
    modprobe hid-generic
    # Reset Alienware HID device
    echo -n "0003:187C:0513" | tee /sys/bus/hid/drivers/hid-generic/unbind
    sleep 2
    echo -n "0003:187C:0513" | tee /sys/bus/hid/drivers/hid-generic/bind
    3️⃣Save and exit (CTRL + X, then Y, then Enter).
    4️⃣Reboot Unraid and confirm the fix persists.
     
     
    🚀Ensure the Alienware Gaming Desktop HID Device Is Enabled in the VM:
    After resolving the Unraid-side issues, the next step was ensuring that the Windows 10 VM properly recognized and initialized the Alienware LED controller.
     
    🔹Pass the HID Device to the Windows 10 VM
    -Go to the Unraid WebUI > VMs.
    -Edit your Windows 10 VM configuration.
    -Under the USB Devices section, select and pass through the Alienware HID device (187C:0513).
    -Save the configuration and restart the VM.
    🔹Enable the Alienware HID Device in Windows 10
    -Start the Windows 10 VM.
    -Open Device Manager (devmgmt.msc).
    -Expand Human Interface Devices (HID).
    -Locate HID-compliant vendor-defined device or Alienware Gaming Desktop.
    -Right-click and ensure the device is enabled.
    -Reboot the VM and check if the side panel LEDs are now working inside Alienware Command Center (AWCC).
     
     
    🔹Final Thoughts:
    After following these steps, I was able to fully restore AlienFX lighting control, including the side panel LEDs, on my Alienware Aurora R1 and control everything within a VM while running Unraid 6.12.15.
     
    The issue started back in Unraid 6.12.2 and was likely due to USB power management changes, HID initialization bugs in earlier versions, invalid VM setups on my side, or a little combination of all these things. As of 6.12.15, this fix is confirmed to work and is running perfectly!
     
    I’m posting this solution here in case anyone else encounters similar problems with Alienware lighting control being disabled in Unraid.
     
    If anyone has further questions, feel free to reply or message me directly! Hope this helps!
     
     
    Best & Success,
    -DirtyDarrell
     
     


  3. DirtyDarrell's post in Jellyfin Icon :: Could Not Download Icon was marked as the answer   
    SOLVED :: Was using the wrong Jellyfin Repo to begin with.
  4. DirtyDarrell's post in Your server has detected hardware errors was marked as the answer   
    Is your ram overclocked? I had a similar issue awhile back and it was a problem with the OC ram.

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.