![]() |
2011-07-31
, 00:39
|
Banned |
Posts: 778 |
Thanked: 337 times |
Joined on Jun 2010
|
#11
|
![]() |
2011-07-31
, 13:20
|
Posts: 1,258 |
Thanked: 672 times |
Joined on Mar 2009
|
#12
|
The Following User Says Thank You to shadowjk For This Useful Post: | ||
![]() |
2011-07-31
, 14:00
|
Posts: 87 |
Thanked: 46 times |
Joined on Nov 2010
@ lisbon, portugal
|
#13
|
The Following 2 Users Say Thank You to trlopes1974 For This Useful Post: | ||
![]() |
2011-08-03
, 11:37
|
Posts: 122 |
Thanked: 2 times |
Joined on Jul 2010
@ Latvia, Ireland
|
#14
|
![]() |
2011-08-03
, 11:41
|
|
Posts: 1,411 |
Thanked: 1,330 times |
Joined on Jan 2010
@ Tatooine
|
#15
|
So the problem is I don't have an USB port for my n900 it's broken so I can't put the files from the copmuter on my phone or other way. So i bought MicroSD card 2 gb do do it..
But there seem to be a problem with x-terminal when I type in this.
Guys told me that this command is for putting all image files to MicroSD card.. See post here ______ http://talk.maemo.org/showthread.php?t=75328
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 \;
Above in the RED when I type in this x-term says
find: unrecognized: -exec
BusyBox v1.10.2 (debian 3:1.10.2.legal-losso30+0m5) multi-call binary
Usage: find [PATH...] [EXPRESSION]
Help me please guys I realy need to put my all files PICS VIDEOS etc.. into my memory card,.. So that I can put my phone into service.. And I can be sure that my files are not lost.. Thanks I will realy appreciate ur answers
for x in *.jpg; do mv $x /media/mmc1/ ; done
The Following 2 Users Say Thank You to jedi For This Useful Post: | ||
![]() |
2011-08-03
, 11:55
|
Posts: 1,680 |
Thanked: 3,685 times |
Joined on Jan 2011
|
#16
|
So the problem is I don't have an USB port for my n900 it's broken so I can't put the files from the copmuter on my phone or other way. So i bought MicroSD card 2 gb do do it..
But there seem to be a problem with x-terminal when I type in this.
Guys told me that this command is for putting all image files to MicroSD card.. See post here ______ http://talk.maemo.org/showthread.php?t=75328
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 \;
Above in the RED when I type in this x-term says
find: unrecognized: -exec
BusyBox v1.10.2 (debian 3:1.10.2.legal-losso30+0m5) multi-call binary
Usage: find [PATH...] [EXPRESSION]
Help me please guys I realy need to put my all files PICS VIDEOS etc.. into my memory card,.. So that I can put my phone into service.. And I can be sure that my files are not lost.. Thanks I will realy appreciate ur answers
find . -name "*.jpg" -print | xargs cp -R {} /media/mmc1 \;
find . -name "*.jpg" -print | xargs -I{} cp "{}" /media/mmc1
![]() |
2011-08-03
, 13:57
|
Posts: 122 |
Thanked: 2 times |
Joined on Jul 2010
@ Latvia, Ireland
|
#17
|
![]() |
2011-08-03
, 14:01
|
Posts: 1,680 |
Thanked: 3,685 times |
Joined on Jan 2011
|
#18
|
The Following 2 Users Say Thank You to vi_ For This Useful Post: | ||
![]() |
2011-08-03
, 14:03
|
Posts: 122 |
Thanked: 2 times |
Joined on Jul 2010
@ Latvia, Ireland
|
#19
|
How about you look at the solutions provided to you in the thread you first asked this question?
![]() |
2011-08-03
, 14:08
|
Posts: 1,680 |
Thanked: 3,685 times |
Joined on Jan 2011
|
#20
|
find . -name "*.jpg" -print0 | xargs -0 -I {} cp {} /media/mmc1
The Following 3 Users Say Thank You to vi_ For This Useful Post: | ||