Active Topics

 


Reply
Thread Tools
Posts: 282 | Thanked: 18 times | Joined on Mar 2010
#1
hi huys
how do i share files btw my phone and my laptop?

thanks
 
Posts: 7 | Thanked: 1 time | Joined on Jul 2010
#2
there are a # of ways. you can do wired where the computer accesses your internal mmc. unpluged, phone sees it; pluged, computer sees it. You can do it wirelessly between the 2 by sending and recieving or having a shared folder on your laptop via bluetoth. you can connect wirelessly(phone)and wireless/ed(computer) by way of FTP. Finally, you can connect wirelessly(phone) and wire less/ed(laptop) by bittorrent, email, a 3rd party storage site, any P2P service. Hope I helped.
 

The Following User Says Thank You to TheOneWolf For This Useful Post:
Posts: 7 | Thanked: 1 time | Joined on Jul 2010
#3
PS
I can tell you more about any one, like how and what
 
Posts: 161 | Thanked: 85 times | Joined on Feb 2010
#4
depending on how much you like using the console, you can choose between ssh + rsync, try with the graphical interface of rsync (I saw something like this in app manager). or via usb.

further explanations:
ssh is secure shell. has the big advantage of being usable on almost everything except iphone, and gives you REAL power. after installing on n900 the package openssh (client or both is up to you. just remember that one of the two must run the server daemon). you can access the laptop from n900 by tiping:
Code:
$  ssh username@laptop
for coping files:
Code:
$ scp filetocopy username@laptop:~/pathtowhere
rsync is "oversimplyfiyng" a tool to automate the last command.
it work as: (from laptop to n900, run on n900.)
Code:
 rsync -auvz --recursive user@LAPTOP:syncfolder/ syncfolderonn900/
Here I paste a little script that I use to sync between laptop & work, or n900 & laptop.. useful if you use static IPs.
should be run from home folder, and you must create syncfolder...

Code:
#! /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

Last edited by erniadeldesktop; 2010-07-17 at 06:55. Reason: added script
 

The Following 2 Users Say Thank You to erniadeldesktop For This Useful Post:
Posts: 282 | Thanked: 18 times | Joined on Mar 2010
#5
sorry guys i was talking about wireless and Bluetoth :-)
how do i do it?
 
Posts: 992 | Thanked: 738 times | Joined on Jun 2010 @ Low Earth Orbit
#6
Originally Posted by andrew_85 View Post
sorry guys i was talking about wireless and Bluetoth :-)
Wireless what erniadeldesktop said, and search these forums for winscp
Bluetooth install petrovich
 

The Following User Says Thank You to kureyon For This Useful Post:
Posts: 4,556 | Thanked: 1,624 times | Joined on Dec 2007
#7
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.
__________________
Originally Posted by ysss View Post
They're maemo and MeeGo...

"Meamo!" sounds like what Zorro would say to catherine zeta jones... after she slaps him for looking at her dirtily...
 

The Following User Says Thank You to Laughing Man For This Useful Post:
Posts: 282 | Thanked: 18 times | Joined on Mar 2010
#8
Originally Posted by Laughing Man View Post
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.
how do i do it with Bluetooth?
 
Posts: 161 | Thanked: 85 times | Joined on Feb 2010
#9
Originally Posted by andrew_85 View Post
how do i do it with Bluetooth?
I've no clue, but I think will take ages...
 
Posts: 458 | Thanked: 274 times | Joined on Mar 2010 @ Finland
#10
Originally Posted by andrew_85
how do i do it with Bluetooth?
Firstly you have to have a bluetooth dongle (or inbuild bluetooth, usually this is the case in laptops). When that is in order you have to make your computer and N900 a pair (this process depeds from the OS you are using). After that you just have to open your filemanager and long press the file you want to share and select Share>Send trough Bluetooth and then select your computer from the list. When you want to send a file from your computer to your N900 just right-click the file from your computer and select Send>Bluetooth device (Windows). For help with other OS'es just ask.
 
Reply


 
Forum Jump


All times are GMT. The time now is 12:18.