![]() |
2010-07-16
, 05:41
|
Posts: 7 |
Thanked: 1 time |
Joined on Jul 2010
|
#2
|
The Following User Says Thank You to TheOneWolf For This Useful Post: | ||
![]() |
2010-07-16
, 05:44
|
Posts: 7 |
Thanked: 1 time |
Joined on Jul 2010
|
#3
|
![]() |
2010-07-16
, 05:45
|
Posts: 161 |
Thanked: 85 times |
Joined on Feb 2010
|
#4
|
$ ssh username@laptop
$ scp filetocopy username@laptop:~/pathtowhere
rsync -auvz --recursive user@LAPTOP:syncfolder/ syncfolderonn900/
#! /bin/bash #to copy data from n900 2 laptop and vice-versa # usage: syncscript [source2dest] [secureunlocker] # example: syncscript l2w go! LAPTOP=127.0.0.1 # wrote here the ip of your laptop # here there is the "secure": means that if you want to really sync, # you'll have to append "go!" to the command. This way is easier #not screw up all the sys. and check what's going to be synced #before is too late. if echo "$2"|grep -q "go!" then SECURE="" else SECURE="--dry-run" fi #here is the rsync command: n2l to sync from n900 to laptop if echo "$1"|grep -q "n2l" then rsync -auvz --recursive $SECURE user@LAPTOP:syncfolder/ syncfolder/ elif echo "$1"|grep -q "l2n" # Same as else if then #to copy data from laptop 2 work rsync -auvz --recursive $SECURE syncfolder/ user@LAPTOP:syncfolder/ else echo "you must told me what you want to synchronize. n2l to copy from n900, or l2n to copy from laptop" fi
![]() |
2010-07-16
, 08:19
|
Posts: 282 |
Thanked: 18 times |
Joined on Mar 2010
|
#5
|
![]() |
2010-07-16
, 09:58
|
Posts: 992 |
Thanked: 738 times |
Joined on Jun 2010
@ Low Earth Orbit
|
#6
|
The Following User Says Thank You to kureyon For This Useful Post: | ||
![]() |
2010-07-16
, 10:32
|
Posts: 4,556 |
Thanked: 1,624 times |
Joined on Dec 2007
|
#7
|
The Following User Says Thank You to Laughing Man For This Useful Post: | ||
![]() |
2010-07-17
, 06:34
|
Posts: 282 |
Thanked: 18 times |
Joined on Mar 2010
|
#8
|
You don't need Petrovich. PR 1.2 came with the ability to share files from your file manager.
For wireless there's several solutions. SSH, FTP, or if you have python installed (extremely likely if you installed an app from extras) then there are python scripts that let you download and upload from the device.
![]() |
2010-07-17
, 06:56
|
Posts: 161 |
Thanked: 85 times |
Joined on Feb 2010
|
#9
|
![]() |
2010-07-17
, 07:11
|
Posts: 458 |
Thanked: 274 times |
Joined on Mar 2010
@ Finland
|
#10
|
how do i do it with Bluetooth?
how do i share files btw my phone and my laptop?
thanks