Active Topics

 



Notices


Reply
Thread Tools
Posts: 256 | Thanked: 98 times | Joined on Jan 2010
#1
hi there

sorry if its been asked before , iam a bit of a n900 and linux newb , trying to get the most out of my device after moving from symbian s60 that ive used and hacked for around the last 10 years

ive seen many threads that use xterm to move files between folders etc which can be a bit confusing (iam trying to learn lol but its so new)

i was wandering if there was a possibillity of a file manager that has access to areas like xterm does

this way moving files wouldnt involve using command in xterm which would maybe make things alot easier for newbie users and maybe quicker for expert users as well as naviagting a file directory can be easily as quick as typing command in xterm surely??

i am learning and have allready learnt alot due to this community but i hate asking for help on everything and being a newbie i really could ask for help on alot of stuff lol :-)

ive spent the last two weeks with my head buried in this forum and my n900 and iam getting there slowly but i am getting there :-)

thanks for any replys much appreciated

ps
can someone give me an example of moving a file from documents to say sounds lets call the file happy.mp3 using xterm commands after the sudo gainroot command

thanks in advance again

Last edited by buxz777; 2010-01-31 at 16:39.
 
casper27's Avatar
Posts: 844 | Thanked: 521 times | Joined on Jan 2009 @ UK southampton
#2
There is mc in the extras repo. Usual warnings for activating that. I have also been using GPE file manager which is a little bit like windows. The easiest way is to download WinSCP for windows and ssh into the phone. This is then represented in a nice GUI.
 

The Following User Says Thank You to casper27 For This Useful Post:
b666m's Avatar
Posts: 1,090 | Thanked: 476 times | Joined on Jan 2010 @ Ingolstadt, Germany
#3
file manager to download are "mc" (midnight commander), "emelfm2" and "gpe file manager". but i would go for "mc".

they are available in the extras or testing or devel repository.
if you want to know where they are... search here: http://maemo.org/packages/

mhm... i think the best way is to use the man-pages or --help or google for commands

edit: too slow ^^
but ssh is also a nice way for doing that.
and the best about this is:
when the system gets screwed up (because something dumb happens xD) you can ssh in and may try to repair it before you have to reflash it.

Last edited by b666m; 2010-01-31 at 16:44.
 

The Following User Says Thank You to b666m For This Useful Post:
Posts: 256 | Thanked: 98 times | Joined on Jan 2010
#4
hi there casper mate appreciate the reply :-)

mc i take it is a file manager with the sort of sccess that xterm has??

how long has this been in the extras , should it be appearing in the other download sections soon

id love to get hold of a file manager so i can copy and paste files anywhere :-)

thanks again mate

edit

just saw you post too bp mate so big thanks

thanks guys appreciate it ill keep doing my homework and check out these file managers :-) really appreciate that and i should have known the community has allready thought about this and was implementing it thats what i love about the open source maemo o/s :-)

Last edited by buxz777; 2010-01-31 at 16:46.
 
Posts: 489 | Thanked: 404 times | Joined on Dec 2009
#5
Hi buxz777.
You can use the default file manager for moving files between folders, but only in MyDocs folders (File Manager do not have access to system folders).

For example, if you want to move from Documents to Sounds the happy.mp3 file:

- Using the default File Manager:
Open it, than find your Documents folder. Right click (hold your finger) on happy.mp3, then select move and the Sounds folder as destination.

-Using X-Term:
You do not have to use sudo gainroot for moving files in non-system folders.
Type

cd/MyDocs/.documents/

Then

mv happy.mp3 /home/user/MyDocs/.sounds

For system folders you can use OpenSSH and WinSCP on your PC.
 

The Following User Says Thank You to torpedo48 For This Useful Post:
Posts: 256 | Thanked: 98 times | Joined on Jan 2010
#6
wahey nice tips on the commands there torpedo :-)

so if i want system files i will have to become sudo gainroot

i would them cd (jump/move) to the folder where the file is

i would then type

mv filename/where/i/want/file/to/go --- just demo obvously has to be folder path structure :-)

what about copying a file instead of moving it , is that cp or something simmilar

ill take a look into the file managers and also all about ssh etc , is there any guides and tips on setting up ssh that i can read through with a nice cup of tea to get some understanding before i delve into it

cor ive got alot to learn coming from symbian :-)

lucky you guys are aroound to point me in the right direction :-)

ps
was looking here at linux commands http://www.debianhelp.co.uk/commands.htm

any others worth reading :-) or guides i should check out that helped you peeps :-) iam all up for learning

Last edited by buxz777; 2010-01-31 at 16:56.
 
Posts: 489 | Thanked: 404 times | Joined on Dec 2009
#7
Originally Posted by buxz777 View Post
wahey nice tips on the commands there torpedo :-)

so if i want system files i will have to become sudo gainroot

i would them cd (jump/move) to the folder where the file is

i would then type

mv filename/where/i/want/file/to/go --- just demo obvously has to be folder path structure :-)

what about copying a file instead of moving it , is that cp or something simmilar

ill take a look into the file managers and also all about ssh etc

cor ive got alot to learn coming from symbian :-)

lucky you guys are aroound to point me in the right direction :-)

ps
was looking here at linux commands http://www.debianhelp.co.uk/commands.htm

any others worth reading :-)
It seems you have properly understood the cd and mv commands.

If you want to copy or rename a file, just type:

cp filename destinationfolder --> for copying

mv filename filename2 --> for renameing

Feel free to ask for further help.
 

The Following User Says Thank You to torpedo48 For This Useful Post:
b666m's Avatar
Posts: 1,090 | Thanked: 476 times | Joined on Jan 2010 @ Ingolstadt, Germany
#8
Originally Posted by buxz777 View Post
any others worth reading :-) or guides i should check out that helped you peeps :-) iam all up for learning
the most important commands are:

cd <- change directory
cp <- copy file/folder
mv <- move file
ls <- list files/folders
cat <- show content of file
mkdir <- make directory
rm <- remove file/folder

with these seven commands you'll come very far

every command has some options too, for example:
ls -a <- show all files/folders (even hidden ones)
cp -r <- copy recursive. copies a folder with its contents.

very important is to learn how the man-pages / --help work:
man cd <- shows the manual of cd
cd --help <- shows short help

with man and --help you can look at most commands and how to use them

Last edited by b666m; 2010-01-31 at 17:10.
 

The Following User Says Thank You to b666m For This Useful Post:
Posts: 286 | Thanked: 259 times | Joined on Jan 2006 @ Cambridge, England
#9
Originally Posted by buxz777 View Post
ps
was looking here at linux commands http://www.debianhelp.co.uk/commands.htm

any others worth reading :-) or guides i should check out that helped you peeps :-) iam all up for learning
http://wiki.maemo.org/Terminal
 

The Following User Says Thank You to richie For This Useful Post:
Posts: 27 | Thanked: 17 times | Joined on Jan 2010
#10
You could also start the xterm and "sudo gainroot" then "mc" to run Midnight Commander in root mode but you'd have to be careful.
 

The Following User Says Thank You to tycho For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 19:28.