-2

I was using aircrack-ng package in my ubuntu 15.04. This package works only under root privileges. Now I want to save .cap file on my desktop using airodump-ng package but everytime I do, it throws an error

-bash: cd: Desktop/: No such file or directory

Please let me know how can I access Desktop from my root directory.

M'vy
  • 13,033
  • 3
  • 47
  • 69
dexter
  • 7
  • 3
  • This is not the right place to ask. You probably want to ask your question on the [Super User](http://superuser.com/) or the [Ask Ubuntu](http://askubuntu.com/) communities. – Yuriko Mar 11 '16 at 09:24
  • @Yuriko - thanx for your suggestion. – dexter Mar 11 '16 at 09:31

1 Answers1

1

You can use

cd /home/{your username}/Desktop

It will always take you to your desktop folder if you have access permissions.

  • If you are currently logged in as the user you will be using - You will also be able to cd ~/Desktop - ~ being the shortcut for /home/{Your username} – Aaron Dobbing Mar 11 '16 at 11:59