impaler

Members
  • Posts

    4
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

impaler's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Thanks unAdvanced Member, havent tried that one before. Although I am not sure why a usb management solution would help in my case. I have an actual pci usb card that is passed through to the linux vm which stops working. My intension is to use this pci card's usb ports in the guest vm, so I don't have to manage the usb devices in a tool like this ;). I guess it could just be a faulty pci card.
  2. Hi I have been using a pci usb card on a linux vm. I connect a monitor's usb hub through the usb card and when I turn off my monitor and walk away, then come back the usb ports in the pci card stop working. After rebooting the vm it starts working again. I noticed that this seems to reset it without rebooting: ``` echo "1" > /sys/bus/pci/devices/0000:08:00.0/remove sleep 1 echo "1" > /sys/bus/pci/rescan ``` So I find myself passing through another usb keyboard to run this script to get things going again without a reboot. This is the usb card info in unraid under Other PCI Devices: ``` Renesas Technology Corp. uPD720201 USB 3.0 Host Controller | USB controller (09:00.0) ``` And what shoes in linux guest lspci: ``` 08:00.0 USB controller: Renesas Technology Corp. uPD720201 USB 3.0 Host Controller (rev 03) (prog-if 30 [XHCI]) Physical Slot: 0-7 Flags: bus master, fast devsel, latency 0, IRQ 21 Memory at 91200000 (64-bit, non-prefetchable) [size=8K] Capabilities: [50] Power Management version 3 Capabilities: [70] MSI: Enable- Count=1/8 Maskable- 64bit+ Capabilities: [90] MSI-X: Enable+ Count=8 Masked- Capabilities: [a0] Express Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [150] Latency Tolerance Reporting Kernel driver in use: xhci_hcd Kernel modules: xhci_pci ``` Anyone else run into this?
  3. @trurl Lol `docker --help` nice the docker cli can be used as normal. Thanks a bunch @primeval_god that's what I wanted to know. Makes sense about the gui listing containers being manually created. I guess this is just another view for `docker ps`
  4. Hi I have been real impressed with unraid for a general purpose home virtualization platform. I'd just like to ask if anyone is also using their unraid server as a general purpose home development environment / test bench. I am wanting to run custom docker images & continuous integration from my own scripts. I couldn't see any obvious docs in the wiki regarding interacting with any docker daemon from unraid. I am pretty much trying to figure out whether I can use unraid as a generic docker host for development. For example, could I use tooling like the standard docker cli or portainer.io with the unraid docker services? Maybe this would be a bad idea as unraid has built it's own custom abstractions on top of docker and its not intended to be used that way? I guess the obvious alternative would be to just create an unraid vm with a separate docker daemon and use that like any other setup. Maybe that wouldn't be docker running as 'bare metal' as possible, I guess any impact of that however be negligible. Cheers.