Ubuntu vsftpd setup

简单的ubuntu下的ftp服务器架设介绍

1. 安装 vsftpd

sudo apt-get install vsftpd

2. 更改配置文件 vsftpd.conf

sudo vi /etc/vsftpd.conf

更新以下几项参数设置

anonymous_enable=NO
# 阻止匿名登陆

seccomp_sandbox=NO
# 新版本的vsftpd的sandbox不被支持会有 500 oops: child died 错误, 

更多参数设置参考链接 http://wiki.ubuntu.org.cn/Vsftpd

sandbox设置参考 http://delightlylinux.wordpress.com/2013/12/18/fixing-the-vsftpd-500-child-died-error-in-xubuntu-13-10/

3. 重启vsftpd让设置生效

sudo service vsftpd restart  

# 命令选项 包括 stop/start/restart    

4. 测试登录

ftp localhost
# localhost -> ip address or host name

根据提示输入用户及密码,即登录ubuntu系统的用户密码信息。

如果创建虚拟账户(指非系统登录用户)具体参考链接 http://blog.csdn.net/fafa211/article/details/8095081

5. 根目录设置。

默认状态下,ftp登录后会转向用户所在根目录/home/usrname/。 可以在/etc/vsftpd.conf配置文件里修改‘local_root‘属性改变。

sudo mkdir /home/test
sudo chmod 711 /home/test   ## 根据需要设定目录读写权限
sudo vi /etc/vsftpd.conf

在/etc/vsftpd.conf 加入配置参数

local_root=/home/test

别忘了重启vsftpd服务使设置生效

sudo service vsftpd restart

更多链接可以参考

http://wiki.ubuntu.org.cn/Vsftpd
http://blog.csdn.net/fafa211/article/details/8095081
http://os.51cto.com/art/201008/222036.htm

Ubuntu vsftpd setup

时间: 2024-11-25 17:20:38

Ubuntu vsftpd setup的相关文章

Ubuntu Software setup

title: Ubuntu 使用 tags: 新建,模板,小书匠 grammar_cjkRuby: true Copyright (C) @2018 Widic Filename: File-function: Cre_ID: @ Widic 2018-1-16 Mod_ID: [toc] 1 Syetem Setup 2 System Using 2.0 First to complete First to complete 2.1 Setup Relative Software 1.1 中文

ubuntu vsftpd

https://www.ostechnix.com/install-vsftpd-server-ubuntu-16-04-lts/ https://www.digitalocean.com/community/tutorials/how-to-set-up-vsftpd-for-a-user-s-directory-on-ubuntu-16-04

Ruby on Rails Session 1: How to Build a Ruby on Rails on the Ubuntu.

About Ruby on Rails Ruby on Rails is an application stack that provides developers with a framework to quickly create a variety of web applications. Ruby on Rails does take a little while to install on a virtual server, but luckily there are a lot of

ROS-Indigo版在Ubuntu上的安装

Ubuntu install of ROS Indigo We  are building Debian packages for several Ubuntu platforms, listed  below. These packages are more efficient than source-based builds and  are our preferred installation method for Ubuntu. If you need to install from s

fast.ai论坛大神环境配置流程

I set up my own Ubuntu 16.4 machine with a GTX 1060 -6GB (i wish i had gotten the 1070 with 8GB since it ran out of memory on the first lesson) After installing Ubuntu my setup was roughly the following: Install CUDA 8.0 and cuDNN https://developer.n

Ubuntu 配置vsftpd实现FTP服务器

0.vsftpd是啥玩意 都不知道安装了个啥东西,那就没意思了,所以先去了解下什么是vsftpd.vsftpd意思为"very secure FTP daemon(非常安全的FTP进程)",当然只有更安全没有最安全. 那它到底安全在哪里呢,主要体现在以下两点: 权限控制,vsftpd以一般用户登录,用户权限相对较小,对于系统就越安全,对于用户需要的系统级指令大部分被整合到vsftpd中了,用户不需要申请更高权限就足以完成绝大部分ftp指令:此外对于ftp本身内部的读写控制,vsftpd

Ubuntu 用vsftpd 配置FTP服务器

原文:Ubuntu 用vsftpd 配置FTP服务器 网上的文章好难懂啊..只想要简单粗暴,弄好能用就行啊,复杂的以后研究不行吗...折腾好久,其实弄出来能用不就这么点内容吗... 本文在Ubuntu Server 14.04 amd64系统测试. Made By:CSGrandeur 安装ftp sudo apt-get install vsftpd 配置vsftpd.conf sudo nano /etc/vsftpd.conf #禁止匿名访问 anonymous_enable=NO #接受

ubuntu上架设vsftpd

操作系统:ubuntu (GNU/Linux) 为了在机子上架设ftp服务器,我们需要安装ftp服务器软件.Linux下具有代表性的ftp服务器软件有Wu-FTP,ProFTP和Vsftp.Wu-FTP(Washington University FTP)由美国华盛顿大学开发.它的功能强大,配置较复制.由于开发时间较早,应用十分广泛,也因此成为黑客们主要的攻击目标.ProFTP针对Wu-FTP的弱项而开发,在安全性方面进行了改进,并提供了一些Wu-FTP没有的功能,大大简化了架设和管理FTP服务

ubuntu 14.04 下FTP服务器的搭建--锁定用户目录,解决vsftpd: refusing to run with writable root inside chroot()

FTP服务器的搭建,我要实现的需求是: 不允许匿名访问,因为我的机器不想让谁都能登录上来,随便获取文件, 需要锁定一个目录,因为在家里,我需要给媳妇下载一些电影 韩剧之类的东西,媳妇会来我机器下载,但是我不想让他随意操作我的东西. 万一删除我的配置文件,我就惨了(吐槽一下韩剧:媳妇问我,你都没看过韩剧怎么知道它不好看呢,我说:我没吃过屎 但是知道它一定不好吃!) 另外,需要本机也能访问,因为我要做一些关于FTP的测试.  不单独建立FTP用户,FTP也使用ubuntu桌面的用户进行登录和操作,