F5F Stay Refreshed Software Operating Systems Create a local folder on Mount NAS as a Debian installation.

Create a local folder on Mount NAS as a Debian installation.

Create a local folder on Mount NAS as a Debian installation.

E
EnderSponge_
Member
225
01-13-2016, 07:42 AM
#1
Hi, I'm looking for a way to connect your Debian MediaServer to your Omniverse NAS. The software isn't showing network mounts as storage options, so I was wondering if using symlinks in Linux could help. That way, I could create a shortcut on my NAS that looks and works locally.
E
EnderSponge_
01-13-2016, 07:42 AM #1

Hi, I'm looking for a way to connect your Debian MediaServer to your Omniverse NAS. The software isn't showing network mounts as storage options, so I was wondering if using symlinks in Linux could help. That way, I could create a shortcut on my NAS that looks and works locally.

W
WikiliZ
Member
196
01-13-2016, 01:18 PM
#2
Typically, installing drives on Linux involves setting up a local directory and connecting a remote storage device into it. For instance, you can follow the guide at https://askubuntu.com/a/1050499. Linux also allows symlinks, which has been available for a long time, far beyond the desktop versions of Windows.
W
WikiliZ
01-13-2016, 01:18 PM #2

Typically, installing drives on Linux involves setting up a local directory and connecting a remote storage device into it. For instance, you can follow the guide at https://askubuntu.com/a/1050499. Linux also allows symlinks, which has been available for a long time, far beyond the desktop versions of Windows.

K
knivies
Member
60
01-13-2016, 06:37 PM
#3
When it's a Samba share, the command should resemble: mount -t cifs //IP address/path /destinationpath -o username -p password, allowing read and write. This was something I recall from my less than perfect memory when trying to bypass restrictions, so verify the syntax carefully—it may differ across distributions but should guide you correctly. Adjust the CIFS if you're using Apple or Unix shares.
K
knivies
01-13-2016, 06:37 PM #3

When it's a Samba share, the command should resemble: mount -t cifs //IP address/path /destinationpath -o username -p password, allowing read and write. This was something I recall from my less than perfect memory when trying to bypass restrictions, so verify the syntax carefully—it may differ across distributions but should guide you correctly. Adjust the CIFS if you're using Apple or Unix shares.

M
M4b4ebYT
Junior Member
7
02-02-2016, 11:37 AM
#4
You're likely aiming for NFS, as most NAS devices run Linux or BSD. This setup is common and supported.
M
M4b4ebYT
02-02-2016, 11:37 AM #4

You're likely aiming for NFS, as most NAS devices run Linux or BSD. This setup is common and supported.

V
Verloh
Member
71
02-02-2016, 06:47 PM
#5
I didn't know the network, so I avoided making assumptions. That line comes from about ten years ago when FileZilla didn’t write to anything except local storage on a mixed network laptop with limited space. It was a makeshift solution, but it works well for getting a network share by command and changing settings like read-only or other types.
V
Verloh
02-02-2016, 06:47 PM #5

I didn't know the network, so I avoided making assumptions. That line comes from about ten years ago when FileZilla didn’t write to anything except local storage on a mixed network laptop with limited space. It was a makeshift solution, but it works well for getting a network share by command and changing settings like read-only or other types.

G
Gaspoda
Member
246
02-03-2016, 01:24 AM
#6
I've faced similar challenges when trying to determine the proper permissions. I initially used SMB, thinking NFS would be easier to manage, but once I got it right, NFS really shined. The biggest issue I encountered was on MacOS, which struggled significantly with anything other than native MacOS shares because Apple's SMB extensions didn't integrate well with SAMBA.
G
Gaspoda
02-03-2016, 01:24 AM #6

I've faced similar challenges when trying to determine the proper permissions. I initially used SMB, thinking NFS would be easier to manage, but once I got it right, NFS really shined. The biggest issue I encountered was on MacOS, which struggled significantly with anything other than native MacOS shares because Apple's SMB extensions didn't integrate well with SAMBA.

