Display MoreI run OMV5 on an ancient armel NAS that still does the job. I've turned off the SMB encryption to help the CPU. Even then, the SMB performance is about half the speed of Netatalk (30 vs 60+ MB/s).
For that reason, I've decided to install Netatalk manually. The good news is that the installation is so simple the lack of a plug-in is no big deal.
Let's assume you have a running OMV5 with existing shared folder(s) with the correct access rights. All you need to do as root is:
1. "apt install netatalk" to install all the necessary packages
2. "nano /etc/netatalk/afp.conf" to create the configuration file. Below is an example config file to be adjusted based on your needs.
CodeDisplay More[Global] hostname = NAS - AFP spotlight = no [Share1] path = /srv/dev-disk-by-label-data/Share1 [Share2] path = /srv/dev-disk-by-label-data/Share2 [Share3] path = /srv/dev-disk-by-label-data/Share3 [TimeMachine] path = /srv/dev-disk-by-label-data/timemachine time machine = yes
3. "systemctl restart netatalk" to take the new config into account
Done!
Just to confirm that this is working with OMV 6 . Both the normal shares and the TimeMachine shares are working. I like it a lot because:
- I can easily set a quota for a Timemachine share!!!
- It is a lot faster than SMB, to list content of shares and reading content
- Easily enable or disable Spotlight for a specific share.
Here is my config file afp.conf
[Global]
hostname =myHomeNAS
spotlight = no
mimic model = RackMac
[film]
path = /srv/[...]/Film
[myshare]
path = /srv/[...]/PersonalShare
spotlight = yes
[TimeMachine-macmini]
path = /srv/[...]/TimeMachine/macmini
time machine = yes
vol size limit = 250000
[TimeMachine-mbp]
path = /srv/[.../TimeMachine/mbp
time machine = yes
vol size limit = 250000
Display More
cheers