Does Laser Writer Pro 630 work under Ubuntu 8.04?

Asked by AxeFactor

I have just installed Ubuntu 8.04, everything works, not my old Apple printer. I am a bit confused because it is generally said that Linux works well with postscript printers, but then I dont find Apple in the list of supported printers. I followed the installation routine. The PC on which I run Ubuntu is quite old, round about 10 years. It stands alone.
Are there specific steps which I have to take?

Thank You for an answer
Angela Klein

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Cesare Tirabassi
Solved:
Last query:
Last reply:
Revision history for this message
Zeeshan Saeed Paracha (paracha) said :
#1

yes ofcourse Apple shake is compatible with all available ubuntu versions :) but to add little cream to your shake plz visit, http://www.ubuntuguide.org and follow the tutorials step by step .

Revision history for this message
AxeFactor (xfactor) said :
#2

I have installed Ubuntu 7.04 already, and i have Shake for Linux 4.0 in a directory. Which tutorial are you referring to?

Revision history for this message
Zeeshan Saeed Paracha (paracha) said :
#3

Well to be honest , i didnt get your question

Kindly write youe question in detail

Revision history for this message
AxeFactor (xfactor) said :
#4

I've installed Ubuntu 7.04 and i have Apple shake for Linux in a directory. In the system requirements for Shake it says it wants Fedora Core.
My question is...
1. Is Apple Shake compatible with Ubuntu Linux? e.g. are there any differences between Fedora and Ubuntu that are substantial enough for Shake NOT to work?

2. When I try to launch Shake's launch script, I get "permission denied" and "no such directory" responses displaying in terminal. Is there something I'm doing wrong?

Revision history for this message
Hanusz leszek (leszek-skynet) said :
#5

Hello,

I don't know Apple Shake but if you get a "permission denied" message, maybe it means that you need to run the script with administrative rights.
Try to launch the script in a terminal with sudo first.

sudo ./the_name_of_the_script

apparently someone installed apple shake on ubuntu in the following link so if my advice don't work maybe you can post a comment requesting help in this forum (and then paste the solution here):
http://www.vfxtalk.com/forum/linux-t3915.html?t=3915&highlight=shake+linux

Revision history for this message
AxeFactor (xfactor) said :
#6

I tried but it says "sudo: ./shake: command not found" I've included the launch script, could you check it to see if I have to change anything within it to make it work? Thanks a lot!

-Rob

----- Original Message ----
From: Hanusz leszek <email address hidden>
To: <email address hidden>
Sent: Saturday, May 26, 2007 8:00:25 PM
Subject: Re: [Question #7185]: Is Apple Shake compatible with Ubuntu Linux?

Your question #7185 on Ubuntu changed:
https://answers.launchpad.net/ubuntu/+question/7185

    Status: Open => Answered

Hanusz leszek proposed the following answer:
Hello,

I don't know Apple Shake but if you get a "permission denied" message, maybe it means that you need to run the script with administrative rights.
Try to launch the script in a terminal with sudo first.

sudo ./the_name_of_the_script

apparently someone installed apple shake on ubuntu in the following link so if my advice don't work maybe you can post a comment requesting help in this forum (and then paste the solution here):
http://www.vfxtalk.com/forum/linux-t3915.html?t=3915&highlight=shake+linux

_______________________________________________________________________
If this answers your question, please go to the following page to let us
know that it is solved:
https://answers.launchpad.net/ubuntu/+question/7185/+confirm?answer_id=4

If you still need help, you can reply to this email or go to the
following page to enter your feedback:
https://answers.launchpad.net/ubuntu/+question/7185

Revision history for this message
Cesare Tirabassi (norsetto) said :
#7

Yes, as Hanusz said it is simply sudo ./shake

Unfortunately you cannot have attachments in Launchpad Answers, so if you still want please just paste it here.

Revision history for this message
AxeFactor (xfactor) said :
#8

Here is the script...

#!/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};

There is also this script too...

#!/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 tshake
#
exec ${NR_SHAKE_LOCATION}/bin/tshkx.exe $argv:q

#echo NR_SHAKE_LOCATION = ${NR_SHAKE_LOCATION};
#echo LD_LIBRARYN32_PATH = ${LD_LIBRARYN32_PATH};
#echo LD_LIBRARY_PATH = ${LD_LIBRARY_PATH};

The second script is called tshake but I dont think its the launch script.

Thanks,

Rob

----- Original Message ----
From: Cesare Tirabassi <email address hidden>
To: <email address hidden>
Sent: Sunday, May 27, 2007 5:13:54 PM
Subject: Re: [Question #7185]: Is Apple Shake compatible with Ubuntu Linux?

Your question #7185 on Ubuntu changed:
https://answers.launchpad.net/ubuntu/+question/7185

    Status: Open => Answered

Cesare Tirabassi proposed the following answer:
Yes, as Hanusz said it is simply sudo ./shake

Unfortunately you cannot have attachments in Launchpad Answers, so if
you still want please just paste it here.

_______________________________________________________________________
If this answers your question, please go to the following page to let us
know that it is solved:
https://answers.launchpad.net/ubuntu/+question/7185/+confirm?answer_id=6

If you still need help, you can reply to this email or go to the
following page to enter your feedback:
https://answers.launchpad.net/ubuntu/+question/7185

Revision history for this message
Best Cesare Tirabassi (norsetto) said :
#9

Thanks Rob,

this script is a C-Shell script. C-Shell is not installed on Ubuntu by default. You can install it with the following command (or using Synaptic if you want):

sudo apt-get install csh

To run the script you can:

1) give this command: sudo ./shake (you must have execute permissions)
2) or give this command: csh shake

