I am trying to cd /home/ervin/Downloads/psneuter
in order to push psneuter to an android phone in order to root it.
I believe the path to the file and folder is correct, yet I get a message no such file or directory.
Am I doing anything wrong? It worked in Fedora, don't know about here.
Asked
Active
Viewed 388 times
0

muru
- 197,895
- 55
- 485
- 740

Ervin Dine
- 59
3 Answers
1
Just drag and drop the file in the terminal.
or
You can also use the below command to find the path of the file.
find . | egrep filename

BDRSuite
- 3,156
- 1
- 12
- 11
-
If you're using
find
, why not use its features? You don't needgrep
. The command would befind ~ -name 'psneuter*' -print
. That assumes that the folder is within the user's home folder; if that assumption is invalid, use/
instead of~
. – Paddy Landau Nov 18 '14 at 09:29
0
- Are you 100% sure you got all the capitalization in the directory names correct? Caps matter in unix.
- Or perhaps the files is a psneuter.tar file and you have to untar it first to get the real
psneuter
executable. This is why I never hide file extensions in any GUI.

Bulrush
- 772
0
I have had the same problem, and it could be either downloads whit the capital low charter or you could enter in the therimal this:
sudo -i
cd ~/downloads/psnurther
and it might work fine this way.

Michael
- 2,499
- 5
- 19
- 24
ls -d /home/ervin/Downloads/
say? – muru Nov 17 '14 at 19:40