Quote:Here, I think the problem is simply that ./tools/wineinstall is not set to have execute permissions. It won't run as root, because among other things it would then install wine into root's environment not yours, which wouldn't be awfully helpful.
You can change the permissions on the file to make it executable like this:
Code:
chmod a+x ./tools/wineinstall
<div>
This changes the permissions mode of the file (chmod) and adds execute permissions for all users (a+x).
Now try running ./tools/wineinstall again.
</div>
Thanks Hybrid your reply was helpful. I ran 'chmod a+x ./tools/wineinstall' and was denied permission to run chmod. So I looked up chmod in my book and saw there is a
chown and a chgrp. So I changed owner and group from root to user(myself). Then I ran './tools/wineinstall' and received the following response:
Wine Installer v1.0
Running configure...
checking build system type
checking host system type
checking wether make sets $(MAKE)
checking for gcc ... no
checking for cc ... no
checking for cl.exe ... no
configure : error : in '/usr/local/src/wine-1.1.8':
configure : error : no acceptable C compiler found in $PATH
See 'config.log' for more details.
I've never installed softwaqre before but this is a cool way to learn how linux works.