dlandon
Community Developer
-
Joined
-
Last visited
-
Currently
Viewing Forums Index
Everything posted by dlandon
-
Unassigned Devices - Managing Disk Drives and Remote Shares Outside of The Unraid Array
Yes, the exclusive shares will not show in a root share, but with changes in Samba, the recycle bin will not work with exclusive share symlinks in the root share.
-
Tips and Tweaks Plugin to possibly improve performance of Unraid and VMs
I made that change so it would be clear which driver was being used. I don't know why that doesn't work. Check that the file /flash/config/modprobe.d/amd-pstate-epp.conf exists and has the appropriate contents. The driver is not fully implemented yet, so it will not work.
-
Unassigned Devices - Managing Disk Drives and Remote Shares Outside of The Unraid Array
It is working for me. It may be something on your system. Post diagnostics.
-
Recycle Bin (vfs recycle) for SMB Shares
The logging in the recycle bin has been converted to inotify. There are several reasons that the logging was not working: Samba has changed files being deleted from 'unlink' to 'moved'. The new inotify watches the share .Recycle.Bins for files moved or created in those folders. After adding a new share, the recycle bin was not updating to add the recycle bin to the new share. Probably a few other issues also. All should be working now.
-
Tips and Tweaks Plugin to possibly improve performance of Unraid and VMs
Probably not for what Tips and Tweaks does. Yes, you will want to remove that entry to re-enable the the amd-pstate-epp driver. I will also have to make changes to Tips and Tweaks to handle changing the turbo mode.
-
Why are ports 445/139 open/listneing if SMB is disabled?
The ports may be open, but with SMB disabled, nothing shoud be responding on those the ports.
-
cannot get "vfs objects = full_audit" to work
There are two plugins that will partially do what you want. You will want to use the plugins and not modify files on your own. The two plugins are the Recycle Bin and File Activity plugins. The recycle Bin plugin can delete files and organize the files in the .Recycle.Bin by user using the %u parameter. The File Activity plugin will trach file activity, but does not track smb file activity separately by user. This is a really bad idea. There are several routines that manage the config file, and anything you do will interfere with smb and cause you problems.
-
Unassigned Devices - Managing Disk Drives and Remote Shares Outside of The Unraid Array
When looking at the diagnostics, I see the Multichannel feature of SMB is enabled. That feature requires two NICs and special setup to work properly. I suggest turning it off and see if it helps.
-
Tips and Tweaks Plugin to possibly improve performance of Unraid and VMs
After some research, it seems the turbo control is planned, but not ready yet for the amd-pstate-epp driver. In the meantime, you can disable the amd-pstate-epp driver using this procedure: Go to a command line and enter this command: 'echo "blacklist amd-pstate-epp" > /boot/config/modprobe.d/amd-pstate-epp.conf'. Reboot Unraid. You should see the ACPI CPU Freq driver that will allow turbo control.
-
Tips and Tweaks Plugin to possibly improve performance of Unraid and VMs
The 'amd_pstate' is new and the boost might not be implemented yet. Give me the output of this command: cat /sys/devices/system/cpu/amd_pstate/cpb_boost if that file is there, the boost should be configurable.
-
cannot get "vfs objects = full_audit" to work
Yes. Install the recycle bin plugin and set the the "Recycle Bin Parameters" for what you want to show for a deleted file. Click on the 'Help' icon in the upper right corner of the recycle bin page to see some options. Currently the logging is not working reliably because of some samba changes, but I will have that fixed soon.
-
cannot get "vfs objects = full_audit" to work
Why do you want to do that?
-
cannot get "vfs objects = full_audit" to work
I don't know what you are trying to do, but putting settings in the global section is not a good idea and will override any share settings. No.
-
Tips and Tweaks Plugin to possibly improve performance of Unraid and VMs
Give me the output of this command: ls /sys/devices/system/cpu/amd_pstate/
-
Tips and Tweaks Plugin to possibly improve performance of Unraid and VMs
That should mean turbo mode is off. I need the info from Unraid 7.0.
-
Tips and Tweaks Plugin to possibly improve performance of Unraid and VMs
Give me the output of this command: cat /sys/devices/system/cpu/cpufreq/boost
-
Tips and Tweaks Plugin to possibly improve performance of Unraid and VMs
Your screen shots show up as a tiny icon and not a screen shot. I don't think screen shots are showing properly in the forum right now. What I need is the driver information. In my case it is "Driver: Intel CPU Freq".
-
Unassigned Devices - Managing Disk Drives and Remote Shares Outside of The Unraid Array
Not that I know of. I can't help with a downloader as LT does not support downloading. Other users may be of some help.
-
Tips and Tweaks Plugin to possibly improve performance of Unraid and VMs
Your screen shots do not show. I believe the CPU Scaling Governor changed with the Linux update in 7.0 and I need to see a screen shot with the CPU Governor showing on the Tips and Tweaks page.
-
Tips and tweaks插件
The newer version of Unraid has an updated version of Linux and the CPU driver probably changed and Tips and Tweaks doesn't work with the new driver. On the right side of the page, show the CPU Scaling Driver for 7.0.
-
Unassigned Devices - Managing Disk Drives and Remote Shares Outside of The Unraid Array
You can assign a disk alias. Go to the disk settings (three gears icon) and change the disk name.
-
Rootshare missing?
I think you have enable disk shares as yes in global share settings. A root share won't work with disk shares enabled.
-
Tips and tweaks插件
Your processor does not support boost.
-
Unassigned Devices - Managing Disk Drives and Remote Shares Outside of The Unraid Array
Yes, use the UD unmount command and check the return code. It will be 'success' if it successfully unmounts the drive. Let UD unmount the disk and do the cleanup. A luks disk has to be closed as part of the unmount. If you don't do that you will get the above issue. Go to the UD page and click on the 'Help' icon and you will see how to use the UD 'rc.unassigned' command.
-
Recycle Bin (vfs recycle) for SMB Shares
Because of recent changes in Samba, some deleted files are not logged as being deleted but moved. This is actually a good thing if the file doesn't have to actually be copied to the .Recycle.Bin, but can be moved instead - a move is much faster. This causes the plugin logging to miss the fact that a file was deleted from a share. The actual file deletion (file going to the .Recycle.Bin) works, but is not always loggged. The Samba logging mechanism is not easy to work with and I am considering ditching it and possibly using an inotify on each .Recycle.Bin. I'm also considering dropping logging altogether, but I suspect this move might not be well received.