D
DrBrokenBones
Senior Member
378
02-09-2016, 05:01 PM
#7
Attempted to mount the NAS drive using sudo. The command executed successfully for reading files, but I’m unsure about the access permissions or what’s missing.
D
DrBrokenBones
02-09-2016, 05:01 PM #7

Attempted to mount the NAS drive using sudo. The command executed successfully for reading files, but I’m unsure about the access permissions or what’s missing.

F
Factions_
Junior Member
19
02-15-2016, 03:11 AM
#8
To ensure proper access, you must either provide credentials or supply a UID and GID. CIFS doesn't allow POSIX permissions, so use the alternative command below:

sudo mount -t cifs //NAS/Storage /mnt/NAS -o x-systemd.automount,x-systemd.idle-timeout=1min,rw,user,username=plermpel,password=[PASSWORD],iocharset=utf8,vers=2.0

After successful setup, add the line to /etc/fstab for automatic mounting:

//NAS/Storage /mnt/NAS cifs x-systemd.automount,x-systemd.idle-timeout=1min,rw,user,username=plermpel,password=[PASSWORD],iocharset=utf8,vers=2.0 0 0

It's a good idea to use systemd-automounts for network devices; they prevent issues if the device becomes unavailable.
F
Factions_
02-15-2016, 03:11 AM #8

To ensure proper access, you must either provide credentials or supply a UID and GID. CIFS doesn't allow POSIX permissions, so use the alternative command below:

sudo mount -t cifs //NAS/Storage /mnt/NAS -o x-systemd.automount,x-systemd.idle-timeout=1min,rw,user,username=plermpel,password=[PASSWORD],iocharset=utf8,vers=2.0

After successful setup, add the line to /etc/fstab for automatic mounting:

//NAS/Storage /mnt/NAS cifs x-systemd.automount,x-systemd.idle-timeout=1min,rw,user,username=plermpel,password=[PASSWORD],iocharset=utf8,vers=2.0 0 0

It's a good idea to use systemd-automounts for network devices; they prevent issues if the device becomes unavailable.

A
aloyark
Member
161
02-16-2016, 09:24 AM
#9
I'm feeling really frustrated. I've spent hours trying to figure this out, but I just don't have enough experience with Linux to get it right. I know I'm not the best at this, especially compared to what I've done on Windows, where I feel pretty confident. Still, I keep running into these annoying problems every time I try something. Mounting with UID and GID works but doesn't show any files. NFS is the same. I changed permissions and ownership, but it doesn't work. Even giving myself root privileges helps with local stuff, but I can't mount shares without sudo or write to them. Symlinks don't seem to help either. It's so confusing—why is it so hard when you just want to mount a share as a network folder? Could someone please give me a simple step-by-step guide on how to do this? Thank you.
A
aloyark
02-16-2016, 09:24 AM #9

I'm feeling really frustrated. I've spent hours trying to figure this out, but I just don't have enough experience with Linux to get it right. I know I'm not the best at this, especially compared to what I've done on Windows, where I feel pretty confident. Still, I keep running into these annoying problems every time I try something. Mounting with UID and GID works but doesn't show any files. NFS is the same. I changed permissions and ownership, but it doesn't work. Even giving myself root privileges helps with local stuff, but I can't mount shares without sudo or write to them. Symlinks don't seem to help either. It's so confusing—why is it so hard when you just want to mount a share as a network folder? Could someone please give me a simple step-by-step guide on how to do this? Thank you.

K
kevvouna
Member
54
02-16-2016, 03:41 PM
#10
I finally got it to function. I had to adjust the permissions using SSH directly on the NAS, not because the regular mount and Windows issues disappeared, but just how things worked out.
K
kevvouna
02-16-2016, 03:41 PM #10

I finally got it to function. I had to adjust the permissions using SSH directly on the NAS, not because the regular mount and Windows issues disappeared, but just how things worked out.