Need a FTP SERVER Program FREE

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Need a FTP SERVER Program FREE
# 1  
Old 11-20-2012
Need a FTP SERVER Program FREE

I need a FTP SERVER program for using in ubuntu, Do you know any for free? ps: there will be no internet connection so, vsftp will not work. need a tool (like filezilla but filezilla has no server version for unix ubuntu) that has to be installation package to extract in it.
# 2  
Old 11-20-2012
# 3  
Old 11-20-2012
Quote:
Originally Posted by F@NTOM
ps: there will be no internet connection so, vsftp will not work.
There is no special kind of networkless FTP. FTP requires a network.
# 4  
Old 11-20-2012
Quote:
Originally Posted by Corona688
There is no special kind of networkless FTP. FTP requires a network.
there is a network between two machines but no internet connections only two of them will talk each other
# 5  
Old 11-20-2012
I see no reason vsftp wouldn't work, then. proftpd is also an option.

you could also use scp/sftp (part of the ssh service).
# 6  
Old 11-29-2012
I also recommend vsftp it shall work on your network even without internet connection. To install it:
Code:
sudo apt-get install vsftpd

By default it will let anonymous connection, files shall be located at: /home/ftp

You can change configuration here: /etc/vsftpd.conf (after editing the file restart the daemon).

Last edited by netwalker; 11-29-2012 at 04:31 PM..
# 7  
Old 03-08-2013
Proftpd and vsftpd good.
I also like pure-ftpd.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Free() - Program getting aborted.

I am trying to learn C and while trying out some code, the program is getting aborted while I am calling free(). Here is the code: #include <stdlib.h> #include <stdio.h> void print_by_ptr(char **str) { printf("<%s>\n",*str); printf("Now I am modifying the str.\n"); *str =... (3 Replies)
Discussion started by: chacko193
3 Replies

2. Red Hat

Implement FTP server on RHEL server without using FTP client

We have RHEL 5.8 in our environment, I had a query whether we can implement an FTP server using vsftpd package and Linux configurations like setsebool without using any external FTP clients like FileZilla etc. I am very confused on this. The FTP functionalities that should be present are download &... (3 Replies)
Discussion started by: RHCE
3 Replies

3. Shell Programming and Scripting

FTP Program

Hi all, I have a script in 5 servers that looks like this: (collector.sh) #!/usr/bin/sh cat /var/log/messages | grep -i nscmd > nscmd_output cat /var/log/messages | grep -i sshd | grep -i accepted > sshd_output sleep 3 cat nscmd_output sshd_output | sort > user_activity sleep 2 echo... (2 Replies)
Discussion started by: rymnd_12345
2 Replies

4. UNIX for Dummies Questions & Answers

Program: How to FTP logs from a Server to Desktop

Hi guys, Good day! Anyone there could suggest on how can I create a program that will get (ftp) the logs I need from a remote Server (running in Linux) into my Desktop (running in Windows 7). For Perl program suggestions, FYI that I'm using Active Perl version. The reason why I need this one is... (2 Replies)
Discussion started by: rymnd_12345
2 Replies

5. HP-UX

[Solved] Unable to rename file in ftp server .Net:FTP perl

Hello All, I am trying to connect to ftp server and get the files. Also i need to rename the file in other ftp dir. rename method is not allowing me to rename the file in other dir. When i tried copy command by using net::FTP:FILE then perl says it is not installed. Can some body help me to... (2 Replies)
Discussion started by: krsnadasa
2 Replies

6. Programming

How to get free disk space size in C/C++ program( Solaris system)

How to get free disk space size in C/C++ program( Solaris system)? Is there any standard function or system function? Just like "df" or "getdfree" in Linux. (4 Replies)
Discussion started by: yidu
4 Replies

7. BSD

configuring ftp and nfs on free bsd

I have just installed freebsd on one of my computer in my apartment< Which IO intend to turn into a file and local mail server for my network. How does one install the ftp deamon in bsd. How does one configure nfs for shareing dfiles betwenn FreeBSD, Ubuntu (linux) and Mac OsX Leopard? Or... (1 Reply)
Discussion started by: FloridaBSD
1 Replies

8. Shell Programming and Scripting

ftp script not able to connect to ftp server.

I have the following ftp script to get files from a remote location. However, on running the script I find that I am not even able to connect to ftp server. I am able to connect to ftp server using other GUI ftp tools like WS_FTP using the same IP. IP used here is a dummy IP. What can go... (3 Replies)
Discussion started by: gram77
3 Replies

9. Programming

C FTP program

Hi, Can somebody help me with this problem. I was ask to make a C Program that can FTP file file both downloading and uploading file in remote server. How can I do this, or is there any FTP library I can use for this one. I am using HP Unix 11.0 (1 Reply)
Discussion started by: cjediknight
1 Replies

10. UNIX for Dummies Questions & Answers

ftp program

does anybode know about a ftp program to be run under unix like (for example) ws_ftp.exe and where to get it? Want to run it on a (remote) server... Thanks! (3 Replies)
Discussion started by: paost712
3 Replies
Login or Register to Ask a Question