

so use my poor english
--------------------------------
besides Linux安装方法.txt
I.tips for linux
4.Copy the cracked rlm.foundry over the original one (/usr/local/foundry/LicensingTools7.0/bin/RLM/rlm.foundry"
----note: after this step, do "sudo chmod 755 /usr/local/foundry/LicensingTools7.0/bin/RLM/rlm.foundry".
5.Edit xf_foundry.lic replacing HOST_NAME MAC_ADDRESS PORT . You can get those informations using rlmutil (./rlmutil rlmhostid host and ./rlmutil rlmhostid)
PORT is by default 4102 if you dont put any (dont forget to delete the word PORT then if you dont want to specify one) . If you need more infos read RLM manual.
----note: the frist line of xf_foundry.lic is like this:"HOST sky-X711EM 84A6C8768347", don't use '-' or ':' in the MAC address, and don't add anything (e.g. PORT 4102 as menthioned above).
6.Restart RLM Server you can do that from inetd/services or just with Foundry License Utility (the best way to check logs and infos)
/usr/local/foundry/LicensingTools7.0/FoundryLicenseUtility -s stop -t RLM
/usr/local/foundry/LicensingTools7.0/FoundryLicenseUtility -s start -t RLM
or to get a status /usr/local/foundry/LicensingTools7.0/FoundryLicenseUtility -s status -t RLM
----note: if the status seems ok, but nuke programs prompts about license issue on startup, restart your computer and try again. When loged in your comper, do "sudo ... status -t RLM" "sudo ... restart -t RLM" "sudo status -t RLM", make sure the status is "RLM server is : Running", then start nuke. When you want restart the RLM at any time, make sure nuke is not running, otherwise it will fail.
**
II.tips for archlinux besides above
When try to start RLM, there's an error as "libpng12.so.0.50.0 not found", so I searched which package contains this file:
$:pkgfile libpng12.so.0"
It tells me "sage-mathematics" contains this file, so I installed the package:
$:sudo pacman -S sage-mathematics
But I still not found that file in my system, so I removed the pakcage:
$:sudo pacman -Rsnu sage-mathematics
Finally I copied this file from my ubuntu_studio:
$:cd /run/media/sky/2b15f2b2-cb05-44fc-8a22-c0b0585e54b4/lib/x86_64-linux-gnu/
$:sudo cp libpng12.so.0.50.0 /lib64
$:sudo ln -s /lib64/libpng12.so.0.50.0 /lib64/libpng12.so.0
Then RLM starts successfully, and "status" is ok. But my nuke still prompts about license issue, and I gave up. But today I booted into arch again and tried again, it works ok, no license issue.