![]() |
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!! :) |
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...
|
Re: MicroSD
Quote:
|
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...!!!
|
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 |
Re: MicroSD
LOL !! best explanation ever !! Sorry can't understand ya !!!
Cud u tell me that again step by step |
Re: MicroSD
Quote:
Type (or copy and paste): Code:
cd /home/user/MyDocs/ Type (or copy and paste): Code:
find . -name "*.jpg" -print -exec cp -R {} /media/mmc1 \; 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... |
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. |
Re: MicroSD
u aint kiddin when you said you're a noob..
|
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