How to use FTP
Forward from: https://www.server-world.info/en/note?os=CentOS_7&p=ftp&f=2
Thanks for your share!
| [1] | Install FTP Client. |
| [root@dlp ~]#
yum -y install lftp
|
| [2] | The connection with root account is prohibited by default, so access with an common user to FTP Server. |
|
# lftp [option] [hostname]
[redhat@dlp ~]$ lftp -u cent www.srv.world
Password: # password of the user
lftp cent@www.srv.world:~> # show current directory on FTP server
lftp cent@www.srv.world:~> pwd
ftp://cent@www.srv.world # show current directory on local server
lftp cent@www.srv.world:~> !pwd
/home/redhat # show files in current directory on FTP server
lftp cent@www.srv.world:~> ls
drwxr-xr-x 2 1000 1000 23 Jul 19 01:33 public_html # show files in current directory on local server
lftp cent@www.srv.world:~> !ls -l
total 12 # change directory
lftp cent@www.srv.world:~> cd public_html
lftp cent@www.srv.world:~/public_html> pwd
ftp://cent@www.srv.world/%2Fhome/cent/public_html # upload a file to FTP server
# "-a" means ascii mode ( default is binary mode )
lftp cent@www.srv.world:~> put -a redhat.txt
22 bytes transferred ls
drwxr-xr-x 2 1000 1000 23 Jul 19 01:33 public_html # upload some files to FTP server
lftp cent@www.srv.world:~> mput -a test.txt test2.txt
22 bytes transferred ls
drwxr-xr-x 2 1000 1000 23 Jul 19 01:33 public_html # download a file from FTP server
# "-a" means ascii mode ( default is binary mode )
lftp cent@www.srv.world:~> get -a test.py
416 bytes transferred # download some files from FTP server
lftp cent@www.srv.world:~> mget -a test.txt test2.txt
20 bytes transferred # create a directory in current directory on FTP Server
lftp cent@www.srv.world:~> mkdir testdir
mkdir ok, `testdir' created ls
drwxr-xr-x 2 1000 1000 23 Jul 19 01:33 public_html # delete a direcroty in current directory on FTP Server
lftp cent@www.srv.world:~> rmdir testdir
rmdir ok, `testdir' removed ls
drwxr-xr-x 2 1000 1000 23 Jul 19 01:33 public_html # delete a file in current directory on FTP Server
lftp cent@www.srv.world:~> rm test2.txt
rm ok, `test2.txt' removed ls
drwxr-xr-x 2 1000 1000 23 Jul 19 01:33 public_html # delete some files in current directory on FTP Server
lftp cent@www.srv.world:~> mrm redhat.txt test.txt
rm ok, 2 files removed ls
drwxr-xr-x 2 1000 1000 23 Jul 19 01:33 public_html # execute commands with "![command]"
lftp cent@www.srv.world:~> !cat /etc/passwd
root:x:0:0:root:/root:/bin/bash # exit
lftp cent@www.srv.world:~> quit
221 Goodbye. |
How to use FTP的更多相关文章
- 8.仿阿里云虚拟云服务器的FTP(包括FTP文件夹大小限制)
平台之大势何人能挡? 带着你的Net飞奔吧!:http://www.cnblogs.com/dunitian/p/4822808.html#iis 原文:http://dnt.dkill.net/Ar ...
- Hyper-V无法文件拖拽解决方案~~~这次用一个取巧的方法架设一个FTP来访问某个磁盘,并方便的读写文件
异常处理汇总-服 务 器 http://www.cnblogs.com/dunitian/p/4522983.html 服务器相关的知识点:http://www.cnblogs.com/dunitia ...
- 阿里云学生优惠Windows Server 2012 R2安装IIS,ftp等组件,绑定服务器域名,域名解析到服务器,域名备案,以及安装期间错误的解决方案
前言: 这几天终于还是按耐不住买了一个月阿里云的学生优惠.只要是学生,在学信网上注册过,并且支付宝实名认证,就可以用9块9的价格买阿里云的云服务ECS.确实是相当的优惠. 我买的是Windows S ...
- win7下利用ftp实现华为路由器的上传和下载
win7下利用ftp实现华为路由器的上传和下载 1. Win7下ftp的安装和配置 (1)开始->控制面板->程序->程序和功能->打开或关闭Windows功能 (2)在Wi ...
- Java实现FTP文件与文件夹的上传和下载
Java实现FTP文件与文件夹的上传和下载 FTP 是File Transfer Protocol(文件传输协议)的英文简称,而中文简称为"文传协议".用于Internet上的控制 ...
- centos下开启ftp服务
如果要ftp访问linux需要安装ftp服务,vsftpd是Linux下比较好的的FTP服务器. 一.检查安装vsftp //检查是否安装vsftpd rpm -qa | grep vsftpd // ...
- 解决开启服务器防火墙导致ftp不能连接的问题
在防火墙设置的"高级"选项卡中的"网络连接设置"--"本地连接"--"设置"中添加了"FTP服务器" ...
- centos6.5 nginx-1.8.0和ftp搭建图片服务器
一.Nginx的安装步骤 1.Nginx安装环境: gcc: 安装nginx需要先将官网下载的源码进行编译,编译依赖gcc环境,如果没有gcc环境,需要安装gcc:yum install gcc-c+ ...
- Jenkins配置MSBuild实现自动部署(MSBuild+SVN/Subversion+FTP+BAT)
所要用到的主要插件: [MSBuild Plugin] 具体操作: 1.配置MSBuild的版本 [系统管理]->[Global Tool Configuration]->[MSBuild ...
- [CentOs7]搭建ftp服务器(2)——添加用户
摘要 上篇文章完成了ftp服务器的安装与匿名访问的内容,当然出于安全的考虑是不允许匿名访问服务器的,所以就有了本篇的内容 ,为ftp服务器添加用户,用改用户进行访问. vsftpd添加用户 FTP用户 ...
随机推荐
- 【转载】PHP性能优化干货
PHP优化对于PHP的优化主要是对php.ini中的相关主要参数进行合理调整和设置,以下我们就来看看php.ini中的一些对性能影响较大的参数应该如何设置. # vi /etc/php.ini (1) ...
- iis6上使用.htaccess文件,ISAPI_Rewrite的安装及使用
在Apache上很有用的.htaccess文件在IIS上就没有,要想实现类似的跳转功能可以使用ISAPI_Rewrite来代替,这是一个专门为IIS设置的工具,目的就是代替.htaccess实现很多功 ...
- imcs初探
imcs简介 https://github.com/knizhnik/imcs 翻译过来是在内存上的列存储,在对于一张'静态'的表计算方面很有优势,在许多聚合运算中都有使用线程并行计算,而且其中使用了 ...
- Hive官方手册翻译(Getting Started)
翻译Hive官方文档系列,文中括号中包含 注: 字样的,为我自行标注的,水平有限,翻译不是完美无缺的.如有疑问,请参照Hive官方文档对照查看. 内容列表 Cloudera制作的Hive介绍视频 ...
- 用html5 js实现浏览器全屏
项目中需要将后台浏览器的窗口全屏,也就是我们点击一个按钮要实现按F11全屏的效果. 在HTML5中,W3C制定了关于全屏的API,就可以实现全屏幕的效果,也可以让页面中的图片,视频等全屏目前只有goo ...
- AD设置板子原点
- awk-笔记
语法形式: awk [options] 'script' var=value file1 [file...] awk [options] -f scriptfile var=value file [f ...
- Netruon 理解(12):使用 Linux bridge 将 Linux network namespace 连接外网
学习 Neutron 系列文章: (1)Neutron 所实现的虚拟化网络 (2)Neutron OpenvSwitch + VLAN 虚拟网络 (3)Neutron OpenvSwitch + GR ...
- hdu1521 排列组合(指数型母函数)
题意: 有n种物品,并且知道每种物品的数量ki.要求从中选出m件物品的排数. (全题文末) 知识点: 普通母函数 指数型母函数:(用来求解多重集的排列问题) n个元素,其中a1,a2, ...
- runv nslistener源码分析
nslistener的作用实质上就是将新的namespace里的veth网卡的配置信息通过proxy进程传输出来,并且利用该信息对tap进行相同的配置,最终用tap模拟新的namespace里的vet ...