-1

I installed Ubuntu and CDO. Now I am trying to locate my computer directories such as Desktop or Downloads but can't. From the terminal when I run cd and ls I only have two directories i.e home & user(neema). Perhaps I am missing something very basic here. Could anyone kindly help me out with this?

enter image description here

Secondly, I am trying to work with CDO from the R terminal and getting this error; any idea where am getting wrong?

/c/Users/nkita/Downloads
/c/Users/nkita/AppData/Local/Temp/RtmpI7HPZa/chunk-code-e65814f2c58.txt: line 2: cd: /mnt/d/time_series/: No such file or directory
/c/Users/nkita/AppData/Local/Temp/RtmpI7HPZa/chunk-code-e65814f2c58.txt: line 6: cdo: command not
Kulfy
  • 17,696
Neki
  • 1

1 Answers1

0

Try

cd /home/yourusername  # substitute your actual username

In Linux there is no C: drive, the / will get you to the root, and then you can find all you want

If you want it to look more like Windows then

sudo apt install gnome
Kulfy
  • 17,696
marc
  • 1
  • 1
    I'm not sure if the later part is applicable here since I believe questioner is using Ubuntu WSL. – Kulfy Mar 17 '21 at 16:13