I need to change the directory to following path
/media/New Volume/softwr/pgm
and
/home/sdk
for 2 diff purpose. But by using cd its not working
I tried
cd media
and cd home
Both time its showing such file or directory not existing. I am new to Linux environment.I'm using Ubuntu 12.04LTS Can anyone help?
New Volume
exists in/media
, you should use:cd /media/New\ Volume
orcd "/media/New Volume"
because of that space. – Radu Rădeanu Sep 28 '13 at 13:33/home
be cautious)! Once that is done open a a Terminal-window and drag the folder in the path of choice into it, to see the actual path – v2r Sep 28 '13 at 14:54