Access remote NAS from MediaHub

Hey there,

I have a remote NAS accessible via smb on the internet,
It is “mounted” as a network drive in my files on my Rocky Linux, but I can’t find a way to access it through my Flame’s MediaHub/Explorer.
Is there any way to do so ? It’d be so helpful.

Thanks !

That sounds like a terrible idea, but where ever the path it is mounted on your machine is, that is where you browse too.

1 Like

My issue is that i can only find the path in the following format when checking properties or the address bar : smb://abc.abc.com/folder/file.png

And Flame isn’t accepting this address

So two things. When you say ‘mounted’ is it actually permanently mounted? Most of us create a folder called /Volumes and then mount network drives to that via the ‘mount’ commandline or /etc/fstab.

If you do that, you shouldn’t have to type in smb://abc…

It’s possible that the MediaHub is using other networking commands beyond basic smb to check access to the drives that don’t get through whatever vpn you setup.

But first I would make sure that it’s mounted locally, and shows up in ‘df -h’.

The reason most folks use /Volumes vs. /mnt is that it mirrors file paths on Mac, so if you switch systems, the paths will stay intact.

1 Like

Oh okay,
It’s not properly mounted, I just right clicked on the folder and clicked mount,
I guess it’s only kind of bookmarking it.

So I can mount it with the mount command into a “Volume” folder, and I put the url to the nas ?

Yes, you would have to run some this:

sudo mount -t cifs -o user=username,uid=1000,gid=1000 //Host/Name /Volumes/Name

‘username’ is your user name on the NAS
‘host’ is the domain name of the NAS, or you can put the IP address in
‘Name’ is volume you’re mounting from the NAS, and also a local mount point you created

Once you run this, it will ask you for the local password for sudo, and then will prompt you for the password for your NAS login

This you will have to every time you boot and login into your Flame.

Alternatively you can add a line to the file /etc/fstab that will automatically mount it at boot. I don’t have it handy at the moment though.

3 Likes

It’s perfect, thanks for your help !

1 Like