mounting NAS partition?

Discussion in 'Linux' started by lauro, Sep 26, 2008.

  1. lauro

    lauro

    Joined:
    Aug 1, 2008
    Messages:
    3
    Likes Received:
    0
    Hi,

    I have a USB drive with my partitions (WGT634U/share/partitionX) attached to my router (Netgear WGT634U Linux based) and I want to access them from my Acfer One with Limpus.

    Which is the easyest way to mount them at startup?

    I'm confused about NFS, Samba, Cifs, etc. Which client service is already there in the standard installation?

    thanks, Lauro
     
    lauro, Sep 26, 2008
    #1
  2. lauro

    rbil

    Joined:
    Aug 14, 2008
    Messages:
    730
    Likes Received:
    0
    Location:
    The Wet Coast, Canada
    You could create a directory in your home directory and do a cifs mount to that.

    mkdir /mnt/home/netlink

    Then mount to it:

    sudo mount -t cifs //192.168.1.xxx/[sharedfolder] /mnt/home/netlink

    Not sure how your NAS is setup. You might need to provide a username and workgroup name? If so, something like this:

    sudo mount -t cifs -o user=[username],workgroup=[workgroup name] //192.168.1.xxx/[sharedfolder] /mnt/home/netlink

    The typical way of making this happen on a Linux box is to create an entry in /etc/fstab , but with this Lin(m)pus distro, the network never comes up when fstab is being first read and mounts created. Guess one could make that one of the autostart programs? Not sure, haven't done it.

    Cheers.
     
    rbil, Sep 27, 2008
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.