Revision history for this message
AxeFactor (xfactor) said :
#10

Thank you my friend you are the best, I switched on all the permissions and followed your instructions and it finally worked!

You made my weekend, thanks

Rob

----- Original Message ----
From: Cesare Tirabassi <email address hidden>
To: <email address hidden>
Sent: Sunday, May 27, 2007 5:45:46 PM
Subject: Re: [Question #7185]: Is Apple Shake compatible with Ubuntu Linux?

Your question #7185 on Ubuntu changed:
https://answers.launchpad.net/ubuntu/+question/7185

    Status: Open => Answered

Cesare Tirabassi proposed the following answer:
Thanks Rob,

this script is a C-Shell script. C-Shell is not installed on Ubuntu by
default. You can install it with the following command (or using
Synaptic if you want):

sudo apt-get install csh

To run the script you can:

1) give this command: sudo ./shake (you must have execute permissions)
2) or give this command: csh shake

_______________________________________________________________________
If this answers your question, please go to the following page to let us
know that it is solved:
https://answers.launchpad.net/ubuntu/+question/7185/+confirm?answer_id=8

If you still need help, you can reply to this email or go to the
following page to enter your feedback:
https://answers.launchpad.net/ubuntu/+question/7185

Revision history for this message
AxeFactor (xfactor) said :
#11

Thanks Cesare Tirabassi, that solved my question.

Revision history for this message
Jon (frojona) said :
#12

hi!

I guess I must be doing something wrong because when i type in "csh shake" I get a message saying: "/home/jon/shake/bin/shkx.exe: Permission denied".

I'm very new to Ubuntu so this is probably some beginner mistake.

Revision history for this message
AxeFactor (xfactor) said :
#13

Jon wrote:
> Your question #7185 on Ubuntu changed:
> https://answers.launchpad.net/ubuntu/+question/7185
>
> Jon posted a new comment:
> hi!
>
> I guess I must be doing something wrong because when i type in "csh
> shake" I get a message saying: "/home/jon/shake/bin/shkx.exe: Permission
> denied".
>
> I'm very new to Ubuntu so this is probably some beginner mistake.
>
>
>
Check the responses step by step, there must be something you're
missing, also check and enable all the permissions for both exe files too.

Revision history for this message
Jon (frojona) said :
#14

thank you, I looked over and tried again and again.

How do I enable the permissions for the exe files?

Revision history for this message
Ermal Koci (er-ma-li) said :
#15

Hi Jon,

Setting permissions is

chmod a+x filename

also there is

chmod a+rw filename

x is for execute permission and rw is read, write.

P.S. Guys please be a little more supportive, that's what forums are for. "Check that you're not doing something wrong" for example apart from being offensive is not an answer ...