<div class="gmail_quote">On 21 June 2011 02:59, John Jason Jordan <span dir="ltr"><<a href="mailto:johnxj@comcast.net">johnxj@comcast.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

On Mon, 20 Jun 2011 19:22:41 -0400<br>
<div class="im">John Culleton <<a href="mailto:john@wexfordpress.com">john@wexfordpress.com</a>> dijo:<br>
<br>
</div><div class="im"><br></div>
First, I su'd to root at the command line, then created<br>
the /usr/local/s140 directory.<br>
<br>
Then I copied your script to Gedit. I have a folder ~/Software into<br>
which I put all funny programs that didn't come from a Fedora repo. I<br>
made a folder in it for Scribus ~/Software/Scribus and saved the script<br>
into it as Scribus_1.4_script.<br>
<br>
From the command line I changed to the ~/Software/Scribus directory and<br>
did:<br>
<br>
[root@Devil8 Scribus]# ./Scribus_1.4_script<br>
bash: ./Scribus_1.4_script: Permission denied<br>
[root@Devil8 Scribus]# su jjj<br>
[jjj@Devil8 Scribus]$ ./Scribus_1.4_script<br>
bash: ./Scribus_1.4_script: Permission denied<br>
<br>
Root can't run a script from jjj's home folder? JJJ can't either? WTH?<br></blockquote><div><br></div><div>It's not a script yet, it's just a text file. In order to let the shell know that it is actually dealing with a script you can either run bash <scriptname> oder (better) at a shebang line. Open the file and paste #!/bin/bash (or #!/bin/sh) inte the first line of the file. Then chmod to 0755 (!) or 0700. The permission 777 means that everybody can run it, which leads a) to security problems (less important on your personal computer) and b) to permission confusion if you run it as different users. </div>

<div><br></div><div>Generally I would advise that you run the build process at least one time per hand. A script makes usually stuff harder to understand if something goes wrong. They are good though if you want to build scribus on a regular basis.</div>

</div>