- download THE_FOUNDRY_NUKEX_V7.0V6_LNX64-XFORCE

- unzip and untar to /home/user0/tools/foundry/nuke/THE_FOUNDRY_NUKEX_V7.0V6_LNX64-XFORCE

- setup

su

#/home/user0/tools/foundry/nuke/THE_FOUNDRY_NUKEX_V7.0V6_LNX64-XFORCE/Nuke7.0v6-linux-x86-release-64-installer

- crack. Follow the instrcution for cracking: /home/user0/tools/foundry/nuke/THE_FOUNDRY_NUKEX_V7.0V6_LNX64-XFORCE/Crack/install-lnx.txt, here is the step on my machine:

- Install FLT

su

/home/user0/tools/foundry/nuke/THE_FOUNDRY_NUKEX_V7.0V6_LNX64-XFORCE/FLT7.0v2/FLT_7.0v2_linux-x86-release-64RH/install.sh

- Stop Foundry License Server

/usr/local/foundry/LicensingTools7.0/FoundryLicenseUtility -s stop -t RLM

- Copy the cracked rlm.foundry over the original one (/usr/local/foundry/LicensingTools7.0/bin/RLM/rlm.foundry"

cp /home/user0/tools/foundry/nuke/THE_FOUNDRY_NUKEX_V7.0V6_LNX64-XFORCE/Crack/FLT_7.0v2_linux-x86-release-64RH/rlm.foundry /usr/local/foundry/LicensingTools7.0/bin/RLM/

If it complain rlm.foundry is busy, you should kill rlm.foundry process in SystemMoniter first, then execute the above command again.

- find /home/user0/tools/foundry/nuke/THE_FOUNDRY_NUKEX_V7.0V6_LNX64-XFORCE/Crack/xf_foundry.lic,

Replacing HOST_NAME MAC_ADDRESS PORT in xf_foundry.lic.You can get those informations using rlmutil (./rlmutil rlmhostid host and ./rlmutil rlmhostid)
e.g.
/usr/local/foundry/LicensingTools7.0/bin/RLM/rlmutil rlmhostid host
/usr/local/foundry/LicensingTools7.0/bin/RLM/rlmutil rlmhostid

- copy the xf_foundry.lic to /usr/local/foundry/RLM

cp /home/user0/tools/foundry/nuke/THE_FOUNDRY_NUKEX_V7.0V6_LNX64-XFORCE/Crack/xf_foundry.lic /usr/local/foundry/RLM

- start Applications>Graphics>NukeX 7.0v6

NOTE:

Nuke can't start after I switch my network connection to another WIFI(I have different IP with each WIFI). But  Houdini doesn't has this problem.

I can't come out even I add a line to /etc/hosts, and reboot my system:

<new IP with another WIFI> myserver

So I have to stick to the network which is used for cracking Nuke.

Install NukeX v7.0v6 in CentOS 7的更多相关文章

  1. Install Erlang and Elixir in CentOS 7

    In this tutorial, we will be discussing about how to install Erlang and Elixir in CentOS 7 minimal s ...

  2. Install FFMPEG and FFMPEG-PHP in CentOS 6 with Virtualmin

    Install FFMPEG and FFMPEG-PHP in CentOS 6 with Virtualmin  1 year ago -  by Daniel -  howto centos v ...

  3. 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 ...

  4. How to install Wordpress 4.0 on CentOS 7.0

    This document describes how to install and configure Wordpress 4.0 on CentOS 7.0. WordPress started ...

  5. How to install GSL on linux(ubuntu,centos,redhat)

    Test: ftp://ftp.gnu.org/gnu/gsl/gsl-1.15.tar.gz  success. ftp://ftp.gnu.org/gnu/gsl/gsl-1.13.0.tar.g ...

  6. How To install FFMPEG, FLVTOOL2, MP4Box on CentOS server 2015 easy method

    for i386:wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.i686.rpmrpm ...

  7. Install TightVNC Server in RHEL/CentOS and Fedora to Access Remote Desktops

    Virtual Networking Computing (VNC) is a Kind of remote sharing system that makes it possible to take ...

  8. How to install Redis 3.2 on CentOS 6 and 7

    What is Redis? Redis is a flexible open-source, key value data store, used as a database, cache and ...

  9. [转载]How To Install Nginx And PHP-FPM On CentOS 6 Via Yum

    http://www.lifelinux.com/how-to-install-nginx-and-php-fpm-on-centos-6-via-yum/ http://blog.csdn.net/ ...

随机推荐

  1. vim 分屏显示

    我用vim打开一个文件后,想同时打开另一个文件,就像windows中打开两个记事本一样,因此需要分屏显示 首先用vim打开一个文件 vim file1 输入命令[Esc] :sp file2 分屏打开 ...

  2. Valid Palindrome ---- LeetCode 125

    Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignori ...

  3. iOS UITextField限制输入数字

    有时候项目中要求文本框中只能输入数字,如:价格.公里数.费用等等,一般的文本框不限制输入的格式,这时候只能强制限制输入框的输入格式了,代码如下: #import "ViewControlle ...

  4. React Native 的绑定 this

    在React Native开发中,如果使用ES6语法的话,最好绑定this.但是使用ES5语法的话不需要绑定this.因为ES5会autobinding. this所指的就是直至包含this指针的上层 ...

  5. C#知识体系(二)用案例来理解委托与事件

    上一篇博客讲到了LinQ和lambda的常用方法 还有很多我们未知但c#设计团队已经为我们封装好的类和方法.随着我们不断的熟悉C#语言,渐渐的就会接触到其他的知识点,委托.事件.反射.线程.同步,异步 ...

  6. JavaScript面向对象编程学习笔记

    1  Javascript 面向对象编程 所谓"构造函数",其实就是一个普通函数,但是内部使用了this变量.对构造函数使用new运算符,就能生成实例,并且this变量会绑定在实例 ...

  7. 轮播效果(margin-left/top)移动

    HTML代码: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www ...

  8. android gradle的全局管理

    转自:https://github.com/stormzhang 工程目录下建立baseConfig.gradle文件 内容如下 ext { android = [compileSdkVersion: ...

  9. Java设计模式(一) 简单工厂模式不简单

    摘要:本文介绍了简单工厂模式的概念,优缺点,实现方式,以及结合Annotation和反射的改良方案(让简单工厂模式不简单).同时介绍了简单工厂模式(未)遵循的OOP原则.最后给出了简单工厂模式在JDB ...

  10. 今天第一次接触到typescript,看了第一个知识点就是变量的声明,来回忆回忆,做做笔记

    以前只用过JavaScript原生写网站特效,今天还是第一次听说typescript的,然后看了一下它的基本知识,感觉很像Java,真的太像了,但是又有不同点.很让我惊奇看到的第一个知识点就和以前不同 ...