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用户 ...
随机推荐
- DB2 JDBC
官方文档: http://www-01.ibm.com/support/knowledgecenter/SSEPGG_10.1.0/com.ibm.db2.luw.apdv.java.doc/src/ ...
- SQL Update:使用一个表的数据更新另一张表
表结构 功能 用表B的数据(mc列)更新表A的mc列 SQL Server update A SET A.mc = b.mc FROM A ,B WHERE A.bmbh = B.bmbh and A ...
- shell生成指定范围内的随机数
#!/bin/bash read -p "请输入起始数:" min read -p "请输入终止数:" max if [ $min -gt $max ] the ...
- PHP+Apache+Zend Studio+MySql+Navicat+phpAdmin
本文章介绍整个PHP开发环境的搭建 数据库:MySql 5.5.50 数据库软件:Navicat 11.1.20和phpAdmin 4.6.5.1任选 php库:PHP 7.0.13 服务器:Apa ...
- ubuntu与centos安装软件的不同点总结
ubuntu与redhat系列的linux操作系统安装软件区别是很大的.下表列出了两者之间的对比.
- 域用户执行金蝶K/3报错解决方法
自从上星期测试加域意外将公司考勤系统整出事后,就再也不敢在物理机测试了. 装好虚拟机和装好金蝶K/3系统后,被这条报错信息折腾了好几天,一方面是不熟悉该软件,另一方面是几乎搜不到相关的文章. 一.问题 ...
- [django]django+post+ajax+highcharts使用方法
直接代码展示: view.py文件代码 from django.http import JsonResponse #django ajax部分 def ajax_kchart(request): ti ...
- 第一次在Django上编写静态网页
新建一个Python Django工程: Win+R进入cmd命令界面,并cd到指定工程目录下,比如我的工程目录是E:\wamp\Apache24\www\ 输入E: 跳转E盘 输入cd wamp\A ...
- Linux 系统中僵尸进程
Linux 系统中僵尸进程和现实中僵尸(虽然我也没见过)类似,虽然已经死了,但是由于没人给它们收尸,还能四处走动.僵尸进程指的是那些虽然已经终止的进程,但仍然保留一些信息,等待其父进程为其收尸.配图源 ...
- C语言中结构体赋值问题的讨论
今天帮师姐调一个程序的BUG,师姐的程序中有个结构体直接赋值的语句,在我印象中结构体好像是不能直接赋值的,正如数组不能直接赋值那样,我怀疑这个地方有问题,但最后证明并不是这个问题.那么就总结一下C语言 ...