The Computer Oracle

I can't see MSYS home directory under Windows 7's file explorer

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: City Beneath the Waves Looping

--

Chapters
00:00 I Can'T See Msys Home Directory Under Windows 7'S File Explorer
00:56 Accepted Answer Score 22
01:02 Answer 2 Score 0
02:02 Thank you

--

Full question
https://superuser.com/questions/340993/i...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#windows7 #windowsexplorer #mingw

#avk47



ACCEPTED ANSWER

Score 22


$ pwd -W
C:/MinGW/msys/1.0/home/Steven



ANSWER 2

Score 0


Sometimes there is a case that MinGW/MSYS does create home folder in ~/msys/1.0/home/user (user is my user name)

The following is what I discovered.

MinGW/MSYS usually creates a home folder under C:/MinGW/msys/1.0/home/user if you installed them as usual (accepting the defaults) and you executed msys.bat successfully. However, it does not create it where you expect if you happened to have an environment variable called HOME.

  • Optionally, first check your home folder by $pwd -W ($ is a command prompt.)
  • Remove the environment variable called HOME. (It does not mess up Windows.")
  • Reboot
  • Execute msys.bat again.
  • Optionally, now check where your home folder by $pwd -W
  • Note: Don't need to reinstall MinGW/MSYS.

(a debtor)<><