Printing Problem

Hello List,

Basic information:
OS: SuSE Linux 11.3
Logged in as user: ddavis (no special permissions)
User Group =100
User Home = /home/ddavis
User Name = ddavis

Development environment: Gambas2
File to print: myTEST_60447.pdf
File location: /home/ddavis/Upload
Permissions: rwx rwx rwx

Variables:
p1 = Printer Name, value= Officejet_4500_G510g-m
fName = the name of the PDF file
The PDF was created by using ps2pdf and is readable and printable by Acroread.

I am developing a project using Gambas2 and I run into the following problem.
When executing the following shell command:
SHELL “lpr -P " & p1 & " -o PageSize=Letter -o PageRegion=Letter -o InputSlot=Auto -o ColorModel=RGB -o MediaType=Plain -o OutputMode=Normal” & fName
I receive the following error:
unable to access “myTest_60447.pdf” - No such file or directory.

The PRINTER variables are copied from the Acroread Printer Permissions, with p1 substituting the full printer name.

I tried to print this file by using the following path settings:
/home/ddavis/Upload/
/home/ddavis/Upload
home/ddavis/Upload/
home/ddavis/Upload
/ddavis/Upload/
/ddavis/Upload
ddavis/Upload/
ddavis/Upload
/Upload/
/Upload
Upload/
Upload

All combinations give the same result.
Where did I go wrong???
Your solution, or suggestion will be highly appreciated.

Dick Davis

On 2010-12-03, skylineds <skylineds@no-mx.forums.opensuse.org> wrote:
>
> Hello List,
>
> Basic information:
> OS: SuSE Linux 11.3
> Logged in as user: ddavis (no special permissions)
> User Group =100
> User Home = /home/ddavis
> User Name = ddavis
>
> Development environment: Gambas2
> File to print: myTEST_60447.pdf
> File location: /home/ddavis/Upload
> Permissions: rwx rwx rwx
>
> Variables:
> p1 = Printer Name, value= Officejet_4500_G510g-m
> fName = the name of the PDF file
> The PDF was created by using ps2pdf and is readable and printable by
> Acroread.
>
> I am developing a project using Gambas2 and I run into the following
> problem.
> When executing the following shell command:
> SHELL “lpr -P " & p1 & " -o PageSize=Letter -o PageRegion=Letter -o
> InputSlot=Auto -o ColorModel=RGB -o MediaType=Plain -o
> OutputMode=Normal” & fName
> I receive the following error:
> unable to access “myTest_60447.pdf” - No such file or directory.

Well, it says it can’t find your file. Have you tried giving it the full
path name to the file ?


When in doubt, use brute force.
– Ken Thompson

Ken,

Thanks for the wake up.
After a cd to the correct to the full path the file was sent to the printer.

Thanks again,
Dick Davis

File to print: myTEST_60447.pdf

unable to access “myTest_60447.pdf” - No such file or directory.

Letter case problem?

No, the lower cases was a typo.
The problem was that I did not properly moved to the working directory.
Thanks anyway,
Dick Davis