paying attention to detail, spaces and all are key to not having errors.
the answer is # cd “space”…/jan or cd …/jan make sure to use the space bar after cd and you shouldn’t have any problems.
use cd …/jan
please don’t forget to place the gap between cd and " …" this two dots. Then press pwd and enter
I don’t know why it’s showing three dots. I’m sorry. I wrote two dots.
The forums use Markdown, and it automatically interprets ..
as you wanting to use ...
, so in the future, you can surround these (and any code) using backticks ( ` ).
I’ve tried cd…/jan and cd…/jan it’s not working. What is the solution?
I meant I tried cd…/jan and cd…/jan
If you’re posting code to the forum, please see- How do I format code in my posts? as your commands are being altered, if they were entered as code blocks instead then others will be able to see what you actually typed out.
It’s mentioned above but there needs to be a space between the cd
command and the path you pass, e.g.
cd ../jan
This one was tricky at first but using the file tree structure included with lesson 1 will serve as a map.
Please help. Im having trouble navigating back to the blog path
Welcome to the forums!
If you can use cd ..
to navigate up one directory, and blog
is three directories up from your current directory, what command should you use to solve your problem?
Open for answer if you can't figure it out.
There are two ways to do this, either by repeating cd ..
for as many times as needed or by chaining directories together in one filepath.
cd ..
cd ..
cd ..
OR
cd ../../..
Thank You, this worked perfectly
Thank you so much! Now I am not stuck anymore
This solution worked for me thank you! <3
$ cd 2015
$ cd 2015/jan/memory
bash: cd: 2015/jan/memory: No such file or directory
$ cd jan/memory
$ cd blog
bash: cd: blog: No such file or directory
$ cd 2015/feb
bash: cd: 2015/feb: No such file or directory
$ pwd
/home/ccuser/workspace/blog/2015/jan/memory
$ cd feb
bash: cd: feb: No such file or directory
$ cd 2015/jan
bash: cd: 2015/jan: No such file or directory
$ cd …/2015
bash: cd: …/2015: No such file or directory
$ cd blog
bash: cd: blog: No such file or directory
times 10 tries, HELP!!! can not move on even though I have passed the rest of the 1 quiz, 1 article, 1 project items…
$ ls
2014 2015 hardware.txt
$ pwd
/home/ccuser/workspace/blog
$ cd 2015
$ cd jan/memory
$ cd 2015
bash: cd: 2015: No such file or directory
$ cd 2015/feb
bash: cd: 2015/feb: No such file or directory
$ cd 2015/jan
bash: cd: 2015/jan: No such file or directory
$ cd …/jan
bash: cd: …/jan: No such file or directory
$ cd home/ccuser/workspace/blog
bash: cd: home/ccuser/workspace/blog: No such file or directory
$ cd 2014/dec
bash: cd: 2014/dec: No such file or directory
$ ls
$ pwd
/home/ccuser/workspace/blog/2015/jan/memory
$ It happened again…
Refrain from spamming here, let’s keep the forums neat and tidy for everyone.
Remember that if we want to navigate up a directory we can use the following command. We only use directory names if they are subdirectories of our current working directory.
cd ..
solution: cd …/jan
remember about space and two dots after cd
I struggled for an hour on this but finally found the answer. simply type in exactly like this “cd …/2015” with no quotes obviously. Happy coding everyone
I was struggling for 10 minutes to find out then find out it is about space after cd lol thank you forum
This bug is still in place:
$ cd …/2015/jan
bash: cd: …/2015/jan: No such file or directory
Welcome to the forums! Super Users on the forums are community volunteers, I suggest you submit a bug report directly to Codecademy by clicking Get Unstuck, then Bugs in the exercise.