nixCraft Linux Forum

nixCraft

Linux / UNIX Tech Support Forum

How should i make install Apple Shake on Fedora7

This is a discussion on How should i make install Apple Shake on Fedora7 within the CentOS / RHEL / Fedora forums, part of the Linux Distribution category; I installed fedora 7 to run shake as per manual instruction i created nreal folder in usr folder and copied ...


Go Back   nixCraft Linux Forum > Linux Distribution > CentOS / RHEL / Fedora

Linux answers from nixCraft.


CentOS / RHEL / Fedora Discussion about Redhat Enterprise Linux or CentOS or Fedora Linux related problems.

Reply

 

LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-22-2008, 01:06 PM
san san is offline
Junior Member
User
 
Join Date: Dec 2008
OS: Fedora
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
san is on a distinguished road
Question How should i make install Apple Shake on Fedora7

I installed fedora 7 to run shake as per manual instruction i created nreal folder in usr folder and copied my extracted shake application folder inside nreal folder,

then it needed ethernet card address to be in key.dat file that i added in key.dat file and copied it to keys directory inside application directory..

but to run shake i needed csh so i tried
Code:
sudo apt-get install csh
that gives me error sudo: apt-get: command not found
i even tried yum install tcshthat gave me following

Code:
Loading "upgrade-helper" plugin
Existing lock /var/run/yum.pid: another copy is running as pid 3900.
Another app is currently holding the yum lock; waiting for it to exit...
Another app is currently holding the yum lock; waiting for it to exit...
fedora                    100% |=========================| 2.1 kB    00:00     
livna                     100% |=========================| 2.1 kB    00:00     
updates                   100% |=========================| 2.3 kB    00:00     
Setting up Install Process
Parsing package install arguments
Package tcsh - 6.14-15.i386 is already installed.
inside the bin directory of this shake application their is a shake file which has following content
Code:
#!/bin/csh -f

#
# set env var, NR_SHAKE_LOCATION if not set
#
#!/bin/csh -f

#
# set env var, NR_SHAKE_LOCATION if not set
#
if ${?NR_SHAKE_LOCATION} == 0 then
  pushd `dirname $0` >& /dev/null
  setenv NR_SHAKE_LOCATION `dirname ${cwd}`;
  popd >& /dev/null
endif


#
# set env var, LD_LIBRARYN32_PATH
#
if ${?LD_LIBRARYN32_PATH} then
  setenv LD_LIBRARYN32_PATH ${NR_SHAKE_LOCATION}/lib:${LD_LIBRARYN32_PATH};
else
  setenv LD_LIBRARYN32_PATH ${NR_SHAKE_LOCATION}/lib;
endif

#
# set env var, LD_LIBRARY_PATH
#
if ${?LD_LIBRARY_PATH} then
  setenv LD_LIBRARY_PATH /usr/lib:${NR_SHAKE_LOCATION}/lib:${NR_SHAKE_LOCATION}/lib/mesa:${LD_LIBRARY_PATH};
else
  setenv LD_LIBRARY_PATH /usr/lib:${NR_SHAKE_LOCATION}/lib:${NR_SHAKE_LOCATION}/lib/mesa;
endif

#
# launch shake
#
exec ${NR_SHAKE_LOCATION}/bin/shkx.exe $argv:q


#echo NR_SHAKE_LOCATION = ${NR_SHAKE_LOCATION};
#echo LD_LIBRARYN32_PATH = ${LD_LIBRARYN32_PATH};
#echo LD_LIBRARY_PATH = ${LD_LIBRARY_PATH};
i need help to run apple shake on my fedora 7, any help will be appreciated..
Reply With Quote
  #2 (permalink)  
Old 12-22-2008, 07:53 PM
nixcraft's Avatar
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
OS: RHEL
Scripting language: Bash and Python
Posts: 2,697
Thanks: 11
Thanked 243 Times in 183 Posts
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

Did you see NR_SHAKE_LOCATION location? Do you get any specific error?
__________________
Vivek Gite
Linux Evangelist
Be proud RHEL user, and let the world know about your enterprise choices! Join RedHat user group.
Always use CODE tags for posting system output and commands!
Do you run a Linux? Let's face it, you need help
Reply With Quote
  #3 (permalink)  
Old 12-23-2008, 01:32 PM
san san is offline
Junior Member
User
 
Join Date: Dec 2008
OS: Fedora
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
san is on a distinguished road
Lightbulb

and also i read in the manual that says
To start Shake in Linux:
1 Add shake-v4.TBD.TBD/bin to your current path.
2 To start Shake, type the following in any shell:
shake

but i dont know how to add shake-v4.TBD.TBD/bin to current path

maybe this is what i am missing ..
Reply With Quote
  #4 (permalink)  
Old 12-23-2008, 05:35 PM
nixcraft's Avatar
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
OS: RHEL
Scripting language: Bash and Python
Posts: 2,697
Thanks: 11
Thanked 243 Times in 183 Posts
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

You need to use export command to add any directory to PATH. Open terminal / shell prompt and type:
Code:
export PATH=$PATH:/path/to/shake-v4.TBD.TBD/bin
If shake-v4.TBD.TBD is installed in /home/tom, then command should be:
Code:
export PATH=$PATH:/home/tom/shake-v4.TBD.TBD/bin
__________________
Vivek Gite
Linux Evangelist
Be proud RHEL user, and let the world know about your enterprise choices! Join RedHat user group.
Always use CODE tags for posting system output and commands!
Do you run a Linux? Let's face it, you need help
Reply With Quote
  #5 (permalink)  
Old 12-24-2008, 12:17 AM
san san is offline
Junior Member
User
 
Join Date: Dec 2008
OS: Fedora
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
san is on a distinguished road
Default

well i did it

[root@localhost bin]# export PATH=$PATH:/usr/nreal/shake-v4.00.0607/bin

but now i get a different error when i try to run shake
i.e.

[root@localhost bin]# shake
/usr/nreal/shake-v4.00.0607/bin/shkx.exe: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory

also it needed hostid to be entered in key.dat file in the keys folder so in terminal i typed hostid that gave me 007f0100

while in windows XP the host id is different. that in xp i use ethernet address as hostid

i am bit confused why hostid is different in different OS..
Reply With Quote
Reply

Tags
apple , apple shake , fedora , installation


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads

Thread Thread Starter Forum Replies Last Post
How to install GNU make(1) under Centos? Duan CentOS / RHEL / Fedora 1 12-17-2008 01:21 PM
Apple Mac Login To Linux Application Server amanuensis Linux software 2 11-26-2008 11:37 PM
iam very egar to make my mail server but :-( but i could not make dns server ashu.wifi Mail Servers 0 06-16-2008 08:47 AM
upgrade fedora7 to fedora8 with yum shabakeh CentOS / RHEL / Fedora 1 11-18-2007 08:17 AM
how to configure airtel broadband service in fedora7 ettahoney Computer Networking and Internet/broadband 1 08-15-2007 11:59 PM


All times are GMT +5.5. The time now is 07:35 AM.


Powered by vBulletin® Version 3.8.5 - Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2
©2005-2009 nixCraft. All rights reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38