| 1. |
Solve : getting a file to work? |
|
Answer» I am trying to INSTALL mysql. They say i need to get this file in dos. C:\> C:\Program Files\MySQL\MySQL Server 5.1\bin\mysqld Ok, looking at that, and not know what type of windows you use, i'm seeing errors that WOULD show up on windows xp professional anyways. It might help... with your directory c:\program files There is a space, and dos windows does not like spaces in directories so, what you would type instead would be c:\progra~1\ Reason for this would be that when typing in folder names, DOS windows has an 8 character limit, so including the ~1 there is 8 characters... You have to set this up like that. Also, the reason it is ~1, represents that it is the first folder created with that name. Here is how it works say i have a folder under the C: DRIVE called testingfiles then i have another called testingfilesother this is what i would type into dos windows to get to the directories testing files would be cd c:/testin~1 note: this still obeys the 8 character limit, and assuming it was the first file created, then it will work Testingfilesother would be cd c:/testin~2 |
|