when I open up the terminal and write the command
cd Desktop
also I have tried
cd /Desktop
a message appears that no file or directory was found what I suppose to do? I have logged in as a root but still have the same problem any help?
when I open up the terminal and write the command
cd Desktop
also I have tried
cd /Desktop
a message appears that no file or directory was found what I suppose to do? I have logged in as a root but still have the same problem any help?
To enter your user's Desktop directory, run cd ~/Desktop
(the ~
is expanded into your user's home directory). If your Desktop directory doesn't exist, you can create it via mkdir ~/Desktop
.
gcc
in the terminal and then right-click the terminal and select "Paste". Remove the "file://" portion at the start the text you have pasted and then press Enter.
– Ramchandra Apte
Nov 08 '13 at 15:00
cd Desktop/
Goes to the Desktop directory if you are in your home directory.
cd -
Goes back to previous directory.
cd /
Take you to the root directory.
cd ~/Desktop
Will take you to your Desktop Directory no matter where you are.
Run this command in terminal,it will help you.
cd ~/Desktop
gcc yourfilename.c
cd
command http://askubuntu.com/questions/483129/what-is-difference-between-these-command – αғsнιη Sep 08 '14 at 14:54