Everything posted by tjb_altf4
-
[Plugin] GUI Search
I noticed preclear plugin doesn't show, is there something the author needs to add to ensure its picked up?
-
How low the mighty NewEgg has fallen...
it gets worse, Newegg RMA'd the board, Gigabyte stated it had socket damage and it would cost $100 to fix. Newegg opted not to fix, then sold it to a customer (Steve) The gigabyte RMA ticket was still on the motherboard...
-
Blacklisted USB Flash GUID
In addition to @Frank1940's information, also note this PSA from LimeTech, which identifies problems with SanDisk USBs in recent times.
-
High Water for large array?
Although likely due to a configuration option I don't fully understand impacting its operation, highwater has never worked as advertised for me. One disk would just get pounded into the red zone, while the rest of my array sat quite empty, forcing me to manually move files around so mover didn't fail. After switching to most-free, my disks started being utilised across the array in a somewhat predictable manner.
-
[Plugin] CA User Scripts
@spacezmonkey the path in the first script is missing the leading forward slash
-
Unraid doesn't ask for username and password on mobile device
- DDR2?
-
[Support] binhex - Radarr
Upgraded without issue.
-
Docker Stop Timeout per container?
Unraid shows a container as stopped if it shuts down before timeout. Normally a docker will shutdown gracefully, but if for some reason it doesn't, the timeout gives you a way to force shutdown without you needing to manually intervene.
-
Docker image file size sanity check (SOLVED)
Although docker's documentation has a bunch of great info for getting various stats including this one, you can access this report directly in the Unraid GUI like so Unraid GUI > Docker > Container Size [button]
-
fortytwo - unRAID X399 build
The design is pretty crude at the moment, once I finish my current project I'm going to work on the v2 which should have improvements and potentially incorporate easy to source backplanes. I've got a spare server case to work with, so I'm hoping I can iterate the design quickly over the next few months. I'll have to dig out the v1 STLs, I'll add them here when I find/regenerate them. - How does the bottom part look like Identical to the top, but with a layer of thin adhesive eva foam to add some vibration dampening qualities. I ended up doing it this way as it meant horizontal components, left and right halves, used the same STL. - How much tolerance do you have on the drives The model was designed with zero tolerance, because I knew the print could go either way and I could adjust It's ended up as a "firm, but gentle press" haha, but I need to design a mechanism to allow easier retrieval. - Why not 15 drives instead of 14? I wanted to maintain a reasonable airgap for cooling and 15 wouldn't work for that, besides the overhang from the side of the case restricted use of the full width of the case. - Any vibration issues? between the base material and the use of plastic/filament for the mounting, its very minimal, even with the current 28 drives. - How is the airflow and drive temps? Good, no temp warnings over summer here in Oz, typically low 30C for front, and high 30C in back... second fan for push pull would help a lot. Also using 140mm gave a big improvement in terms of airflow and pressure, while actually being quieter than the 120mm fans they replaced. - On the rear, I see two squares, are these just there to hold up the mount? Yeah, just in lieu of rear fans... originally made for support on the sides but I miscalculated the thicknesses so they didn't fit there. Its needed as its a tight fit getting drives in and there's no other support there currently. - How did you glue/stick/mount them together? These were plastic welded with a filament stick and a dremel, but I've since worked out the filament I 3D print with (Prusament) can be bonded with acetone, which is easier, neater and results in a stronger bond. (note: acetone bonding doesn't work with plain PLA) - Did you screw the cage to the rack, or is it just sitting there loose? Friction fit would best describe it, but yes not fastened. An improved design would see some threaded inserts added to the finished print so I can affix to the chassis
-
SOLVED: Need a Little Dockerfile Help
The trick is the entire dockerfile is build time, so you'll need to move that copy logic into the entrypoint (or cmd), which is called later at run time. As you have an existing entrypoint used to start the application, you might have to do some testing to see what works best for you. This is what one of my dockers looks like, copying the .sh from the build folder COPY docker-entrypoint.sh /usr/local/bin/ ENTRYPOINT ["docker-entrypoint.sh"] You could create your own docker-entrypoint.sh to manage those copy steps (don't forget to chmod +x the file). I've added the old entrypoint command here at the end of the docker-entrypoint.sh... this "should" work, but you might need to do some further research and experimentation beyond this. #!/usr/bin/env bash # copy logic... you should put file detection here so as not to overwrite files on each startup cp -n /usr/src/app/cloudcmd.css /config/cloudcmd.css cp -n /usr/src/app/dist/index.html /config/index.html cp /usr/src/app/banner.png /config/banner.png cp /usr/src/app/favicon.ico /config/favicon.ico cp /config/cloudcmd.css /usr/src/app/dist/cloudcmd.css cp /config/index.html /usr/src/app/dist/index.html # start cloudcmd /usr/src/app/bin/cloudcmd.mjs exec "$@"
-
SOLVED: Need a Little Dockerfile Help
You'll need to copy those files at run time (i.e. cmd / entrypoint script), not at build time when the external folder isn't mounted. Once you get that working, you'll also need to check the files exist before copying or you'll overwrite the files each time you start the container.
-
How to migrate btrfs pools between unraid installs ?
I was hoping it was that simple, thanks @JorgeB
-
How to migrate btrfs pools between unraid installs ?
I'm considering splitting up my unraid installation into 2 separate servers. Most of the data I want to split out is in multiple btrfs pools, and it is not feasible to migrate the data between drives. So the question is, how to migrate btrfs pools between unraid installs ? I'm not afraid of getting into the CLI, I'm just looking for a little guidance on how to keep the unraid configuration valid. Thanks.
-
VM's should show their assigned IP address
If you've got a recent version of qemu-agent installed on the VM, try this one virsh qemu-agent-command MYDOMAIN '{"execute":"guest-network-get-interfaces"}' --pretty
-
Unable to login to mysql container after installing, should it be this confusing?
Working for me, one thing to note is you can only set the root password the first time, maybe some volume/appdata folder needs to be nuked? Run command used for test docker run --name some-mysql -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mysql:latest Successful login using ENV set in template / run cmd root@fortytwo:~# docker exec -it some-mysql sh -c 'exec mysql -uroot -p"$MYSQL_ROOT_PASSWORD"' mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 13 Server version: 8.0.28 MySQL Community Server - GPL Copyright (c) 2000, 2022, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> SHOW DATABASES; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.02 sec) mysql> EXIT Bye Successful login via CLI passing password root@fortytwo:~# docker exec -it some-mysql bash root@a6a52d23fe48:/# mysql -uroot -pmy-secret-pw mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 14 Server version: 8.0.28 MySQL Community Server - GPL Copyright (c) 2000, 2022, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> SHOW DATABASES -> ; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.01 sec) mysql> exit Bye Successful login via CLI entering password manually root@fortytwo:~# docker exec -it some-mysql bash root@a6a52d23fe48:/# mysql -uroot -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 15 Server version: 8.0.28 MySQL Community Server - GPL Copyright (c) 2000, 2022, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> SHOW DATABASES; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.00 sec) mysql>
-
Qbittorrentvpn cannot be seen from sonarr/radarr
You mentioned the dockers are on the same network/subnet, but are they all in the same docker network ? If not, you might be hitting the docker to host communication restrictions.
-
Enable Sleep / Hibernate in Windows VM after Inactivity to Free Up Server Resources
If you want WOL functionally for the VM, you need to install: Wake On Lan support plugin (prereq for #3) NerdPack plugin - to select and install Python 2 (prereq for #3) Virtual Machine Wake On Lan plugin VM sleep works out of the box (once user agent is installed), I've not had any issues using it... well other than the same flakiness windows exhibits in bare metal when waking sometimes. Not tried hibernate, but I know there was a setting in the VM Manager to change the default shutdown action, if that helps. I would have expected hibernate to work if fully enabled in the OS itself.
-
[Support] binhex - DelugeVPN
Has PIA dropped port forwarding support ? My speeds have gone to crap (for a few days now) and the delugevpn script output no longer shows any port forwarding servers. (or am I misreading the logs?) EDIT: changed servers, all good now, disregard
-
What is your default browser of choice?
Chrome typically. Edge (Chromium) when I'm on my work laptop / VM Firefox I try to avoid like the plague, but I use it for GUI mode because its the one installed.
-
syslog enhancements
#1 Currently for local syslog storage, you can only use existing shares for syslog storage, and cannot specify custom paths / pool / unassigned device etc. I'd like to see the ability to add custom paths in the GUI, without needing to modify config files as is the only workaround currently (shown below for reference). My particular use case is I have a pool named system which does not participate in user shares, which is where I want my logs to reside (alongside related items such as swapfile, docker.img, libvirt etc).. #2 As a sneaky related request, I'd also like to see a force log rotate button added. Thanks!
-
At a crossroads - Value your input
I designed and printed a 3d bracket for each end to hold it, it was easy for that rad as it was fairly square, some detail here: https://forums.unraid.net/topic/111775-carbon-unraid-x570-workstation-gaming-build/ You could also be a bit lazy and pad out some thick double sided tape to each end and position it where you like along the case, just make it snug. There is also a fan wall that comes on other models, that could also be used with some slight mods, see in this video around 9:20 mark for that fan wall looks like
-
At a crossroads - Value your input
Radiator should be fine, I've got an EK PE360 in my Rosewill 4U
-
sonarr deleted a top level folder - need help
Can't help with current problem, but just to let you know Sonarr/Radarr can be configured to use the recycle bin to add a safety net in future. Sonarr/Radarr > Settings > Media Management > File Management (with Advanced enabled)