Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

./configure no such file or directory

Status
Not open for further replies.

asai

Programmer
Jun 19, 2003
3
IN
hi,

i try to install windows emulators in linux which requires me to run the command ./configure,
but i get errors saying no such file or directory.
this happens no matter i run the command as normal user or as root.
i will appreciate if anyone can help me with this!


thanks in advance!

regards,
asai






 
Hi,

The '.' part refers to the current directory so you have to first change directory to wherever the source code has been unpacked. For example :

cd /usr/src/whatever
./configure (this actually means /usr/src/whatever/configure)
make
make install

The above is the normal process to build an executable app from source (may vary so read the README or equivalent). Normally you only have to 'su' to root for the 'make install' part.

Hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top