renegadex has asked for the wisdom of the Perl Monks concerning the following question:

Hi perl monkies!

Is there a module for perl to mount network shares as non root? I was eyeing on gvfs-mount and my only problem here is that I haven't found any way to include the username and password and domain on 1 single command pass using `` or system()

Mabuhay Civil Engineers! :D

Replies are listed 'Best First'.
Re: how to mount network shares
by Anonymous Monk on Jul 02, 2012 at 09:33 UTC

    Is there a module for perl to mount network shares as non root?

    I kinda doubt it :)  use autodie 'system'; system 'gvfs-mount', 'blah', 'blah', '--blah', ...;