Results 1 to 5 of 5
I'm told to go to /home/jbander/Downloads, so how do I do that, I assume you do it in terminal but what do you do next, I can get to home ...
- 03-12-2011 #1Just Joined!
- Join Date
- Feb 2011
- Posts
- 22
moving from one file to another
I'm told to go to /home/jbander/Downloads, so how do I do that, I assume you do it in terminal but what do you do next, I can get to home but thats it. How do I go from one directory or file or whatever they are, to another and once I'm there what do I do to see what is in the download file. One more question if I want to change it from e.g. cow to e.g. duck how would I do that(they are just arbitrary names) how do I get rid of cow and how do I put duck in it's place.
- 03-12-2011 #2forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,093
From the terminal you can change directory:
To rename files, you can use the move command:Code:cd /home/jbander/Downloads
Some quick and easy command line lessons can be found here:Code:mv /home/jbander/cow /home/jbander/duck
LinuxCommand.org: Learn the Linux command lineoz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 03-13-2011 #3
In addition to what ozar has suggested, Linux is case and space sensitive too. Make sure to type correct case.
~ sign represents Home folder i.e., /home/<user_id>.Code:cd /home/jbander/Downloads ls
andCode:cd /home/jbander/Downloads
will do the same, Change directory to Downloads folder.Code:cd ~/Downloads
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-13-2011 #4forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,093
jbander, once you've completed the lessons at the link posted above, here's another good tutorial that will give you some other handy things worth knowing:
UNIX / Linux Tutorial for Beginnersoz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 03-13-2011 #5It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First


Reply With Quote
