cd command not working [duplicate]

 Clash Royale CLAN TAG#URR8PPP
Clash Royale CLAN TAG#URR8PPP up vote
-1
down vote
favorite
This question already has an answer here:
 How do I cd into a directory in the home folder?
 
 3 answers
 
 

When I'm trying to run the cd command on my virtual pc is shows error as shown in pic above. How can I change the directory?
command-line bash
 marked as duplicate by muru
 StackExchange.ready(function() 
 if (StackExchange.options.isMobile) return;
 $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() 
 var $hover = $(this).addClass('hover-bound'),
 $msg = $hover.siblings('.dupe-hammer-message');
 
 $hover.hover(
 function() 
 $hover.showInfoMessage('', 
 messageElement: $msg.clone().show(),
 transient: false,
 position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
 dismissable: false,
 relativeToBody: true
 );
 ,
 function() 
 StackExchange.helpers.removeMessages();
 
 );
 );
 );
 Feb 28 at 7:56
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |Â
up vote
-1
down vote
favorite
This question already has an answer here:
 How do I cd into a directory in the home folder?
 
 3 answers
 
 

When I'm trying to run the cd command on my virtual pc is shows error as shown in pic above. How can I change the directory?
command-line bash
 marked as duplicate by muru
 StackExchange.ready(function() 
 if (StackExchange.options.isMobile) return;
 $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() 
 var $hover = $(this).addClass('hover-bound'),
 $msg = $hover.siblings('.dupe-hammer-message');
 
 $hover.hover(
 function() 
 $hover.showInfoMessage('', 
 messageElement: $msg.clone().show(),
 transient: false,
 position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
 dismissable: false,
 relativeToBody: true
 );
 ,
 function() 
 StackExchange.helpers.removeMessages();
 
 );
 );
 );
 Feb 28 at 7:56
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
 
 
 
 
 
 
 Please don't post pictures of your command and/or error messages. Copy and paste the text instead so that we can as well copy and paste your commands into our terminal windows to reproduce the error without re-typing.
 â PerlDuck
 Feb 28 at 9:54
 
 
 
add a comment |Â
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
This question already has an answer here:
 How do I cd into a directory in the home folder?
 
 3 answers
 
 

When I'm trying to run the cd command on my virtual pc is shows error as shown in pic above. How can I change the directory?
command-line bash
This question already has an answer here:
 How do I cd into a directory in the home folder?
 
 3 answers
 
 

When I'm trying to run the cd command on my virtual pc is shows error as shown in pic above. How can I change the directory?
This question already has an answer here:
 How do I cd into a directory in the home folder?
 
 3 answers
 
 
command-line bash
command-line bash
edited Feb 28 at 7:42


dessert
19.8k55594
19.8k55594
asked Feb 28 at 7:35
Vikas Saharan
1
1
 marked as duplicate by muru
 StackExchange.ready(function() 
 if (StackExchange.options.isMobile) return;
 $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() 
 var $hover = $(this).addClass('hover-bound'),
 $msg = $hover.siblings('.dupe-hammer-message');
 
 $hover.hover(
 function() 
 $hover.showInfoMessage('', 
 messageElement: $msg.clone().show(),
 transient: false,
 position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
 dismissable: false,
 relativeToBody: true
 );
 ,
 function() 
 StackExchange.helpers.removeMessages();
 
 );
 );
 );
 Feb 28 at 7:56
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
 marked as duplicate by muru
 StackExchange.ready(function() 
 if (StackExchange.options.isMobile) return;
 $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() 
 var $hover = $(this).addClass('hover-bound'),
 $msg = $hover.siblings('.dupe-hammer-message');
 
 $hover.hover(
 function() 
 $hover.showInfoMessage('', 
 messageElement: $msg.clone().show(),
 transient: false,
 position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
 dismissable: false,
 relativeToBody: true
 );
 ,
 function() 
 StackExchange.helpers.removeMessages();
 
 );
 );
 );
 Feb 28 at 7:56
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
 
 
 
 
 
 
 Please don't post pictures of your command and/or error messages. Copy and paste the text instead so that we can as well copy and paste your commands into our terminal windows to reproduce the error without re-typing.
 â PerlDuck
 Feb 28 at 9:54
 
 
 
add a comment |Â
 
 
 
 
 
 
 Please don't post pictures of your command and/or error messages. Copy and paste the text instead so that we can as well copy and paste your commands into our terminal windows to reproduce the error without re-typing.
 â PerlDuck
 Feb 28 at 9:54
 
 
 
Please don't post pictures of your command and/or error messages. Copy and paste the text instead so that we can as well copy and paste your commands into our terminal windows to reproduce the error without re-typing.
â PerlDuck
Feb 28 at 9:54
Please don't post pictures of your command and/or error messages. Copy and paste the text instead so that we can as well copy and paste your commands into our terminal windows to reproduce the error without re-typing.
â PerlDuck
Feb 28 at 9:54
add a comment |Â
 1 Answer
 1
 
active
oldest
votes
up vote
3
down vote
You simply misspelled it: In Ubuntu (and generally in Unix systems), file and directory names are case-sensitive and the directory's name is Desktop:
cd Desktop # if you are in your home directory (relative path)
cd ~/Desktop # if you are anywhere else (absolute path)
add a comment |Â
 1 Answer
 1
 
active
oldest
votes
 1 Answer
 1
 
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
You simply misspelled it: In Ubuntu (and generally in Unix systems), file and directory names are case-sensitive and the directory's name is Desktop:
cd Desktop # if you are in your home directory (relative path)
cd ~/Desktop # if you are anywhere else (absolute path)
add a comment |Â
up vote
3
down vote
You simply misspelled it: In Ubuntu (and generally in Unix systems), file and directory names are case-sensitive and the directory's name is Desktop:
cd Desktop # if you are in your home directory (relative path)
cd ~/Desktop # if you are anywhere else (absolute path)
add a comment |Â
up vote
3
down vote
up vote
3
down vote
You simply misspelled it: In Ubuntu (and generally in Unix systems), file and directory names are case-sensitive and the directory's name is Desktop:
cd Desktop # if you are in your home directory (relative path)
cd ~/Desktop # if you are anywhere else (absolute path)
You simply misspelled it: In Ubuntu (and generally in Unix systems), file and directory names are case-sensitive and the directory's name is Desktop:
cd Desktop # if you are in your home directory (relative path)
cd ~/Desktop # if you are anywhere else (absolute path)
edited Feb 28 at 7:52
answered Feb 28 at 7:40


dessert
19.8k55594
19.8k55594
add a comment |Â
add a comment |Â
Please don't post pictures of your command and/or error messages. Copy and paste the text instead so that we can as well copy and paste your commands into our terminal windows to reproduce the error without re-typing.
â PerlDuck
Feb 28 at 9:54