Thanks for the reply, but i found a nice solution. i used a small textfile i found on the net with installation instructions for vmware and slackware
I hope a large message like this is allowed in here but i'll put the installation guide in here to help other ppl with the same prob, i made a small resume:
manual installation vmware on slackware:
before installation:
You might want to do the following:
cd /etc
mkdir init.d
for i in {0,1,2,3,4,5,6}; do mkdir rc$i.d; done
run the installation by untarring the filen and go to the directory where you untarred it:
and run the following:
./vmware-install.pl
during installation:
When it asks you for the location of your startup scripts... and mentions rc0.d to rc6.d... you want to tell it /etc is the directory - since that's where we just created the temporary directories.
So... run through the prompts, answer the questions according to your preferences, etc... until you get to the part where it asks you if you want to run vmware-config.pl. DO NOT choose to run this now - you need to start the script manually with arguments. The setup should quit after you decline to run vmware-config.pl
after installation:
run
cd /usr/local/bin
./vmware-config.pl --compile
The extra --compile switch above forces vmware-config.pl to compile fresh modules for your system.
okay. Run through the remainder of the prompts, etc... until the script eventually finishes.
Once you are done running the install/config scripts - you probably want to make some minor changes to fit the Slackware/BSD scenario.
Copy the vmware script in /etc/init.d to /etc/rc.d/rc.vmware and make it executable.
cp /etc/init.d/vmware /etc/rc.d/rc.vmware
chmod +x /etc/rc.d/rc.vmware
Add a few lines to /etc/rc.d/rc.local to set up VMware when you boot the computer
(In /etc/rc.d/rc.local)
if [ -x /etc/rc.d/rc.vmware ]; then
/etc/rc.d/rc.vmware start
fi
Now... you can go back and get rid of the temporary /etc/init.d, /etc/rc[0-6].d fixes.
rm -rf /etc/init.d
for i in {0,1,2,3,4,5,6}; do rm -rf /etc/rc$i.d; done
Quote:
Originally posted by jharris
You should just be able to add the lines to /etc/rc.d/rc.modules if you wish to load the correct modules. Although, once those directories exist the vmware installer should put the necessary files in them. At boot time the Slackware rc.sysinitv script should noctice they are there and execute them.
cheers
Jamie...
|