Latest web development tutorials

comando di Linux ncftp

Linux comando Daquan Linux comando Daquan

comando di Linux ncftp viene utilizzato per trasferire i file.

FTP consente agli utenti di scaricare i file memorizzati sul server host, ma anche in grado di caricare i file all'host remoto è collocato.

NcFTP è leader in modalità testo del programma FTP, che include una varietà di funzioni, tra cui la velocità di visualizzazione di trasmissione, l'avanzamento del download, riprendere automatica, segnalibri live standard, attraverso firewall e server proxy.

Quando non si specifica un nome utente, ncftp comando cercherà automaticamente di connettersi utilizzando account anonimi server FTP anonimo, gli utenti non hanno bisogno di inserire il numero di conto e password.

grammatica

ncftp [主机或IP地址]

Descrizione Parametro:

  • Nome utente -u <nome utente> Specifica il server di login FTP
  • -p <password> Imposta password utente
  • <Numero di porta> -P Specificare la porta FTP, il valore predefinito è 21
  • -j <conto> conto designato
  • aiuto -h
  • -v informazioni sulla versione

Esempi

comando ncftp utilizzando la connessione del server FTP anonimo.

Ad esempio, si desidera collegare server in modo anonimo ftp.kernel.org e non vogliono inserire il nome utente anonimo, ecc, può essere utilizzato direttamente comando ncftp:

ncftp ftp.kernel.org

Ottenere le seguenti informazioni:

$ ncftp ftp.kernel.org #匿名连接ftp.kernel.org服务器  
NcFTP 3.2.1 (Jul 29, 2007) by Mike Gleason (http://www.NcFTP.com/contact/).  
#ncftp版权、版本等信息  
Copyright (c) 1992-2005 by Mike Gleason.  
All rights reserved.  
Connecting to 149.20.20.133... #连接服务器  
Welcome to ftp.kernel.org.  
Logging in... #匿名登录  
Welcome to the #欢迎信息  
LINUX KERNEL ARCHIVES  
ftp.kernel.org  
"Much more than just kernels"  
IF YOU'RE ACCESSING THIS SITE VIA A WEB BROWSER  
PLEASE USE THE HTTP URL BELOW INSTEAD!  
----> If you are looking for mirror sites, please go <---- 
----> to mirrors.kernel.org instead <---- 
This site is provided as a public service by the Linux Kernel  
Organization, a California nonprofit corporation. Bandwidth is  
provided by The Internet Software Consortium, Inc. Our servers are  
located in San Francisco and Palo Alto, California; Corvallis, Oregon;  
Amsterdam, Netherlands and Ume., Sweden; use in violation of any  
applicable laws strictly prohibited.  
Due to U.S. Exports Regulations, all cryptographic software on this  
site is subject to the following legal notice:  
This site includes publicly available encryption source code  
which, together with object code resulting from the compiling of  
publicly available source code, may be exported from the United  
States under License Exception "TSU" pursuant to 15 C.F.R. Section  
740.13(e).  
This legal notice applies to cryptographic software only. Please see  
the Bureau of Industry and Security (http://www.bis.doc.gov/) for more  
information about current U.S. regulations.  
Neither the Linux Kernel Organization, nor its sponsors make any  
guarantees, explicit or implicit, about the contents of this site.  
Use at your own risk.  
This site is accessible via the following mechanisms:  
FTP ftp://ftp.kernel.org/pub/  
HTTP http://www.kernel.org/pub/  
RSYNC rsync://rsync.kernel.org/pub/  
NFS and SMB/CIFS are no longer available.  
For comments on this site, please contact <[email protected]>.  
Please do not use this address for questions that are not related to  
the operation of this site. Please see our homepage at  
http://www.kernel.org/ for links to Linux documentation resources.  
Login successful.  
Logged in to ftp.kernel.org.  
ncftp / > 

Suggerimento: prompt dei comandi ncftp è "ncftp />", invece di ftp "ftp />".

Utilizzare il funzionamento dei comandi ncftp, scaricare il file.

comando FTP ncftp fondamentalmente la stessa, ad esempio, è possibile utilizzare il comando "cd" per accendere il server FTP nella directory corrente, utilizzare i "ls" comando per elencare il contenuto della directory corrente, utilizzare il comando "get" per scaricare directory README "/ pub" file, utilizzare il "quit" lasciare ncftp come. I risultati di gestione sono stati i seguenti:

ncftp / > pwd               #查看当前路径  
ftp://ftp.kernel.org        #当前路径为根目录  
ncftp / > ls                #查看当前目录列表  
bin/ for_mirrors_only/ pub/  
dev/ lib/ usr@  
etc/ lost+found/ welcome.msg@  
ncftp / > cd pub            #切换目录到pub 子目录  
Directory successfully changed.  
ncftp /pub > ls             #查看pub 的目录列表  
dist/ media/ scm/  
index.html RCS/ site/  
linux/ README software/  
lost+found/ README_ABOUT_BZ2_FILES tools/  
ncftp /pub > get README     #下载README 文件  
README: 1.87 KB 10.39 KB/s  
ncftp /pub > quit           #离开ncftp 

La differenza è che con il ftp, ncftp in questo momento se l'utente verrà richiesto di salvare il server FTP come segnalibro, in modo che al successivo accesso, l'utente può personalizzare le firme di libri, come segue:

You have not saved a bookmark for this site.  #离开提示信息  
Would you like to save a bookmark to:  
ftp://ftp.kernel.org/pub/  
Save? (yes/no) yes                            #确认是否保存  
Enter a name for this bookmark, or hit enter for "kernel": kernel #输入书签名  
Bookmark "kernel" saved. 

Linux comando Daquan Linux comando Daquan