Results 1 to 7 of 7

Thread: How to mount a remote server

  1. #1
    Join Date
    Jan 2013
    Beans
    3

    How to mount a remote server

    Hello,

    Is ther any way to mount a directory on a remote server using ubunto 12.10?

    Thanks.

    lior

  2. #2
    Join Date
    Nov 2008
    Location
    Maine
    Beans
    1,126
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: How to mount a remote server

    curlftpfs, http://curlftpfs.sourceforge.net/
    Theres actualy alot of ways. What are you trying to do?
    are you loging in via a remote protocol, or accessing web based folders?
    What are you trying to do after mounting?
    ~Conradin~

  3. #3
    Join Date
    Jul 2009
    Beans
    516
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: How to mount a remote server

    As the previous poster said there are various forms of networked filesystems, it just depends on what you want to do. They include

    NFS - native networking filesystem for Linux
    CIFS - uses Samaba to provide windows networking support
    WebDAV - uses a web server, i.e. Apache
    FTP - pretty common
    SSH/SSHFS - easiest way to move files about, can also mount via SSHFS
    Mark your thread as [SOLVED], use Thread Tools on forum page.

  4. #4
    Join Date
    Jan 2013
    Beans
    3

    Re: How to mount a remote server

    Hi,

    Thanks for the reply.
    I'm trying to access a remote server to gain alow me to install an application from it.

  5. #5
    Join Date
    Nov 2008
    Location
    Maine
    Beans
    1,126
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: How to mount a remote server

    do you need login credentials or can you down load the file directly with something like wget? Do you know the path of the remote files you need?
    wget is probably the best program in all of linux for getting files from servers, but without more info its hard to say how to use it.

    can you be more specific?

    heres an example of downloading a file, where I know the path to the download, using wget:
    Code:
    wget 130.111.192.241/fcc_10.014_all.deb
    ~Conradin~

  6. #6
    Join Date
    Jan 2013
    Beans
    3

    Re: How to mount a remote server

    Hi,

    Iknow the path on the server.
    The issue is i want to mount the driver since it requires domain\Username & Password.

    Once I will be able to mount the driver on the remote server i wil be able to go to the installation path and install the application on my VBox.

  7. #7
    Join Date
    Feb 2007
    Location
    West Hills CA
    Beans
    10,044
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: How to mount a remote server

    Make a local directory: (Open a terminal)

    Code:
    cd
    mkdir MyRemoteServerDirectory
    sudo mount Server:/Home/YourUserName/DirectoryofInterest MyRemoteServerDirectory
    cd MyRemoteServerDirectory
    -------------------------------------
    Oooh Shiny: PopularPages

    Unumquodque potest reparantur. Patientia sit virtus.

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
  •