in konsole when entering cd.. or other commands I get bash: cd..: command not found

Asked by Larry

new user just trying to learn the basics of linux, Starting with sys info commands. they do not work as stated IE uname-a responds with bash: uname-a: command not found.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu kdebase Edit question
Assignee:
No assignee Edit question
Solved by:
Buz Cory
Solved:
Last query:
Last reply:
Revision history for this message
Buz Cory (buzco) said :
#1

Seems like you are omitting the space between "cd" and ".." so bash takes "cd.." as the command name.

Revision history for this message
Best Buz Cory (buzco) said :
#2

Reading the rest of your Q (only read subject earlier):

Each command requires <space> between the command and its first argument, as --
cd<space>..
uname<space>-a

etc.

If you are used to DOS or some other system, this might not be the case there :)

Revision history for this message
Larry (lgruenwa) said :
#3

Thanks Buz Cory, that solved my question.