how to remotely move a file ??? that mean how to move a file
one machine to another machine ???

Answers were Sorted based on User's Feedback



how to remotely move a file ??? that mean how to move a file one machine to another machine ???..

Answer / biswarup

By ftp

Is This Answer Correct ?    21 Yes 0 No

how to remotely move a file ??? that mean how to move a file one machine to another machine ???..

Answer / ruchi arora

Using the scp command, which mean "source copy"

Syntax:
scp source destination

Example:
Moving a file foo.txt from machine1 to machine2
scp foo.txt host@machine1:/

Is This Answer Correct ?    10 Yes 2 No

how to remotely move a file ??? that mean how to move a file one machine to another machine ???..

Answer / monu verma

rcp command

Is This Answer Correct ?    6 Yes 1 No

how to remotely move a file ??? that mean how to move a file one machine to another machine ???..

Answer / subbareddy kake

ftp:(File transfer protocal).It is useful to transfer file
from remote server to local machine.

rcp:(remote file copy).It is useful to transfer files from
one machine to another machine.
scp:(source copy).It useful to transfer files from one host
to another host

Is This Answer Correct ?    5 Yes 1 No

how to remotely move a file ??? that mean how to move a file one machine to another machine ???..

Answer / sailesh k

[atdev]/abcd/data/atdev $ ftp 70.24.12.410
Connected to 10.24.124.43.
220 cbx82526 FTP server (Revision 1.1 Version wuftpd-2.6.1
(PHNE_34306) Mon Mar 13 11:14:17 GMT 2006) ready.
Name (70.24.12.410:attest): attest
331 Password required for attest.
Password:
230 User atdev3 logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls -lrt
200 PORT command successful.
150 Opening ASCII mode data connection for /usr/bin/ls.
total 26560
-rwxr-x--- 1 atdev3 geneva 0 May 15 15:12
Lock
drwxrwxrwx 2 atdev3 geneva 96 May 15 15:12
ftp>mv inputfilename outputfile
ftp> bye
221-You have transferred 0 bytes in 0 files.
221-Total traffic for this session was 3958 bytes in 1
transfers.
221-Thank you for using the FTP service on cbh32526.
221 Goodbye.

Is This Answer Correct ?    3 Yes 0 No

how to remotely move a file ??? that mean how to move a file one machine to another machine ???..

Answer / prakash reddy

ftp,sftp,rcp,scp

Is This Answer Correct ?    3 Yes 0 No

how to remotely move a file ??? that mean how to move a file one machine to another machine ???..

Answer / nkambast

scp PATH_1/file_name user_name@machine_name2:PATH_2

PATH_1 :-- Where your files reside.
user_name :-- your login name.
machine_name2 :- Remote machine where you want to keep
(Paste) your files
PATH_2 :-- Where you want to paste the file

Is This Answer Correct ?    3 Yes 0 No

how to remotely move a file ??? that mean how to move a file one machine to another machine ???..

Answer / bhaskar

scp -R foldername root@172.34.1.11:/root/

Is This Answer Correct ?    2 Yes 0 No

how to remotely move a file ??? that mean how to move a file one machine to another machine ???..

Answer / ranjitha s

From Windows to Unix

c:\> ftp

ftp>open IPaddress

for ex:
ftp>open 10.13.80.98

ftp put filename
or
ftp send filename

From Unix to Windows

ftp get filename
or
ftp recv filename

(file shud be presend in the directory )

Is This Answer Correct ?    1 Yes 0 No

how to remotely move a file ??? that mean how to move a file one machine to another machine ???..

Answer / sricharan

Differnce between cp and mv.

cp: holds the copy of the file in both source and
destination servers.
mv: removes the file in the source and get created on the
destination server.

scp: server copy is one method to copy from one server to
other.
Syntax: scp username@ip:/path/filename ./

Note: ./ representing as required file is copying in pwd.
We need to execute this command from the destination server.

sftp: simple file transfer protocol
syntax: sftp ip address
prompts for passwd
go for required path and use get command to copy the
required file.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Unix Commands Interview Questions

can we use cat command as an editor ..???

12 Answers   TCS,


what is the difference between pipe(|) and tee command..

3 Answers   Cap Gemini, Rolta,


what does a process mean?

5 Answers   Infosys,


Sorry to all Technical person for mistake of Question. Now i am post currect question Why copied file permission is changed in destination. When i give all permission i.e 777 to file and copy that to other location in destination the permission is 755. But if give permission 555 in destination that file permission is 555 and if give permission 444 to file after copy in destination the file permission is 444. These all are happening in normal user. How the umask value is calculate here really i am not understand. Please write the proper answer. Thanks in Advance

3 Answers   TCS,


in a growing log file how will you see the 1st 99 lines?

7 Answers  






Name the unix command to find how many days the server has been up.

0 Answers  


if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command use in unix? plz send this question.

28 Answers   TCS,


What is the use of find command in unix?

0 Answers  


How to copy multiple files and directories into some other directory?

4 Answers  


What is the syntax of grep command and what is its use?

6 Answers  


what is the function of grep command?

4 Answers  


which script will invoke first ,when /etc/init.d starts

1 Answers  


Categories