i managed to install houdini apprentice in gentoo with the following instructions
Code: Select all
mkdir /etc/rcX.d
ln -s /etc /etc/rc.d
ln -s /etc/rcX.d /etc/rc1.d
ln -s /etc/rcX.d /etc/rc2.d
ln -s /etc/rcX.d /etc/rc3.d
ln -s /etc/rcX.d /etc/rc4.d
ln -s /etc/rcX.d /etc/rc5.d
tar -zxvf hfs-6.0.286-linux7.tar.gz
cd Linux7
this will allow you install houdini, and the sesinetd license server, but will fail to start the license server
#do the following while it's prompting that it's loading the license server configuration,or after you see it fail to obtain the information, because then it's practically done but failed to start the service
then proceed to obtain license keys
Code: Select all
tcsh
cd /usr/hfs6
source houdini_setup
hkey
go to File>Manually insert keys and go to
http://license.sidefx.com/get_nc_license.php
enter Server name and Server Code as shown in Server Information tab
the Server should now be fully operational, so start houdini
you could do the following, so you don't have to start the license server manually all the time
to make life easier put one of these scripts in /usr/bin for each program, hhalo, houdini, hselect, hescape, hkey, and make it executable with chmod 755 /usr/bin/houdini. replace "houdini" with the program name but leave "source houdini_setup" the same in all scripts.
Code: Select all
#! /bin/tcsh -f
cd /usr/hfs6/
source houdini_setup
houdini
works for me
