Announcement

Collapse
No announcement yet.

Mounting a NAS Share

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Mounting a NAS Share

    Hi:

    I'm running Intrepid and have a NAS drive with several folder which I would like to have mounted (similar to MS "map network drive" option.
    I can navigate to the folders via Dolphin which is enough for most things but I would like to have the folder which contains my iTunes library mounted so that Songbird can point to it.
    The Nas folder has no password set on it.

    I have create a mount point called backup in media and tried the following line in fstab

    //cygnus/Backup /media/backup cifs guest,uid=1000,iocharset=utf8,codepage=unicode,uni code 0 0

    and tried sudo mount -a

    but get

    mount error 5 = Input/output error
    Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)

    Can anyone advise what I am doing wrong?

    Thanks


    #2
    Re: Mounting a NAS Share

    In referring to
    Code:
    man fstab
    , which I do because I don't make many changes to fstab very frequently , the third field's entry (cifs) refers to the filesystem used by the device being mounted. I tried to do
    Code:
    man mount.cifs
    , but I don't have a man file for that file system. If that is the actual file name, then it must appear in the list of filesystems supported by your kernel found in
    Code:
    /proc/filesystems
    . If that filesystem is not there, then you can't mount it. There may be a way to incorporate that filesystem into a custom kernel, but that is beyond my ken.

    On the other hand, you indicate that the drive shows up in Dolphin. That being the case, the actual filesystem might be something other than cifs. If you can figure out the actual filesystem name, then just change your fstab entry and then try a manual
    Code:
     mount -a
    as a test.
    The next brick house on the left
    Intel i7 11th Gen | 16GB | 1TB | KDE Plasma 5.27.11​| Kubuntu 24.04 | 6.8.0-31-generic



    Comment

    Working...
    X