Everything posted by gyto6
-
Unraid 7.2.1 Upgrade seems to break Docker functionalities
Downgrade to the previous version if this is a production server to see if your containers can boot.
-
Moving a Disk from Array > Parity + Adding drives to Array
Don't forget the diagnostic file regarding this parity error
-
safest way to remove a hard drive from the system
Through the GUI. The new config works too.
-
Music keeps disappearing from my server
None, Jorge's description sums it all and else... I'll try to provoke this problem, voluntarily this time to explore and find answers.
-
Remembering @bonienl
I'm shocked regarding this news. Rest In Peace. Many'll miss you and thanks your work and your own being..
-
Unable to do a manual flash backup
You can simply use GUI file explorer, or SMB share to manually copy your USB key content.
-
Emergency - Unraid won't mount 2 existing drives without erazing existing data
Not used to it, so I'll wait for another advice as I'ld simply "Tools -> New Config" to simply import the array again. However, I don't see any damage.
-
Emergency - Unraid won't mount 2 existing drives without erazing existing data
Can you share your diagnostic file please?
-
Emergency - Unraid won't mount 2 existing drives without erazing existing data
Shutdown Unraid, invert failing disk SATA cables and boot. And share your Diagnostic file please.
-
Can I pass through a SATA controller to a VM to do an Firmware Update?
Remove the drives then? Else, you can use a liveUSB stick to boot on Windows directly.
-
safest way to remove a hard drive from the system
Good evening! You can simply go to "Tools -> New Config". Assign only the new drive, after, and you can remove the previous.
-
unable to delete a share
Did you stop the Array before editing?
-
Your server has detected hardware errors
I've founded this too : Nov 16 01:06:41 Pasiv Parity Check Tuning: Paused Scheduled Correcting Parity-Check (2.5% completed): Following drives overheated: disk4(43C) Is this disk4 the new drive? 43°c is not specially hot and kinda, is it an HDD or an SSD?
-
Your server has detected hardware errors
Nov 20 16:29:08 Pasiv root: Fix Common Problems: Error: Machine Check Events detected on your server Nov 20 16:29:08 Pasiv root: mcelog: ERROR: AMD Processor family 23: mcelog does not support this processor. Please use the edac_mce_amd module instead. Nov 20 16:29:08 Pasiv root: CPU is unsupported May you proceed an upgrade to your BIOS? It's a false positive seemly and may concerns Intel drivers used: https://forums.unraid.net/topic/72419-amd-processor-family-21-mcelog-does-not-support-processor/#findComment-897783 PS : I've concern regarding your zfs cache pool, but that's another matter.
-
Unraid no starting after reboot
Try to import each plugins folder one by one with a reboot. to notice wich plugin makes you not bootable.
-
Unraid no starting after reboot
Recreate without any data, boot, and check.
-
Unraid no starting after reboot
Did you create a vanilla USB Key without any data backed on it? Did you boot on UEFI or Legacy?
-
ZFS Rewrite Command?
You can get an kind of ETA with the -v argument but need to keep the web console opened. The -P argument shall come within 2.4.
-
Total Noob Broke ZFS
What a mess. @GRBHV5 Are you ready to recreate this pool properly? Could you supply 2 more nvme drives to speed up this pool? However, can you please share : ls /dev/disk/by-id/ Just to get an already prepared list of command for you, because I don't consider as a good practice to create pool with sdx names as you've no clue wich drive is concerned this way, and it's hardly exportable to another config.
-
Unraid 7.2.0 - FROM ZFS COMPRESS TO BTFRS. IT'S POSSIBLE?
Stop the array, so we're sure no depending files are locked in use and can be decompressed.
-
Unraid 7.2.0 - FROM ZFS COMPRESS TO BTFRS. IT'S POSSIBLE?
zfs set compression=none pool -r zfs rewrite -rv pool zfs rewrite -rv /mnt/pool Regarding ARC, this implies that you must keep a zfs pool with datas on it to be kept in RAM for read cache when a file is read/written.
-
Unraid 7.2.0 - FROM ZFS COMPRESS TO BTFRS. IT'S POSSIBLE?
Before doing so : zfs set primarycache=none pool -r zfs set compression=none pool -r zfs set direct=always pool -r zfs rewrite -rv pool So all your files shall be decompressed, ARC cache (ZFS proper cache within RAM) disabled, and you'll can give it another try. Else, if performances are still poor, you'll can move your datas already uncompressed peacefully.
-
Performance issues with Jdownloader decrypting onto ZFS
Don't forget this too @Slippin' Jimmy using the -r argument makes it recursive to all your dataset. But that's weird for a cache pool to have many dataset.
-
Performance issues with Jdownloader decrypting onto ZFS
When you edit this property, it only affects newly created files. Previous shall be decompressed after using zfs rewrite -rv (P argument to preserve files birthdate shall arrives with ZFS 2.4)
-
Performance issues with Jdownloader decrypting onto ZFS
Don't use ZFS as a cache drive as you're already dealing with read cache within ARC. Use L2ARC else if your RAM is eaten by ZFS ARC. Disable ARC on your cache pool, check ashift argument is correct, for NAND, it's usually 13. zfs set primarycache=none pool -r zfs set compression=none pool -r If cache is NVMe: zfs set direct=always pool -r