maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Maemo 5 / Fremantle (https://talk.maemo.org/forumdisplay.php?f=40)
-   -   MicroSD - How to move music, photos, etc. to the card? (https://talk.maemo.org/showthread.php?t=75328)

n0ak 2011-07-29 17:06

MicroSD - How to move music, photos, etc. to the card?
 
I have 2gb MicroSD memmory card for my n900! I bought it just becouse my usb port is broken, and all I want is to put all the pictures music and videos on my MicroSD card is that possible .. If it is could u tell me how to do it ..
Thanks guys!! :)

funkmunk 2011-07-29 17:12

Re: MicroSD
 
U can move the file from the EMMC to the memory card from the default file manager...Click the drop down in the file manager...

n0ak 2011-07-29 17:16

Re: MicroSD
 
Quote:

Originally Posted by funkmunk (Post 1060694)
U can move the file from the EMMC to the memory card from the default file manager...Click the drop down in the file manager...

Thank you ! :) But could u tell me step by step what shud I do . Im noob in these things. Do I have to download this app (emmc) ?

funkmunk 2011-07-29 17:18

Re: MicroSD
 
No EMMC is ur internal memory...Open the File Manager & next to its name u will see a arrow head. Click on that and it will show u the option to move. Then just select the files & click move & ur done...!!!

trlopes1974 2011-07-29 17:24

Re: MicroSD
 
Assuming that you have all your pictures somewhere inside MyDocs...
open Xterm (ctrl+alt+x) and execute:
cd /home/user/MyDocs/
find . -name "*.jpg" -print -exec cp -R {} /media/mmc1 \;


videos:
find . -name "*.mp4" -print -exec cp -R {} /media/mmc1 \;


substitute "*.mp4" and "*.jpg" for other filetypes


EDIT: You can also connect via bluetooth and browse your phone mem via windows explorer

n0ak 2011-07-30 09:21

Re: MicroSD
 
LOL !! best explanation ever !! Sorry can't understand ya !!!
Cud u tell me that again step by step

TomJ 2011-07-30 10:36

Re: MicroSD
 
Quote:

Originally Posted by n0ak (Post 1061023)
LOL !! best explanation ever !! Sorry can't understand ya !!!
Cud u tell me that again step by step

Press the shift, control and X keys at the same tiume. This launches the XConsole, which is basically a program that allows you to type in commands.

Type (or copy and paste):
Code:

cd /home/user/MyDocs/
and press enter. This tells the console to move to the directory in which your photos etc are likely to be stored.

Type (or copy and paste):
Code:

find . -name "*.jpg" -print -exec cp -R {} /media/mmc1 \;
and press enter. This looks for jpg files 9picutes) and copies them to the memory card. (Probably; the syntax is unfamiliar to me, but it looks plausible and certainly won't do anything harmful).

The other option is to launch File Manager, which is built in. Play with it a bit; it should be fairly obvious how to use it...

tuxsavvy 2011-07-30 10:53

Re: MicroSD
 
The `find' syntax is relatively easy to understand once you are familiar with it.
find . means find anything that is in PWD (Present Working Directory) and usually recursively. Whatever outputs it find will be outputted via standard output (stdout) with full path to the file for instance: /home/user/MyDocs/DCIM/test.jpg
-name means to search based on the filename. In the cases above for example with "*.jpg" and *.mp4", *.jpg means any file matching the extension jpg. However many windows users tend to have filenames such as: holiday on the beach.jpg, linux behaves much like UNIX in this case and would parse each space as a new line. Simply put it would then become:
holiday
on
the
beach.jpg. This output usually would prevent other UNIX-like tools from being able to copy the file because it does not exist. To enclose it in quotations like " for instance prevents such cases from above happening. One way to alleviate that is to replace spaces with underscore _ markings.
-exec means to execute a program of user's choice, in which this case it is to copy. -R is recursively.
{} are whatever the output find prints out to stdout is handled by -exec which is cp -R.
\; are to exit any escaping control characters, without it, find will wait for the user to exit it by hand should there be any escaping control characters.

An example with that command above, say for example you have: beach 1.jpg, beach 2.jpg, beach 3.jpg residing in: /home/user/MyDocs/pictures. That command will basically copy: /home/user/MyDocs/pictures/beach 1.jpg, /home/user/MyDocs/pictures/beach 2.jpg and /home/user/MyDocs/pictures/beach 3.jpg into /media/mmc1.

The file manager way is the way I would not personally use especially if you have lots and lots of files you want to reallocate for instance. Sure, you can do it by hand which will take you lots of time or you can simply learn to use linux CLI and enjoy having the nifty powerful command line tools do all the work for you.

fahadj2003 2011-07-30 16:07

Re: MicroSD
 
u aint kiddin when you said you're a noob..

trlopes1974 2011-07-30 22:32

Re: MicroSD
 
just use the bluetooth option and ujse your windows explorer to navigate n900 memory... I think,in your case, it will be safer.


All times are GMT. The time now is 16:40.

vBulletin® Version 3.8.8