-
Undervolting NVIDIA GPUs on Unraid
Hello, I was wondering if there is a way to apply and undervolt (and overclock) in UnRaid similar to what you can do with MSI Afterburner on Windows? Thanks
-
-
2 Separate (relatively new drives) SMART issues few days apart
Hello all, I've got 2 drives give me SMART errors within a few days of each other. They are both relatively new (purchased 29/08/2023 and 04/09/2023 respectively). Both are Toshiba Enterprise HDD 20TB, MG10ACA20TE. It all started when the first one gave me "reallocated sector ct is 5". As soon as I saw that, I started copying data off of it, and requested an RMA as that is grounds for a replacement (it has since risen to 62). Today, I saw the 2nd drive give SMART error with "offline uncorrectable is 1". 1) Is it pure coincidence that both are starting to exhibit issues or could there be something wrong here? I'm using an LSI 9300-16i SAS3008 HBA card if that matters at all. 2) With these 2 errors, what should I look out for with regards to missing/corrupt data? I have a 2-disk parity setup if that matters at all. Attaching both SMART logs for reference. Any help/input is greately appreciated. TOSHIBA_MG10ACA20TE_6380A1U1F4MJ-20240513-1929.txt TOSHIBA_MG10ACA20TE_6380A19CF4MJ-20240513-1917.txt
-
Any solution for mounting archives?
Did you ever find a solution to this?
-
[Support] IBRACORP - All images and files
Any ideas why Authelia seems to be creating these docker containers automatically but serve no purpose?
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
I'm using SA for that and uploads are working fine. The problem is with "downloading"
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
So it seems I've bit hit with a ban - "Error 403: The download quota for this file has been exceeded., downloadQuotaExceeded" when trying to acess my files although I can't figure out why exactly. Looking at the Quota stats on https://console.developers.google.com/apis/api/drive.googleapis.com/quotas I don't see me even getting close to the quota. I've also tried creating a new client id/secret to by-pass this, but I'm still getting the same error back. I also have a completely different Team Drive using different credentials, and that seems to have been hit with a ban as well. Any ideas?
-
Odd Ngnix error filling up my syslog
Did you figure this out? Having the same issue here too.
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Partly one of the issues I was having - not sure what the best way of checking there's an upload currently running, or whether the mount script is currently running (and attempting to mount a drive - i.e. rclone_mount).
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
I've written a small user script that reliably stops the array 100%. I'm not quite sure how 'safe' it is though - I haven't noticed any issues since I've been using it though. Here it is : #!/bin/bash ########################## ### fusermount Script #### ########################## RcloneRemoteName="google_drive_encrypted_vfs" RcloneMountShare="/mnt/user/data/remote_storage" MergerfsMountShare="/mnt/user/data/merged_storage" echo "$(date "+%d.%m.%Y %T") INFO: *** Starting rclone_fusermount script ***" while [[ -f "/mnt/user/appdata/other/rclone/remotes/$RcloneRemoteName/mount_running" ]]; do echo "$(date "+%d.%m.%Y %T") INFO: mount is running, sleeping" sleep 5 done while [[ -f "/mnt/user/appdata/other/rclone/remotes/$RcloneUploadRemoteName/upload_running" ]]; do echo "$(date "+%d.%m.%Y %T") INFO: upload is running, sleeping" sleep 15 done fusermount -uz "$MergerfsMountShare/$RcloneRemoteName" fusermount -uz "$RcloneMountShare/$RcloneRemoteName" echo "$(date "+%d.%m.%Y %T") INFO: ***rclone_fusermount script finished ***" exit Essentially what I'm doing, is checking whether mount is currently running and/or upload is currently running. If either of them are, then the script (and stopping the array) is paused for a few seconds and tries again. Once mount and upload has finished, it will proceed to fusermount -uz (both rclone and mergefs), and then the array stops just fine. I've been using this for the past week with no issues and the array stops always. Let me know what you think if you get to use it
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
How safe would manually doing fusermount -uz (on array stop) be if mount_running and upload_running don't exist? (i.e. those 2 scripts aren't running)?
-
Encryption and auto-start
I'm having some issues with the permissions as well. Even adding the chmod in go, it doesn't seem to apply on boot. root@XXX-XXXX:/usr/local/emhttp/webGui/event/starting# ls -ltra total 4 drwxr-xr-x 9 root root 180 May 3 10:54 ../ -rw------- 1 root root 164 May 3 10:54 fetch_key drwxrwxrwx 2 root root 60 May 3 10:54 ./ And my go looks like this root@XXX-XXX:/boot/config# cat go #!/bin/bash # auto unlock array mkdir -p /usr/local/emhttp/webGui/event/starting mkdir -p /usr/local/emhttp/webGui/event/started mkdir -p /usr/local/emhttp/webGui/event/stopped cp -f /boot/custom/bin/fetch_key /usr/local/emhttp/webGui/event/starting cp -f /boot/custom/bin/delete_key /usr/local/emhttp/webGui/event/started cp -f /boot/custom/bin/fetch_key /usr/local/emhttp/webGui/event/stopped chmod a+x /usr/local/emhttpd/webGui/event/starting/fetch_key chmod a+x /usr/local/emhttpd/webGui/event/started/delete_key chmod a+x /usr/local/emhttpd/webGui/event/stopped/fetch_key # Start the Management Utility /usr/local/sbin/emhttp & The actual fetch_key and delete_key scripts work fine, as when I chmod them manually and run, they work.
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
I've not even tried uploading. Fresh reboot, manually run rclone_mount, stop. Always fails 100%. I've not got to the bottom of it either, but will revert if I do. I was thinking maybe writing another script that checks if an upload if running, and if not, then run fusermount -uz on the rclone mounts, and then stop the array. Do you think that'll cause issues? Edit: Something along the lines of the below: #!/bin/bash ########################## ### fusermount Script #### ########################## RcloneRemoteName="google_drive_encrypted_vfs" RcloneMountShare="/mnt/user/XYZ/remote_storage" MergerfsMountShare="/mnt/user/XYZ/merged_storage" echo "$(date "+%d.%m.%Y %T") INFO: *** Starting rclone_fusermount script ***" while [[ -f "/mnt/user/appdata/other/rclone/remotes/$RcloneRemoteName/mount_running" ]]; do echo "$(date "+%d.%m.%Y %T") INFO: mount is running, sleeping" sleep 5 done while [[ -f "/mnt/user/appdata/other/rclone/remotes/$RcloneUploadRemoteName/upload_running" ]]; do echo "$(date "+%d.%m.%Y %T") INFO: upload is running, sleeping" sleep 15 done fusermount -uz "$MergerfsMountShare" fusermount -uz "$RcloneMountShare" echo "$(date "+%d.%m.%Y %T") INFO: ***rclone_fusermount script finished ***" exit
-
Encryption and auto-start
It's more of question of what if I'm unavailable to enter the passphrase, than not being able to. People reliant on the server would have to wait for me to enter the passphrase, whereas, I would prefer to automate this process with FTP or similar. Only downside, is I don't have a keyfile to follow the tutorials. Unless it's just a matter of echo "passphrase" > keyfile ? Edit: Indeed, that's the way.
-
Encryption and auto-start
How would one go on about auto-unlocking from a remote source if encryption was set-up with a passphrase?
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Has anyone had issues with Stopping/Rebooting/Shutting down the Array when rclone mount is active? I've been testing this for the day, and stopping the array after a fresh reboot (before I run rclone_mount) works fine. As soon as I run rclone_mount and I try and stop the array, it doesn't work. Syslogs May 2 17:34:15 XXX-XXX emhttpd: shcmd (440): rmdir /mnt/user May 2 17:34:15 XXX -XXX root: rmdir: failed to remove '/mnt/user': Device or resource busy May 2 17:34:15 XXX -XXX emhttpd: shcmd (440): exit status: 1 May 2 17:34:15 XXX -XXX emhttpd: shcmd (442): /usr/local/sbin/update_cron May 2 17:34:15 XXX -XXX emhttpd: Retry unmounting user share(s)... May 2 17:34:20 XXX -XXX emhttpd: shcmd (443): umount /mnt/user May 2 17:34:20 XXX -XXX root: umount: /mnt/user: target is busy. May 2 17:34:20 XXX -XXX emhttpd: shcmd (443): exit status: 32 May 2 17:34:20 XXX -XXX emhttpd: shcmd (444): rmdir /mnt/user May 2 17:34:20 XXX -XXX root: rmdir: failed to remove '/mnt/user': Device or resource busy May 2 17:34:20 XXX -XXX emhttpd: shcmd (444): exit status: 1 May 2 17:34:20 XXX -XXX emhttpd: shcmd (446): /usr/local/sbin/update_cron May 2 17:34:20 XXX -XXX emhttpd: Retry unmounting user share(s)... lsof gives nothing back root@XXX -XXX :~# lsof /mnt/* root@XXX -XXX :~# lsof /mnt/user/ The only way I can get the array to stop, is by manually running fusermount -uz /mnt/user/ Can someone shed some light please? Thanks
teh0wner
Members
-
Joined
-
Last visited