vccw icon indicating copy to clipboard operation
vccw copied to clipboard

NFS ?

Open fredericpfisterer opened this issue 7 years ago • 3 comments

I've found out that if you switch to NFS you get a speed bump in term of performance.

All you need to do is replace these two lines in your vagrantfile :

config.vm.synced_folder ".", "/vagrant",:mount_options => ['dmode=755', 'fmode=644'] config.vm.synced_folder _conf['sync_folder'], _conf['document_root'], :create => "true", :mount_options => ['dmode=755', 'fmode=644'] by config.vm.synced_folder ".", "/vagrant", type: "nfs" config.vm.synced_folder _conf['sync_folder'], _conf['document_root'], type: "nfs"

I'm wondering why it's not setup by default.

fredericpfisterer avatar Oct 29 '16 20:10 fredericpfisterer

Does it work for Windows user?

miya0001 avatar Oct 30 '16 01:10 miya0001

Good question. I guess not. Maybe it could be an option in the conf file ?

fredericpfisterer avatar Oct 30 '16 07:10 fredericpfisterer

Maybe it could be an option in the conf file ?

Thanks, I will try when I have a moment.

miya0001 avatar Nov 08 '16 08:11 miya0001