ICDeadPpl

Members
  • Posts

    224
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by ICDeadPpl

  1. How do I get the timestamp of the downloaded video NOT to be the video upload/creation date? If I download a video uploaded to Youtube a week ago, then the downloaded video has the creation timestamp set for that date. I'd like to have the downloaded video to have the current (when it was downloaded) timestamp, so that I can easily sort the files in the download folder by date, descening order. Is there a YTDL_OPTIONS setting for this?
  2. Is there a way to have one particular container restart after a update/restart of another container, Mariadb in my case?
  3. I think you have to use chown -R nobody:users * instead. chown help says: chown [OPTIONS] USER[:GROUP] FILE(s)
  4. Use "bash /usr/local/bin/audioArrayToSSD/monitor_arrayAudioChanges.sh" instead of "source /usr/local/bin/audioArrayToSSD/monitor_arrayAudioChanges.sh" From the 1st link you provided: "In the second method, if you are using exit in second script, it will exit the first script as well."
  5. It gave me an error until I added a "\" on this line: umount -l /var/lib/docker_bind\
  6. Which files and folders do I have to backup, so that I can just copy them back if something stops working? Proxy Hosts and SSL Cerificates is what am thinking about.
  7. Try running the following command on both hosts: ssh-keyscan -H TARGET_HOST >> ~/.ssh/known_hosts
  8. Could bash scripts (filename.sh) made editable, like *.txt files, when clicking on them? Or maybe add an "Edit" button?
  9. Ferdi as a project is dead. Ferdium is a fork of Ferdi/Franz with developers from Ferdi and is free. Docker setup instructions on their Github.
  10. I upgraded Unraid to 6.10.1, and after the reboot the login functionality was there and could login. I also forgot to mention that the unraid-api command didn't work under 6.10, maybe that was the culprit? Now on 6.10.1 everything is good!
  11. I can't post this to the My Servers forum, because it doesn't get registered, so here goes: After upgrading to 6.10, the My Servers doesn't let me login. The dropdown on the top right in Unraid shows this: The "Install Plugin" button never goes away, and the install log shows "plugin: not reinstalling same version". The Management Access page shows this: And the sign in process then shows this, without me actually ever getting the chance to log in anywhere: The "Sign in" button still shows on the page. The config file in the plugin directory never gets written: The plugin is supposedly the latest version:
  12. I got this from their newsletter: https://nextcloud.com/blog/nextcloud-hub-24-is-here/
  13. I have set it to run at first array start only. The script itself runs in a infinite loop and has a 1 second long pause between checks (the "sleep 1" part at the end).
  14. I use this script, which checks if Plex has started transcoding and stops Trex if that is true. It starts Trex after Plex has finished transcoding. It is for Nvidia cards only. Feel free to use it and modify it to your needs. #!/bin/bash # Check if nvidia-smi daemon is running and start it if not. if [[ `ps ax | grep nvidia-smi | grep daemon` == "" ]]; then /usr/bin/nvidia-smi daemon fi sleep 300 # Wait until array is online and all dockers are started. Comment this out if you are testing the script. TREX=`docker container ls -q --filter name=trex*` while true; do if [[ `/usr/bin/nvidia-smi | grep Plex` == "" ]]; then # If Plex is not transcoding, start the trex-miner container if it is not running. if [[ `docker ps | grep $TREX` == "" ]]; then echo "No Plex, starting Trex." docker start $TREX fi else # If Plex is transcoding, stop the trex-miner container if it is running. if [[ `docker ps | grep $TREX` != "" ]]; then echo "Plex running, stopping Trex." docker stop $TREX fi fi sleep 1 done
  15. Thanks for the tip about AutoSync! I've been looking for this kind of app for a while! 👍
  16. When browsing a Github repository, pressing the period "." key, you can start a VS Code instance in your browser which loads the current repository. From the article: "You have to try this. Go to any GitHub repository and then press the dot key on your keyboard. Visual Studio Code will appear in your browser. It will load your entire repository and you can open any file from it. You have your entire source code with syntax highlighting and coloring. If you want to search for something, you can use the Visual Studio Code search capability to search in any file in the repository. If you make a code change, that code change gets saved and you can immediately make a commit inside your GitHub repository from your browser." Read more at https://visualstudiomagazine.com/articles/2021/08/31/github-vs-code.aspx
  17. I should have mentioned that I followed the instructions for Windows, as I ran the script on my Windows 10 machine.
  18. I'm actually using a fork of the official PIA script from here: https://github.com/hsand/pia-wg It works fine, if you follow the instructions in the project's README.md file.
  19. Yeah, I've been using the scripts to generate Wireguard configs for my PIA account. Works fine.
  20. Is it possible to have a script to check when a Plex session with encoding starts, so that one can stop a mining Docker? In my case it's the trex-miner, which I would like to halt when Plex gets an encoding job. 'nvidia-smi' gives the active process using the GPU, so the script would have to parse the output for Plex.
  21. Maybe I misunderstood. So the drivers running in the WIndows VM support passthrough, then?
  22. They said it is for Linux hosts running Windows VMs: "With virtualization enabled, GeForce customers on a Linux host PC can now enable GeForce GPU passthrough on a virtual Windows guest OS. There are a few GeForce use cases where this functionality is beneficial such as: GeForce customers wanting to run a Linux host and be able to launch a Windows virtual machine (VM) to play games Game developers wanting to test code in both Windows and Linux on one machine"
  23. Does the new 465.89 driver's "GeForce GPU Passthrough for Windows Virtual Machine" functionality make any difference for this plugin? https://nvidia.custhelp.com/app/answers/detail/a_id/5173 https://www.nvidia.com/en-us/geforce/news/outriders-game-ready-driver/