Retrieve data from Remote machine


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Retrieve data from Remote machine
# 1  
Old 06-01-2012
Retrieve data from Remote machine

Hello

Please I ask if it is possible to recover data that is stored on a remote machine that I access via ssh on a usb ? if so, how?

Thank you so much
# 2  
Old 06-01-2012
Code:
man scp

# 3  
Old 06-01-2012
On a USB what?
# 4  
Old 06-01-2012
I think he means he carries around putty or somesuch on the USB stick with him.

You can carry around pscp.exe too and use it like

Code:
pscp username@host:remote-file local-file


Last edited by Corona688; 06-01-2012 at 01:41 PM..
# 5  
Old 06-01-2012
I have two machines M1 and M2 (ubuntu). I connect to M2 from M1 via ssh I want to recover files from M2 on an usb (flash disk) connected to the machine M1
# 6  
Old 06-04-2012
scp, sftp et al use ssh protocol to connect. pscp is a form of scp, you can use the same on most any UNIX:
Code:
scp username@remote-host:remote-file local-file

You can also do something like this to transfer a folder:
Code:
ssh username@host tar -cf - /path/to/folder | tar -C /path/to/usbdrive/ -xf -

Or even just
Code:
ssh username@host cat /path/to/filename > local-filename

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with fetching the data from remote machine from my jumpbox(local machine)

Team, Presently i am running a script from my local box(i.e jumpbox) to all the remote machines.Basically fetching basic queries like pwd,mkdir,touch etc and i am able to successfully fetch it from my local machine.But when i want to check certain database related queries like the dbstat... (20 Replies)
Discussion started by: whizkidash
20 Replies

2. Red Hat

iptables applied in local machine, can't ssh remote machine after chain changed to DROP

I want to SSH to 192.168.1.15 Server from my machine, my ip was 192.168.1.99 Source Destination was UP, with IP 192.168.1.15. This is LAN Network there are 30 Machine's Connected to the network and working fine, I'm Playing around the local machine's because I need to apply the same rules in... (2 Replies)
Discussion started by: babinlonston
2 Replies

3. UNIX for Advanced & Expert Users

FTP While transfering files to local machine to remote machine

Hi Am using unix Ksh Am getting the problem while transferring zero size files through the script . When i transfer zero size files from local machine to remote machine manually i can able to do it . My question its beause of zero size files am not able to transfer through script ? or its... (2 Replies)
Discussion started by: Venkatesh1
2 Replies

4. Shell Programming and Scripting

More time to retrieve data from DB

Hi All, It takes around one hour to retrieve 3 lakhs data from DB. I feel this can be still more reduced, please help me in improvising the below code, to get it retrieve faster, atleast 30 to 45 minutes. sqlplus -s ${OCAU_DB_UNAME}/${OCAU_DB_UPSWD}@${OCAU_DB_NAME} > /apps/data/filedata.txt... (4 Replies)
Discussion started by: pattamuthu
4 Replies

5. UNIX for Advanced & Expert Users

Retrieve data and redirect to a file

How to write a shell script to retrieve datas from database after that this database are redirect to a excell sheet and then i got a mail that gives details about the database with the column name and data.. I m using oracle 9i... Thanks, Anup Das (2 Replies)
Discussion started by: anupdas
2 Replies

6. Red Hat

To find the LATEST file from a dir on REMOTE machine and SCP to local machine?

Hi All, URGENT - Please help me form a scipt for this: I need the LATEST file from a dir on REMOTE machine to be SCP'd to a dir on local machine. (and I need to execute this from local server) I know that the below cmd is used to find the LATEST file from a dir. But this command is not... (3 Replies)
Discussion started by: me_ub
3 Replies

7. Solaris

Re:Data transfer of data from xp machine to solaries8 machine

Hi all, can any one suggest how to transfer the data from xp machine to solaries8 machines when they are connected using cross cable. Thanks venky (3 Replies)
Discussion started by: venky_vemuri
3 Replies

8. Shell Programming and Scripting

Retrieve data from a file

Hello guys I want to retrieve two data from a file, like this: bash-2.03$ cat numtest 123456 123457 bash-2.03$ more ./test_num #!/bin/bash num1= num2= cnt=1 while read x do num${cnt}=$x cnt=$(($cnt+1)) done <$1 echo $num1 "\n" $num2 But when i executed this script, error... (2 Replies)
Discussion started by: tpltp
2 Replies

9. Programming

retrieve IP of local machine

Hi all, I am writing a program to retrieve the IP address or machine name of the local machine using C. Is there any C function that does this? ny clue will be of gr8 help!!! thanx a lot. (1 Reply)
Discussion started by: mridula
1 Replies

10. IP Networking

how to retrieve IP address of a machine

hi is there is any command that retrieves the IP address of a machine. Also is there any function in c that does the same. thankx (5 Replies)
Discussion started by: mridula
5 Replies
Login or Register to Ask a Question