Results 1 to 10 of 10

Thread: Mapping my QNAP TS-212 NAS

  1. #1
    Join Date
    Nov 2007
    Beans
    150
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Mapping my QNAP TS-212 NAS

    Hi all. A little help here please.

    As the titles suggests, I have a QNAP TS-212. The nice easy "map network drive" feature on Virista works surprisingly well, but I can't get it mapped on Ubuntu.

    I've followed this guide, but when I run the first command, sudo apt-get install nfs-kernel-server nfs-common portmap, I get the following:

    Code:
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    Note, selecting 'rpcbind' instead of 'portmap'
    The remainder of the commands on this post relate to portmap, not rpcbind. Where do I go from here?
    CPU AMD Athlon X2 Processor 5000+ 2.61GHz) | RAM 2 x 2GB (667MHz DDR2) | Hard Drive 500GB SATA (OS) & 1.5TB SATA (data) | Graphics nVidia GeForce 8600GT 256MB | Sound Soundblaster X-Fi Xtreme

  2. #2
    Join Date
    Nov 2007
    Beans
    150
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Mapping my QNAP TS-212 NAS

    bump. Anyone with any ideas?
    CPU AMD Athlon X2 Processor 5000+ 2.61GHz) | RAM 2 x 2GB (667MHz DDR2) | Hard Drive 500GB SATA (OS) & 1.5TB SATA (data) | Graphics nVidia GeForce 8600GT 256MB | Sound Soundblaster X-Fi Xtreme

  3. #3
    Join Date
    Jul 2012
    Location
    /tropics/islands/statia
    Beans
    275
    Distro
    Kubuntu 12.04 Precise Pangolin

    Re: Mapping my QNAP TS-212 NAS

    Coincidentally, I installed and configured NFS today on a home-brew NAS (EEEPC 701 with external USB drive) and came across the same mention about portmap.
    However, all I had to do was edit /etc/exports and start the server and it worked for me.
    So just try following all steps except the ones that relate to portmap and see if it works.

    DISCLAIMER: I did not bother with any security, since this runs on a small home network and is not accessible from the Internet.

  4. #4
    Join Date
    Nov 2007
    Beans
    150
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Mapping my QNAP TS-212 NAS

    Just getting the following:

    Code:
    lewis@Arcadia:~$ sudo mount //192.168.0.10 /HomeNAS
    mount: wrong fs type, bad option, bad superblock on //192.168.0.10,
           missing codepage or helper program, or other error
           (for several filesystems (e.g. nfs, cifs) you might
           need a /sbin/mount.<type> helper program)
           In some cases useful info is found in syslog - try
           dmesg | tail  or so
    CPU AMD Athlon X2 Processor 5000+ 2.61GHz) | RAM 2 x 2GB (667MHz DDR2) | Hard Drive 500GB SATA (OS) & 1.5TB SATA (data) | Graphics nVidia GeForce 8600GT 256MB | Sound Soundblaster X-Fi Xtreme

  5. #5
    Join Date
    May 2006
    Location
    Milwaukee,WI
    Beans
    6,280
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: Mapping my QNAP TS-212 NAS

    are you sure your shares are being shared via NFS? You mention previous drive mapping in Vista working flawlessly which leads me to believe that they are SAMBA shares from your QNAP. You would use the CIFS protocol, not NFS.

  6. #6
    Join Date
    Jul 2012
    Location
    /tropics/islands/statia
    Beans
    275
    Distro
    Kubuntu 12.04 Precise Pangolin

    Re: Mapping my QNAP TS-212 NAS

    Sharp observation, Dannyboy79. He wrote about "Virista" and I thought that was some Windows software that is unknown to me.
    But indeed, when he is mapping drives to Windows (Vista), he'll be using SMB and should look at samba for Linux.

    (People actually use Vista )

  7. #7
    Join Date
    Nov 2007
    Beans
    150
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Mapping my QNAP TS-212 NAS

    No, I don't use Vista. It came with my PC, and I've kept it for the occasions I play video games away from my console, or for occasions such as this . I am not attempting to access the NAS from Vista and Ubuntu simultaneously. In otherwords, whilst Vista may be using SMB, The NAS is able to use SMB and NFS (and indeed FTP and AFP)

    QNAP's own documentation states:

    Quote Originally Posted by QNAP
    Linux Users

    On Linux, run the following command:

    mount -t nfs <NAS IP>:/<Network Share Name> <Directory to Mount>

    For example, if the IP address of the NAS is 192.168.0.1, to connect to the network share “public” under the /mnt/pub directory, use the following command:

    mount -t nfs 192.168.0.1:/public /mnt/pub
    So, I've tried both following the instructions in the above linked post, and running
    Code:
     mount -t nfs 192.168.0.10/web /HomeNAS
    and variations thereof, ie
    Code:
    mount -t nfs 192.168.0.10/web /HomeNAS
    mount -t nfs 192.168.0.10:/web /HomeNAS
    mount -t nfs //192.168.0.10/web /HomeNAS
    mount -t nfs //192.168.0.10:/web /HomeNAS
    mount -t nfs 192.168.0.10/public /HomeNAS
    mount -t nfs 192.168.0.10/Multimedia /HomeNAS
    etc

    Can someone please enlighten me as to the use of NFS/Samba? I assumed that these were software packages I needed to install on the PC I'm using (ie the Vista/Ubuntu dual-boot box) to access the NAS - not on the NAS itself. You can see that QNAP's own instructions indicate an NFS command and, as stated earlier, both are available. The instructions for Vista essentially just state to right-click "computer", click "map network drive" then enter the IP and username/password, so I see no reason why it should be so difficult on Linux?
    Last edited by lewisskinner; November 30th, 2012 at 04:34 AM.
    CPU AMD Athlon X2 Processor 5000+ 2.61GHz) | RAM 2 x 2GB (667MHz DDR2) | Hard Drive 500GB SATA (OS) & 1.5TB SATA (data) | Graphics nVidia GeForce 8600GT 256MB | Sound Soundblaster X-Fi Xtreme

  8. #8
    Join Date
    May 2006
    Location
    Milwaukee,WI
    Beans
    6,280
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: Mapping my QNAP TS-212 NAS

    are you certain the share name is web and is called web for NFS? I know your QNAP is capable of CIFS/SMB, AFP(3.1), NFS, FTP, HTTP, HTTPS but it's not setup by default I wouldn't think since you have to choose which folders to share and by which protocol. It may be called web but only for SAMBA? Yes, you're correct in saying that you need to install the correct software within Ubuntu. The QNAP already has all the correct software BUT it's probably not configured by default.

    Since you can obviously can mount it in Vista is the one reason I know for certain that it is sharing that certain folder as SAMBA (SMB).

    Have you tried this to see what shares are available?
    Code:
    smbclient -L 192.168.0.10
    You may have to install smbfs
    Code:
    sudo apt-get install smbfs
    before you can use smbclient. Also, is the username on your ubuntu machine the same as the username you used for credentials when connecting on Vista?

    On a side note what are the permissions on the folder /HomeNAS? I would suggest creating the folder within /mnt/ versus having it at the root level.
    Last edited by dannyboy79; November 30th, 2012 at 03:39 PM.

  9. #9
    Join Date
    Apr 2012
    Beans
    7,256

    Re: Mapping my QNAP TS-212 NAS

    ... agree with the above, OTOH if you *do* want to do it via NFS then it should be as simple as

    1. install nfs-common

    Code:
    $ sudo apt-get install nfs-common
    2. check the export list from your server

    Code:
    ~$ showmount -e 192.168.1.127
    Export list for 192.168.1.127:
    /c/home    *
    /c/media   *
    /c/public  *
    /c/backup  *
    /USB_HDD_1 *
    3. make a suitable mount point

    Code:
    sudo mkdir -p /mnt/nas-01/public
    4. mount the chosen export

    Code:
    $ sudo mount -t nfs 192.168.1.127:/c/public /mnt/nas-01/public/
    (fwiw the share name is 'public' and 192.168.1.127:/public also works - not sure that is always the case, I don't really understand the share naming conventions)

    This works for my Netgear ReadyNAS anyhow - hope this helps

  10. #10
    Join Date
    Nov 2007
    Beans
    150
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Mapping my QNAP TS-212 NAS

    Thanks both of you. /web is a share drive, and I've set the others. The advice from steeldriver got me mounted - thank you!
    CPU AMD Athlon X2 Processor 5000+ 2.61GHz) | RAM 2 x 2GB (667MHz DDR2) | Hard Drive 500GB SATA (OS) & 1.5TB SATA (data) | Graphics nVidia GeForce 8600GT 256MB | Sound Soundblaster X-Fi Xtreme

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •