Newbie having problem with mounting network source

ODROID related support

Newbie having problem with mounting network source

Postby fuddyduddy » 19 Feb 2016, 14:56

hi

Complete SBC and ODROID newbie, and Linux ignoramus into the bargain :-)

release version: 0.4 (build: beta-20141216)

I'm using - or trying to - Minidlna (aka ReadyMedia) running on my NAS as my media server. In my NAS's web interface/gui -> NFS Server page I have set up RuneAudio running on my ODROID-C1+ to have "full access" to my minidlna-share on the NAS. RuneAudio is identified on my NAS by its IPS address (and in the RuneAudio gui I've named it "rune").

But when under <NAS MOUNTS> I try to mount it I continually get error messages, no matter how many varying syntaxes for IP address and remote directory I experiment with. Clearly my ignorance of Linux is causing me to get something very basic wrong.

Here's the url for my debug info:-
http://pastebin.com/VAmeJht7

I hope someone can pinpoint what I've done wrong or not done what I should have, and set me on the right path.
fuddyduddy
 
Posts: 41
Joined: 19 Feb 2016, 12:55
Location: Åland Islands

Re: Newbie having problem with mounting network source

Postby hondagx35 » 19 Feb 2016, 15:14

Hi

I try to mount it I continually get error messages,

Please post these error messages, they are not shown in your debug information.

Here is an example how to setup a smb share (NFS is nearly the same).
Image

Frank
User avatar
hondagx35
 
Posts: 3042
Joined: 11 Sep 2014, 22:06
Location: Germany

Re: Newbie having problem with mounting network source

Postby fuddyduddy » 19 Feb 2016, 16:45

Hi Frank

Thanks for the amazingly fast response.

Here's a sample of the kind of error-message I'm getting now (there have been differing patterns before, but this type has recurred the last few times):-
"mount.nfs: access denied by server while mounting 192.168.11.5:/minidlna "

(Sorry, I assumed that they would have shown-up in the debug info).
fuddyduddy
 
Posts: 41
Joined: 19 Feb 2016, 12:55
Location: Åland Islands

Re: Newbie having problem with mounting network source

Postby hondagx35 » 19 Feb 2016, 17:58

Hi fuddyduddy,

please try to play with the advanced settings.

nfs.png
nfs.png (24.43 KiB) Viewed 1987 times

For mounting my omv (OpenMediaVault) share i have to remove the "nfsvers=3" statement.

Frank
User avatar
hondagx35
 
Posts: 3042
Joined: 11 Sep 2014, 22:06
Location: Germany

Re: Newbie having problem with mounting network source

Postby fuddyduddy » 19 Feb 2016, 21:10

Frank

I mimicked your Advanced settings, and this time the error-message (yes, I still got one!) had altered to:-

" mount.nfs: an incorrect mount option was specified "

Does this give you any clues as to the problem's origin?
fuddyduddy
 
Posts: 41
Joined: 19 Feb 2016, 12:55
Location: Åland Islands

Re: Newbie having problem with mounting network source

Postby The Reverend » 19 Feb 2016, 21:25

hmmm...

try rw instead of ro but this really shouldnt matter
The Reverend
 
Posts: 18
Joined: 30 Jan 2016, 15:45

Re: Newbie having problem with mounting network source

Postby hondagx35 » 20 Feb 2016, 01:22

Hi,

we need more information about your NAS.

"mount.nfs: access denied by server while mounting 192.168.11.5:/minidlna "

Is "minidlna" the name of your shared folder?

Frank
User avatar
hondagx35
 
Posts: 3042
Joined: 11 Sep 2014, 22:06
Location: Germany

Re: Newbie having problem with mounting network source

Postby PeteB » 20 Feb 2016, 02:22

This MiniDLNA: ...?

https://help.ubuntu.com/community/MiniDLNA

Is that even compatible with Samba or NFS clients? I used it for a while on my Linux box at home as a DLNA/UPnP server for my smart TV and my old XBMC box. Not sure u can use that w. Rune Audio. (Kodi, yes)
PeteB
 
Posts: 421
Joined: 06 Feb 2016, 05:07

Re: Newbie having problem with mounting network source

Postby fuddyduddy » 20 Feb 2016, 11:19

Hi Frank

Most grateful for your help!

Yes, I'd been guessing that the problem most probably is linked with that name.

My NAS's firmware has MiniDLNA as one of the servers built into it and MiniDLNA itself has no gui; however the NAS's web interface has a configuration page for MiniDLNA which shows "values to be stored" with default values pre-entered, and also in its minidlna directory has a file named <minidlna.conf>

Code: Select all
# port for HTTP (descriptions, SOAP, media transfer) traffic
port=8200

# network interface to bind to (this is the only interface that will serve files)
#network_interface=eth0

# set this if you want to customize the name that shows up on your clients
friendly_name=MiniDLNA

# set this if you would like to specify the directory where you want MiniDLNA to store its database and album art cache
# fvdw do not change this setting when using in combination with fvdw firmware
db_dir=/share/1000/minidlna/database

# set this if you would like to specify the directory where you want MiniDLNA to store its log file
# fvdw do not change this setting when using fvdw firmware log file will be stored in same diectory as the database
#log_dir=/var/log

# this should be a list of file names to check for when searching for album art
# note: names should be delimited with a forward slash
album_art_names=Cover.jpg/cover.jpg/AlbumArtSmall.jpg/albumartsmall.jpg/AlbumArt.jpg/albumart.jpg/Album.jpg/album.jpg/Folder.jpg/folder.jpg/Thumb.jpg/thumb.jpg

# set this to no to disable inotify monitoring to automatically discover new files default is yes
inotify=yes
# notify interval in seconds default is 895 seconds
notify_interval=900

# set this to strictly adhere to DLNA standards# This will allow server-side downscaling of very large JPEG images
# which may hurt JPEG serving performance on (at least) Sony DLNA products
strict_dlna=yes

# set this to yes to enable support for streaming jpg and mp3 files to a TiVo supporting HMO
enable_tivo=no

# serial and model number the daemon will report to clients
# in its XML description
serial=12345678
model_number=1

# default presentation url is http address on port 80
presentation_url=http://192.168.11.5:8200/

# set this to the directory you want scanned
# if have multiple directories, you can have multiple media_dir= lines
# if you want to restrict a media_dir to a specific content type, you
# can prepend the type, followed by a comma, to the directory
# A for audio  (eg. media_dir=A,/home/jmaggard/Music)
# V for video  (eg. media_dir=V,/home/jmaggard/Videos)
# P for images (eg. media_dir=P,/home/jmaggard/Pictures)
(Note: "fvdw" is the name of the NAS's firmware)

You'll see that the file-path is /share/1000/minidlna. However, the default for "friendly name" is "MiniDLNA". On the firmware's configuration page the default entered for "Server name" is "MiniDLNA".

Is "minidlna" the name of your shared folder?


In a tab called "File Share Management" in my NAS's firmware all shared folders are listed (and shares can be added or deleted); there this particular share is named as "minidlna". However I suspect - though can no longer be certain - that that spelling may only reflect my own choice (of case, specifically) when I first added it as a shared folder).

(In Windows File Explorer as well the name is "minidlna" - but I don't suppose that matters one way or the other).
fuddyduddy
 
Posts: 41
Joined: 19 Feb 2016, 12:55
Location: Åland Islands

Re: Newbie having problem with mounting network source

Postby fuddyduddy » 20 Feb 2016, 11:23

The Reverend wrote:hmmm...

try rw instead of ro but this really shouldnt matter
I did, and it didn't :(
fuddyduddy
 
Posts: 41
Joined: 19 Feb 2016, 12:55
Location: Åland Islands

support RuneAudio Donate with PayPal

Next

Return to ODROID

Who is online

Users browsing this forum: No registered users and 0 guests