sh: 0: getcwd() failed: No such file or directory on cited drive
Asked Answered
W

8

306

I am trying to compile ARM code on Ubuntu 12.04 (Precise Pangolin).

Everything is working fine when I put the code in the local directory.

But when I put the code in the cited mount directory, an error shows up:

making testXmlFiles
sh: 0: getcwd() failed: No such file or directory
ARM Compiling xxxxx.c
sh: 0: getcwd() failed: No such file or directory

Here is my setting in fstab:

//10.0.0.1/data /mnt/data   cifs    auto,noserverino,credentials=/root/.smbcredentials,file_mode=0777,dir_mode=0777,uid=user,gid=users,noperm 0 0

What is going on here? What could cause this error?

Wiggs answered 6/10, 2012 at 8:31 Comment(2)
This error message might be triggered when trying to execute a command from a path that doesn't exist (e.g. if process B deletes a folder that process A is currently located in. A real-life example: in terminal A: mkdir ~/myfunnydir && cd ~/myfunnydir in terminal B: rm -rf ~/myfunnydir and finally back in terminal A again: java --version)Arcadian
Your directory is auto mounted but the credentials is stored in /root. A regular user will not be able to mount it because the credential will not be readable to them. Try making it as non-auto mount and let root mount it.Emilie
D
825

This error is usually caused by running a command from a directory that no longer exists.

Try changing your directory and rerun the command.

Downs answered 6/2, 2014 at 3:24 Comment(7)
getcwd gets the current working directory and if the directory is deleted or moved it will be unhappy! See Linux Manual for getcwdDowns
You may even have to do this if you've deleted the directory you were in and recreated one in the same place with the same name.Selfsealing
all I did was hit cd, and re-run command, and it worked, thanks!Healey
Noticed this myself when running apt-get upgrade from a nonexistent directory. The message spams about 20 times then the update continues as though nothing happened. I was hoping to find more information on why apt-get even cares what folder I'm in, especially so insistently with so little consequence.Tame
I still get an error: dpkg: error processing package debconf (--configure): package is in a very bad inconsistent state; you should reinstall it before attempting configuration Errors were encountered while processing: debconf E: Sub-process /usr/bin/dpkg returned an error code (1)Bacillary
I read this as I was in the main directory of the project on the production server, When I read your answer literally tears came into my eyes because its 4:20 and I am clocking off in 10 mins and I thought I accidentally deleted the project somehow. Luckily, it was just a bug caused by old version of fish.Beach
Same thing happened to me on Windows using WSL2 in a directory that did exist. I'm guessing it could have been re-mounted in the meantime?Pull
R
41

That also happened to me on a recreated directory. The directory is the same, but to make it work again, just run:

cd .
Reel answered 7/11, 2018 at 10:20 Comment(0)
W
19

Try the following command. It worked for me.

cd; cd -
Warr answered 19/6, 2017 at 16:46 Comment(2)
what is this ?waht is it mean ?Kier
cd; will usually take you to the home directory and cd - takes you back to the directory you were in just before the current directory. So basically you go to home directory and come back. However, if the original directory that you were in is deleted, this won't work.Downs
S
10

This can happen with symbolic links sometimes. If you experience this issue and you know you are in an existing directory, but your symbolic link may have changed, you can use this command:

cd $(pwd)
St answered 25/6, 2018 at 17:44 Comment(0)
D
6

In Ubuntu 16.04.3 LTS (Xenial Xerus), the following command works for me:

exit

Then I've login again.

Daviddavida answered 6/10, 2017 at 3:41 Comment(1)
actually it would be enough to switch to an existing directory as Hooman already said in his answerPajamas
A
3

Please check whether the directory path exists or not. This error comes up if the folder doesn't exist from where you are running the command.

Probably you have executed a remove command from the same path on the command line.

Agraffe answered 30/7, 2014 at 13:51 Comment(2)
That's what Hooman already said in his answerPajamas
And more than 4 months later.Diabolo
M
2

If some directory/folder does not exist, but somehow you navigated to that directory, in that case you can see this error.

For example:

  • currently, you are in the "mno" directory (path = abc/def/ghi/jkl/mno
  • run "sudo su" and delete mno
  • go to the "ghi" directory and delete the "jkl" directory
  • now you are in the "ghi" directory (path abc/def/ghi)
  • run "exit"
  • after running the "exit", you will get that error
  • now you will be in "mno"(path = abc/def/ghi/jkl/mno) folder. That does not exist.

So, generally this error will show when the directory doesn't exist.

To fix this, simply run "cd;" or you can move to any other directory which exists.

Moretta answered 23/10, 2020 at 19:14 Comment(0)
S
0

In my case, none of the previous answers has worked.

After banging my head against the wall for a while I've found out, that I've destroyed the /etc/passwd entries by running a custom-made-linux-server-setup-bash-script which worked well previously, but this time the regex within the "sed" command erased all the existing entries :D

After copy pasting the default entries from another working Linux server, I could finally restart sshd.

So don't forget to back up the original /etc/passwd file before applying any regular expression replacements on it :)

Swung answered 22/2, 2020 at 5:34 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.