nate1749

Members
  • Posts

    87
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

nate1749's Achievements

Rookie

Rookie (2/14)

3

Reputation

  1. for anyone that is having issues with the init-mongo.js file/path (it was giving me issues that I was too lazy to troubleshoot), I opted to instead create the mongodb container and then manually create the two dbs and users within and then it worked for me. Once you're within the console of the mongodb container you can type mongosh and then: test> use unifi switched to db unifi unifi> db.createUser({ user: "unifi", pwd: "enter-your-pw", roles: [ { role: "dbOwner", db: "unifi" } ] }) { ok: 1 } test> use unifi_stat switched to db unifi_stat unifi> db.createUser({ user: "unifi", pwd: "enter-your-pw", roles: [ { role: "dbOwner", db: "unifi_stat" } ] }) { ok: 1 }
  2. Anyone have an example DVDrip.sh ? I'd like to modify some settings for how the mkvs get encoded, but don't know how write this file from scratch. I've used rix1337/docker-ripper:latest & rix1337/docker-ripper:manual-latest I've jumped in the container and searched for the file, and although I can find abcdef.conf in /ripper I can't seem to find DVDRip.sh.
  3. man and manpages would be great. I'm not sure why documentation was ever omitted; perhaps memory? but the days of being worried about a few megs of text files in memory are over, so nerd pack to the rescue. https://pkgs.org/download/man-db https://slackbuilds.org/repository/14.2/system/man-db/ Thanks for all the work on this project; makes unraid so much better.
  4. I had a similar thing happen to me about 10 years ago and after spending hours on it, someone on this board said "re-seat the card." I unplugged the card from the pci slot, re-inserted it, and the mb detected it again, thus unraid saw the drives, and fixed my problem. Hopefully you got it figured out already though.
  5. Looking for any recommendations on a motherboard that supports intel 10th/11th gen processors, quadro p2000 on a dedicated pci 3.0 (not shared or downgraded when some other slot gets used), 2 m.2 full width drives, and preferably 3 other pci slots that could handle HBA cards that will have 8 drives on each (spinning rust), and up to 128gb of ram. It's that fourth pci slot that I'm having trouble with, otherwise this one would be perfect: Gigabyte Z590 AORUS ULTRA LGA 1200 Another option would be for me to sell my 3 sas9340-8i cards and buy 2 cards that support 12 drives each; or find a board with at least 10 on board sata ports (array is 24 drives + 2 cache + 2 other drives outside array that I want to use as zfs block storage), but before I do that, I thought I'd ask here. Budget is $300ish, but that can go up if needed. Nate
  6. What about taking a new usb thumbdrive, putting the unraid trial version on there, and just seeing if it boots. If it does and you're not getting the errors, then something is probably corrupt with your thumb drive. I'd recommend copying the files off of it now while you can so that hopefully your config is saved. Maybe then you could copy your config files onto the new usb thumbdrive (instructions on how updates used to be done might help here) and if it works, then you would just need to share your new guid on the thumbdrive with unraid to get your license transferred over. Someone else might have better troubleshooting steps though. Nate
  7. Thanks, this resolved it for me as well and is preferred over a reboot. I only had one container running (sabnzb) and now I have none (but docker is active), so I'm curious if it'll happen again under these conditions.
  8. Well shoot. How is the port supposed to get passed if you're using bridged mode? Or is that something that shouldn't be used now (I'm not using wireguard, so I thought it was still okay to use bridged mode)?
  9. For anyone who had port forwarding break after an update, my solution was to delete the Additional_ports variable and re-create it as a port type. Not sure why it switched during the update, but it's an easy fix.
  10. for anyone who wants to turn on the appending of file transfers (you'll get the error "Append/Restart not permitted, try again" you need to add the following to the config file proftpd.confg AllowStoreRestart on http://www.proftpd.org/docs/directives/linked/config_ref_AllowStoreRestart.html
  11. Appears to be looking for the tftp server and it's not seeing it. Did you remap ports? Don't remap port 69. Also, love this project. Having used a variety of things over the years for PXE (wds, fog), this is exactly what I've been looking for. Still trying to figure out how to actually use the local assets after they're pulled, but I'm only 15m in and haven't gone through all the documentation yet, so thanks for this.
  12. Thanks for the detailed reply, I really appreciate it as it seems like you've got some solid best practices for most people. I'm just tracking too much and I need to incorporate your exceptions of ignoring luxury items, perishables with a short lifetime, and if anything gets opened mark it as out of inventory. I've been trying to track all of that stuff and when I realized I was putting more time into inventory tracking than time it would take to run to the store to get another, I stopped using it. Thanks again.
  13. Just curious if you're still using this app and if so, how are you keeping inventory up to date? I love the idea of this, but am spending too much time to keep it up to date, so I'm thinking I might be overdoing it.
  14. In your volume mapping of the container map, try adding this: -v /etc/localtime:/etc/localtime:ro I also saw someone call out this environmental variable for time (normally it's TZ): PAPERLESS_TIME_ZONE and the value of it for you will be something like: America/Los_Angeles I'm not sure if this environmental variable works though, so give it a shot or the volume mapping.
  15. +1. I've also got a synology NAS and their web UI file browser is way more advanced than I'm looking for with unraid. Currently I use screen sessions and rsync to move things around as MC seems to have a bug where it replicates and nests directories with the same name under that directory rather than merge them. Other than Krusader, anyone have a docker container they use & like?