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.

Michael_P

Members
  • Joined

  • Last visited

Everything posted by Michael_P

  1. There's an issue with Github and CA
  2. Probably not the CPU since it's a 15. If you have multiple RAM sticks, try running with 1 and then the other to see if it continues to rule out bad RAM
  3. Looks like it ran OOM twice yesterday around 1920-1930, and killed the docker service both times. Doesn't appear to be any particular container, and is likely just trying to do too much at once. Check your container configs to make sure anything that you have caching to RAM isn't going to exhaust the host, and consider limiting the RAM available to the container. Reboot to clear the log so FCP stops warning you.
  4. First question, is it continuing to happen? Second part of first question, if it is continuing, have you turned off those docker containers to see if it stops? If it's one of those two containers causing the problem you can follow up in the container's support thread to narrow down the issue
  5. Doesn't look out of the ordinary to me
  6. You can also try moving it to the array to rule out the SSD
  7. What? MCE can be any number of things and it's a deferred error. [Hardware Error]: Deferred error, no action required. Reboot to clear the log and to see if it happens again
  8. Never had to restore so I couldn't tell you for sure, but looks like you re-install the containers then restore
  9. Reckon that would depend on what you had backed up
  10. It's pretty much just stopping the array, disabling VM and Docker services, starting array, changing any shares to Array only, running mover, make sure all files moved, stopping and shutting down to install new ssd, add the new SSD as cache, then reversing the steps to get everything back onto the new cache drive
  11. ChatGPT is pretty good at making simple scripts like this, I shoved this prompt in I need a simple script that changes the file extension for files in a folder named "Input" to file extension .mp4, and then copy that file to a folder named "Video Output", and then uses ffmpeg to convert the file to an mp3 in a folder named "Audio Output" and it spit out import os import shutil import subprocess # Folder paths input_folder = "Input" video_output_folder = "Video Output" audio_output_folder = "Audio Output" # Create output folders if they don't exist os.makedirs(video_output_folder, exist_ok=True) os.makedirs(audio_output_folder, exist_ok=True) # Process files in Input for filename in os.listdir(input_folder): input_path = os.path.join(input_folder, filename) if os.path.isfile(input_path): base_name = os.path.splitext(filename)[0] mp4_filename = base_name + ".mp4" mp4_path = os.path.join(input_folder, mp4_filename) # Rename to .mp4 os.rename(input_path, mp4_path) # Copy to Video Output video_output_path = os.path.join(video_output_folder, mp4_filename) shutil.copy(mp4_path, video_output_path) # Convert to MP3 using ffmpeg mp3_output_path = os.path.join(audio_output_folder, base_name + ".mp3") subprocess.run(["ffmpeg", "-y", "-i", video_output_path, mp3_output_path]) print("All files processed.") Don't know if it works or not, but it should give you a good place to start
  12. Carve it into sections, start with files that have been added around the time the issue started and move them out of your library in blocks until the problem goes away then narrow down in that block and so on.
  13. Nah, especially since they've already run memtest looks like a broken file crashing the scanner/transcoder, especially if it's the same ffprobe process causing the segfaults. turn off plex for a few days or so and see if it goes away - you can also try deleting the codecs folder in your plex container so it re-builds. if it happens only when plex is running, you'll have to find the file causing the problem
  14. Yeah, I'm not sure that was really an issue - only another extended test would be sure. Personally, even if it passed I'd send it to backup duty due the reallocated sectors.
  15. It's showing up now at least - there's 25 re-allocated sectors on it so at a minimum I'd run a long SMART test on it, but if it was under warranty I'd have it replaced.
  16. Looks like it dropped offline, check the cable/connections, reboot and post new diagnostics
  17. Plex already has both, as do most media related containers
  18. The manual shows one on the mobo too
  19. Make sure nothing's touching the power button on the mobo
  20. In a docker container
  21. It hasn't technically failed a SMART attribute or test, which is why there's no warning. I've had an SSD fail so that it would just go readonly on every write, and SMART said everything was fine, so it's not perfect.
  22. It's showing 67 errors on the drive, the last few shown were un-correctable sectors. Here's the bit from your log where the system threw it out Jun 21 03:07:20 TomiServer kernel: I/O error, dev sdb, sector 22369448 op 0x0:(READ) flags 0x80700 phys_seg 2 prio class 0 Jun 21 03:07:20 TomiServer kernel: ata1: EH complete Jun 21 03:07:20 TomiServer kernel: BTRFS error (device sdb1 state A): Transaction aborted (error -5) Jun 21 03:07:20 TomiServer kernel: BTRFS: error (device sdb1 state A) in btrfs_finish_one_ordered:3244: errno=-5 IO failure ### [PREVIOUS LINE REPEATED 1 TIMES] ### Jun 21 03:07:20 TomiServer kernel: BTRFS info (device sdb1 state EA): forced readonly Up to you on what to do with it.
  23. They run pretty loose in their definition of healthy lol, mine usually say 100% health too, until the power blinks and it shuts off the rack.

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.