Install Houdini 12.5 x64 in CentOS 7
Thanks for Must(QQ ID)'s big help for installing Houdini in CentOS7.
- download HOUDINI_FX_V12.5.371_LINUX_X64_GCC44-XFORCE
- unzip and untar to /home/user0/tools/sidefx/HOUDINI_FX_V12.5.371_LINUX_X64_GCC44-XFORCE
- setup
$su
#/home/user0/tools/sidefx/HOUDINI_FX_V12.5.371_LINUX_X64_GCC44-XFORCE/houdini-12.5.371-linux_x86_64_gcc4.4/houdini.inistall
you can see [1] for more details
- crack
- stop Houdini License Server
/etc/init.d/sesinetd stop
- replace sesinetd:
#rm /usr/lib/sesi/sesinetd
#cp /home/user0/tools/sidefx/HOUDINI_FX_V12.5.371_LINUX_X64_GCC44-XFORCE/sesinetd /usr/lib/sesi/
#chmod 777 /usr/lib/sesi/sesinetd
-restart Houdini License Server
#/etc/init.d/sesinetd stop
#/etc/init.d/sesinetd start
- regist
- Applications>Side Effects Software>License Administrator>Server Information, record your Server host and Server Code
-
#/home/user0/tools/sidefx/HOUDINI_FX_V12.5.371_LINUX_X64_GCC44-XFORCE/houdini12_5keygen-linux
input your Server host and Server Code,
it will list many messsage like this:
SERVER .....
LICENSE Generic Houdini-Master .....
- copy these lines(at least 5 lines) into License Administrator, one line each time.
NOTE: You MUST input the line "SERVER ...." first.
- start Houdini
On my Thinkpad t430 the shader on default object, e.g. box or sphere, is black. And if I try to move the object, Houdini crashes.
I find this post [2], it says that the crash is caused by display driver issue.
Then I set BIOS>Config>Display> use discrete card.
It works well now.
Reference:
1. http://bbs.ideasr.com/thread-4766-1-1.html
2. http://www.sidefx.com/index.php?option=com_forum&Itemid=172&page=viewtopic&p=156227
Install Houdini 12.5 x64 in CentOS 7的更多相关文章
- Install .NET Core SDK on Linux CentOS / Oracle x64 | .NET
原文:Install .NET Core SDK on Linux CentOS / Oracle x64 | .NET Linux发行版 CentOS / Oracle添加dotnet产品Feed ...
- Install MongoDB on Red Hat Enterprise, CentOS, Fedora, or Amazon Linux
Install MongoDB on Red Hat Enterprise, CentOS, Fedora, or Amazon Linux¶ Overview Use this tutorial t ...
- Install Apache, PHP And MySQL On CentOS 7 (LAMP)
This tutorial shows how you can install an Apache2 webserver on a CentOS 7.0 server with PHP5 suppor ...
- Transaction check error: file /etc/rpm/macros.ghc-srpm from install of redhat-rpm-config-9.1.0-80.el7.centos.noarch conflicts with file from package epel-release-6-8.noarch Error Summary ----------
./certbot-auto certonly 报错: Transaction check error: file /etc/rpm/macros.ghc-srpm from install of ...
- How to Install Apache Tomcat 8.5 on CentOS 7.3
How to Install Apache Tomcat 8.5 on CentOS 7.3 From: https://www.howtoforge.com/tutorial/how-to-inst ...
- How to Install Apache Solr 4.5 on CentOS 6.4
By Shay Anderson on October 2013 Knowledge Base / Linux / How to Install Apache Solr 4.5 on Cent ...
- Install Maya 2015 x64 in CentOS 7
Thanks for Must(QQ ID)'s big help for installing Maya in CentOS7. This is my steps for installing ma ...
- [转载]Install Opera 12.16 Web Browser in CentOS/RHEL and Fedora
FROM: http://tecadmin.net/install-opera-web-browser-in-centos-rhel-fedora/ Opera is an modern web br ...
- ASP.NET Core 2.0 MVC 发布部署--------- SUSE 16 Linux Enterprise Server 12 SP2 X64 具体操作
.Net Core 部署到 SUSE 16 Linux Enterprise Server 12 SP2 64 位中的步骤 1.安装工具 1.apache 2..Net Core(dotnet-sdk ...
随机推荐
- java.sql.SQLException: Incorrect string value:
安装好MySQL一定先改字符集 如果没有,改完字符集之后,要把之前数据库重新创建一下.
- C#常用操作类库一(验证类)
public class Validator { #region 验证输入字符串为数字 /// <summary> /// 验证输入字符串 ...
- 问题:C++ 删除数组指针实用 delete []变量 汇编怎么实现的?
问题:C++ 删除数组指针实用 delete []变量 汇编怎么实现的?
- 第三个Sprint冲刺第九天
讨论地点:宿舍 讨论成员:邵家文.李新.朱浩龙.陈俊金 讨论问题:做最后的工作
- PHP构造方法
构造方法 1.(特殊)对象创建完成后第一个自动调用的方法: 2.(特殊)方法名比较特殊,方法名可以与类相同: 3.给对象中的成员赋初始值: class boyfriend{ public $name; ...
- python基础(1)
一.应用 python应用:数据分析.组件集成.网络服务.图像处理.数值计算和科学计算. 使用python的企业:YouTube.dropbox.BT.Quora.豆瓣.知乎.google.Yahoo ...
- mysql 完整性约束
mysql 完整性约束 数据的完整性概述根据完整性实施的方法将完整性约束分为四类:1.实体完整性 实体完整性的实现:通过在表中设置主键约束.唯一约束或标识列来实现 主键约束:应用于表列的一个约束 用法 ...
- JS与Struts标签page
<html> <html:link name="map" page="/xxx/xxx/xxx_delete_do.do" ...
- JSWindow对象
Window 对象 Window 对象表示浏览器中打开的窗口. 如果文档包含框架(frame 或 iframe 标签),浏览器会为 HTML 文档创建一个 window 对象,并为每个框架创建一个额外 ...
- ✡ leetcode 173. Binary Search Tree Iterator 设计迭代器(搜索树)--------- java
Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the ro ...