arsperl-users Mailing List for ARSperl (Page 37)
Brought to you by:
jeffmurphy
You can subscribe to this list here.
| 1996 |
Jan
(6) |
Feb
(7) |
Mar
(16) |
Apr
(5) |
May
(21) |
Jun
(5) |
Jul
(5) |
Aug
(13) |
Sep
(4) |
Oct
(12) |
Nov
(7) |
Dec
(24) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1997 |
Jan
(38) |
Feb
(65) |
Mar
(32) |
Apr
(37) |
May
(47) |
Jun
(45) |
Jul
(28) |
Aug
(38) |
Sep
(41) |
Oct
(81) |
Nov
(21) |
Dec
(45) |
| 1998 |
Jan
(18) |
Feb
(26) |
Mar
(44) |
Apr
(34) |
May
(36) |
Jun
(44) |
Jul
(31) |
Aug
(34) |
Sep
(56) |
Oct
(40) |
Nov
(20) |
Dec
(25) |
| 1999 |
Jan
(49) |
Feb
(50) |
Mar
(33) |
Apr
(51) |
May
(54) |
Jun
(43) |
Jul
(91) |
Aug
(34) |
Sep
(120) |
Oct
(102) |
Nov
(101) |
Dec
(25) |
| 2000 |
Jan
(55) |
Feb
(105) |
Mar
(44) |
Apr
(89) |
May
(123) |
Jun
(51) |
Jul
(98) |
Aug
(120) |
Sep
(101) |
Oct
(77) |
Nov
(58) |
Dec
(39) |
| 2001 |
Jan
(36) |
Feb
(50) |
Mar
(57) |
Apr
(62) |
May
(81) |
Jun
(55) |
Jul
(46) |
Aug
(51) |
Sep
(37) |
Oct
(60) |
Nov
(38) |
Dec
(41) |
| 2002 |
Jan
(70) |
Feb
(41) |
Mar
(49) |
Apr
(55) |
May
(93) |
Jun
(48) |
Jul
(88) |
Aug
(52) |
Sep
(92) |
Oct
(63) |
Nov
(37) |
Dec
(63) |
| 2003 |
Jan
(62) |
Feb
(78) |
Mar
(101) |
Apr
(90) |
May
(104) |
Jun
(31) |
Jul
(29) |
Aug
(66) |
Sep
(50) |
Oct
(114) |
Nov
(111) |
Dec
(49) |
| 2004 |
Jan
(19) |
Feb
(68) |
Mar
(59) |
Apr
(30) |
May
(54) |
Jun
(33) |
Jul
(115) |
Aug
(69) |
Sep
(33) |
Oct
(80) |
Nov
(25) |
Dec
(47) |
| 2005 |
Jan
(34) |
Feb
(26) |
Mar
(28) |
Apr
(57) |
May
(53) |
Jun
(59) |
Jul
(42) |
Aug
(25) |
Sep
(26) |
Oct
(33) |
Nov
(20) |
Dec
(2) |
| 2006 |
Jan
(35) |
Feb
(15) |
Mar
(14) |
Apr
(7) |
May
(22) |
Jun
(22) |
Jul
(22) |
Aug
(3) |
Sep
(7) |
Oct
(20) |
Nov
(25) |
Dec
(8) |
| 2007 |
Jan
(44) |
Feb
(26) |
Mar
(24) |
Apr
(34) |
May
(23) |
Jun
(61) |
Jul
(18) |
Aug
(39) |
Sep
(28) |
Oct
(31) |
Nov
(31) |
Dec
(23) |
| 2008 |
Jan
(18) |
Feb
(5) |
Mar
(18) |
Apr
(15) |
May
(17) |
Jun
(18) |
Jul
(13) |
Aug
(10) |
Sep
(71) |
Oct
(25) |
Nov
(5) |
Dec
(14) |
| 2009 |
Jan
(3) |
Feb
(6) |
Mar
(19) |
Apr
(5) |
May
(2) |
Jun
(5) |
Jul
(23) |
Aug
|
Sep
|
Oct
(2) |
Nov
(15) |
Dec
(7) |
| 2010 |
Jan
(5) |
Feb
(6) |
Mar
|
Apr
|
May
(10) |
Jun
|
Jul
(9) |
Aug
(6) |
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
| 2011 |
Jan
(16) |
Feb
(24) |
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
(4) |
Sep
(1) |
Oct
|
Nov
(13) |
Dec
|
| 2012 |
Jan
(17) |
Feb
(14) |
Mar
(14) |
Apr
(3) |
May
(5) |
Jun
(1) |
Jul
(9) |
Aug
(1) |
Sep
(7) |
Oct
(14) |
Nov
(4) |
Dec
(4) |
| 2013 |
Jan
(1) |
Feb
(12) |
Mar
(7) |
Apr
(5) |
May
|
Jun
|
Jul
(1) |
Aug
(21) |
Sep
(5) |
Oct
(5) |
Nov
|
Dec
(4) |
| 2014 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(27) |
Jun
|
Jul
(8) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(4) |
| 2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Thilo S. <thi...@ap...> - 2007-02-12 13:00:06
|
The easiest way to relate field ids to names is probably to look them up
in the admin tool.
Alternatively, ars_GetFieldTable returns a hash with field names as keys
and IDs as values:
my %fieldTable = ars_GetFieldTable( $ctrl, $form );
foreach my $field ( keys %fieldTable ){
print "$field: $fieldTable{$field}\n";
}
The values of radio buttons, drop down lists and checkboxes are stored
internally as integers, e.g. 0,1,2,3 for "new", "assigned", "work in
progress", "closed". Again in this case the admin tool is probably the
best method to figure it out.
Thilo
Christopher Rogall schrieb:
> Thilo
>
> ok, I get the field IDs with ars_GetFieldTable, but wich field ID is the right one.
> The Field is a drop down list, but I must also enable a radio button and I must write a text to a textbox.
>
> Thanks for your help
> Chris
>
>
>> You have to use the field ID of "T_Status".
>> Moreover, T_Status is probably a selection field (radio button or
>> dropdown list), and you have to use the numerical value of "work in
>> progress", e.g.
>>
>> ars_SetEntry($c, $schema, $entry, 0, 536870915, 2 )
>>
>>
>> Regards,
>> Thilo Stapff
>>
>>
>> Christopher Rogall schrieb:
>>> Hi
>>>
>>> Running Perl 5.8.8, Remedy 6.3 API, ARSPerl 1.84.
>>>
>>> I can´t change fields. For example:
>>>
>>> I open a ticket and read all information. The Status is "assigned" and I
>> will change it to "Work in progress". How can I do this?
>>> ars_SetEntry($c, $schema, $entry, 0, "T_Status", "work in progress")||
>> die "ars_SetEntry(User): $ars_errstr";
>>> This is incorrect. ARERR #314
>>>
>>> Please, can anyone help me?
>>>
>>> Thx Chris
>>
>> -------------------------------------------------------------------------
>> Using Tomcat but need to do more? Need to support web services, security?
>> Get stuff done quickly with pre-integrated technology to make your job
>> easier.
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> _______________________________________________
>> Arsperl-users mailing list
>> Ars...@ar...
>> https://lists.sourceforge.net/lists/listinfo/arsperl-users
>
|
|
From: Christopher R. <Chr...@gm...> - 2007-02-12 12:20:31
|
Thilo ok, I get the field IDs with ars_GetFieldTable, but wich field ID is the right one. The Field is a drop down list, but I must also enable a radio button and I must write a text to a textbox. Thanks for your help Chris > You have to use the field ID of "T_Status". > Moreover, T_Status is probably a selection field (radio button or > dropdown list), and you have to use the numerical value of "work in > progress", e.g. > > ars_SetEntry($c, $schema, $entry, 0, 536870915, 2 ) > > > Regards, > Thilo Stapff > > > Christopher Rogall schrieb: > > Hi > > > > Running Perl 5.8.8, Remedy 6.3 API, ARSPerl 1.84. > > > > I can´t change fields. For example: > > > > I open a ticket and read all information. The Status is "assigned" and I > will change it to "Work in progress". How can I do this? > > > > ars_SetEntry($c, $schema, $entry, 0, "T_Status", "work in progress")|| > die "ars_SetEntry(User): $ars_errstr"; > > > > This is incorrect. ARERR #314 > > > > Please, can anyone help me? > > > > Thx Chris > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier. > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users -- "Feel free" - 5 GB Mailbox, 50 FreeSMS/Monat ... Jetzt GMX ProMail testen: www.gmx.net/de/go/mailfooter/promail-out |
|
From: Thilo S. <thi...@ap...> - 2007-02-12 12:11:06
|
You have to use the field ID of "T_Status". Moreover, T_Status is probably a selection field (radio button or dropdown list), and you have to use the numerical value of "work in progress", e.g. ars_SetEntry($c, $schema, $entry, 0, 536870915, 2 ) Regards, Thilo Stapff Christopher Rogall schrieb: > Hi > > Running Perl 5.8.8, Remedy 6.3 API, ARSPerl 1.84. > > I can´t change fields. For example: > > I open a ticket and read all information. The Status is "assigned" and I will change it to "Work in progress". How can I do this? > > ars_SetEntry($c, $schema, $entry, 0, "T_Status", "work in progress")|| die "ars_SetEntry(User): $ars_errstr"; > > This is incorrect. ARERR #314 > > Please, can anyone help me? > > Thx Chris |
|
From: Christopher R. <Chr...@gm...> - 2007-02-12 11:48:04
|
Hi Running Perl 5.8.8, Remedy 6.3 API, ARSPerl 1.84. I can´t change fields. For example: I open a ticket and read all information. The Status is "assigned" and I will change it to "Work in progress". How can I do this? ars_SetEntry($c, $schema, $entry, 0, "T_Status", "work in progress")|| die "ars_SetEntry(User): $ars_errstr"; This is incorrect. ARERR #314 Please, can anyone help me? Thx Chris -- Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer |
|
From: Georg G. <ggr...@gm...> - 2007-02-09 16:55:23
|
I will do so on monday, there the migration to 7.0 on our test architecture should be done. I'll check that with my local environment, since i want to be as sure as i want that i can get this running properly. Though, for bringing this up to the production servers it needs a stable build anyway.... so i wait anyway :) Kind regards, Georg On 2/9/07, Jeff Murphy <jcm...@je...> wrote: > Thanks to Thilo Stapff, 7.0 compatibility is currently in CVS. I haven't > packaged it up and posted it to CPAN yet, but you are welcome to > checkout the CVS source and try it. I'll post it to CPAN this weekend. > > jeff > > > > > On Fri, 2007-02-09 at 12:23 +0100, Georg Grabler wrote: > > Hello, > > > > We're going to change our server infrastructure from ARS 6.3 to ARS 7.0. > > > > I've read somewhere that the current 1.85 version performs quite well > > using 6.3 AR Api libraries and ARSPerl 1.85. > > > > Is / are there any plans on releasing a ARSPerl for 7.0 as well? > > > > And is anyone who can actually confirm that ARSPerl-1.85 is working > > against a 7.0 server architecture? > > > > Kind regards, > > Georg > > > > ------------------------------------------------------------------------- > > Using Tomcat but need to do more? Need to support web services, security? > > Get stuff done quickly with pre-integrated technology to make your job > easier. > > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > > Arsperl-users mailing list > > Ars...@ar... > > https://lists.sourceforge.net/lists/listinfo/arsperl-users > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier. > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > |
|
From: Jeff M. <jcm...@je...> - 2007-02-09 14:15:48
|
Thanks to Thilo Stapff, 7.0 compatibility is currently in CVS. I haven't packaged it up and posted it to CPAN yet, but you are welcome to checkout the CVS source and try it. I'll post it to CPAN this weekend. jeff On Fri, 2007-02-09 at 12:23 +0100, Georg Grabler wrote: > Hello, > > We're going to change our server infrastructure from ARS 6.3 to ARS 7.0. > > I've read somewhere that the current 1.85 version performs quite well > using 6.3 AR Api libraries and ARSPerl 1.85. > > Is / are there any plans on releasing a ARSPerl for 7.0 as well? > > And is anyone who can actually confirm that ARSPerl-1.85 is working > against a 7.0 server architecture? > > Kind regards, > Georg > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier. > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users |
|
From: Georg G. <ggr...@gm...> - 2007-02-09 12:42:08
|
I used vac / xlc to compile arsperl. Just be sure that it's in path, and you specify the right ars api version, everything else should be done automatically. vac actually is the IBM XL C Compiler, works flawlessly. Kind regards, Georg On 2/9/07, Nei...@hb... <Nei...@hb...> wrote: > Being used to Solaris, this is a big unknown to me. I need to get ARSPerl > on an AIX box. > > Which compiler should I sue? > > Are there any env settings I need? > > Any other gotcha a Solaris person wouldn't think of? > > > > > Neil Anderson > Technical Specialist > Service Process Automation (SPA) > Enterprise Technology Services > Group Technology > Group Services - HBOS plc > Extension - (7584) 30455 > DDI 01422 830455 > Mobile: 07785 372821 > Postal Reference:CW1/Z2D13/GT/SPA/NA > E-mail: Nei...@hb... > group services - delivering for HBOS > > > . > ---------------------------------------------------------------------------------------------------------------------- > > HBOS plc, Registered in Scotland No. SC218813. Registered Office: The Mound, > Edinburgh EH1 1YZ. HBOS plc is a holding company, subsidiaries of which are > authorised and regulated by the Financial Services Authority. > ============================================================================== > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier. > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > |
|
From: Georg G. <ggr...@gm...> - 2007-02-09 12:39:07
|
--QUOTE Quanah Gibson-Mount-- Perhaps slightly off topic, but is anyone here thinking of using a 64-bit Linux platform for ARS? If you are, be *warned* that Remedy AR Server is only 32-bit at this time, thus can only run on a 64-bit Linux under 32-bit emulation, and will only be able to access the normal 2GB upper limit available to 32 bit applications. We very nearly went with 64-bit linux until we found out the truth of their "64-bit support". --END QUOTE Quanah Gibson-Mount-- Thank you for this information, quite useful, we are no happy we decided not to change the servers architecture. --QUOTE Jarl Gr=F8neng-- We'r using arsperl 1.81 compiled with 5.1.2 library against a 7.01 server. No problem so far. --END QUOTE Jarl Gr=F8neng-- That's what i wanted to hear. We will anyway move from 5.01 API to 6.3 for ARSPerl, since especially on windows system we experienced problems, that the 5.01 api sometimes just hangs up. I decided to re-build arsperl for this, so i also finally have one and the same version on the servers (some are still even older libraries). Kind regards, Georg On 2/9/07, Jarl Gr=F8neng <jar...@gm...> wrote: > We'r using arsperl 1.81 compiled with 5.1.2 library against a 7.01 > server. No problem so far. > > -- > Jarl > > On 2/9/07, Georg Grabler <ggr...@gm...> wrote: > > Hello, > > > > We're going to change our server infrastructure from ARS 6.3 to ARS 7.0= . > > > > I've read somewhere that the current 1.85 version performs quite well > > using 6.3 AR Api libraries and ARSPerl 1.85. > > > > Is / are there any plans on releasing a ARSPerl for 7.0 as well? > > > > And is anyone who can actually confirm that ARSPerl-1.85 is working > > against a 7.0 server architecture? > > > > Kind regards, > > Georg > > > > -----------------------------------------------------------------------= -- > > Using Tomcat but need to do more? Need to support web services, securit= y? > > Get stuff done quickly with pre-integrated technology to make your job > easier. > > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geron= imo > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 > > _______________________________________________ > > Arsperl-users mailing list > > Ars...@ar... > > https://lists.sourceforge.net/lists/listinfo/arsperl-users > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier. > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronim= o > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > |
|
From: <Nei...@HB...> - 2007-02-09 12:18:51
|
Being used to Solaris, this is a big unknown to me. I need to get ARSPerl = on an AIX box. Which compiler should I sue=3F Are there any env settings I need=3F Any other gotcha a Solaris person wouldn't think of=3F Neil Anderson Technical Specialist Service Process Automation (SPA) Enterprise Technology Services Group Technology Group Services - HBOS plc Extension - (7584) 30455 DDI 01422 830455 Mobile: 07785 372821 Postal Reference:CW1/Z2D13/GT/SPA/NA E-mail: Nei...@hb... group services - delivering for HBOS . ---------------------------------------------------------------------------= ------------------------------------------- HBOS plc, Registered in Scotland No. SC218813. Registered Office: The Mound= ,= Edinburgh EH1 1YZ. HBOS plc is a holding company, subsidiaries of which ar= e= authorised and regulated by the Financial Services Authority. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D |
|
From: <jar...@gm...> - 2007-02-09 12:07:25
|
We'r using arsperl 1.81 compiled with 5.1.2 library against a 7.01 server. No problem so far. -- Jarl On 2/9/07, Georg Grabler <ggr...@gm...> wrote: > Hello, > > We're going to change our server infrastructure from ARS 6.3 to ARS 7.0. > > I've read somewhere that the current 1.85 version performs quite well > using 6.3 AR Api libraries and ARSPerl 1.85. > > Is / are there any plans on releasing a ARSPerl for 7.0 as well? > > And is anyone who can actually confirm that ARSPerl-1.85 is working > against a 7.0 server architecture? > > Kind regards, > Georg > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier. > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > |
|
From: Quanah Gibson-M. <qu...@st...> - 2007-02-09 11:50:34
|
--On Friday, February 09, 2007 12:23 PM +0100 Georg Grabler <ggr...@gm...> wrote: > Hello, > > We're going to change our server infrastructure from ARS 6.3 to ARS 7.0. > > I've read somewhere that the current 1.85 version performs quite well > using 6.3 AR Api libraries and ARSPerl 1.85. > > Is / are there any plans on releasing a ARSPerl for 7.0 as well? > > And is anyone who can actually confirm that ARSPerl-1.85 is working > against a 7.0 server architecture? Stanford is also in the process of moving to 7.0. Perhaps slightly off topic, but is anyone here thinking of using a 64-bit Linux platform for ARS? If you are, be *warned* that Remedy AR Server is only 32-bit at this time, thus can only run on a 64-bit Linux under 32-bit emulation, and will only be able to access the normal 2GB upper limit available to 32 bit applications. We very nearly went with 64-bit linux until we found out the truth of their "64-bit support". --Quanah -- Quanah Gibson-Mount Principal Software Developer ITS/Shared Application Services Stanford University GnuPG Public Key: http://www.stanford.edu/~quanah/pgp.html |
|
From: Georg G. <ggr...@gm...> - 2007-02-09 11:30:09
|
Hello, We're going to change our server infrastructure from ARS 6.3 to ARS 7.0. I've read somewhere that the current 1.85 version performs quite well using 6.3 AR Api libraries and ARSPerl 1.85. Is / are there any plans on releasing a ARSPerl for 7.0 as well? And is anyone who can actually confirm that ARSPerl-1.85 is working against a 7.0 server architecture? Kind regards, Georg |
|
From: Bowman, B. A <Bow...@st...> - 2007-01-30 14:33:44
|
Either there is on c compiler installed, or it s not in your path. Or you could try gcc. If you have gc, then make a symbolic link to it that is in you path. Did you run "perl Makefile"? I don't know how you could get to make test without doing that and "make" first. The proper order is in the install readme file. Brent -----Original Message----- From: ars...@ar... [mailto:ars...@ar...] On Behalf Of Serouche Rahimpour Sent: Tuesday, January 30, 2007 3:58 AM To: ARSperl User Discussion Subject: Re: [Arsperl-users] is it possible to run the arsperl on anothermachine that where the Remedy is installed many thanks to you Michiel and also to Brent Bowman, Scott and Mark for the feedbacks. Hopefully I'll be able to do something useful with them. By the time I have another problem which is somehow related to this actual post. Here it is: > make test cc -c -I/opt/remedy/api/include -D_LARGEFILE_SOURCE=20 -D_FILE_OFFSET_BITS=3D64 -xO3 -xdepend -DVERSION=3D\"1.84\" =20 -DXS_VERSION=3D\"1.84\" -KPIC -I/usr/perl5/5.6.1/lib/sun4-solaris-64int/CORE -g -DARS32 -DARS452 -DPERL_PATCHLEVEL_IS=3D6 -DPERL_SUBVERSION_IS=3D1 -DPERL_BASEREV_IS=3D50 = ARS.c sh: cc: not found *** Error code 1 make: Fatal error: Command failed for target `ARS.o' I am suspecting an issue with the c compiler. But at this stage I don't dare to contact my sys admins for some reasons. Or better to say I would prefer resolving my problems myself. Anyway therefore I though maybe I could try another machine. But before spending time on this new task I'd like to have some outputs from you guys. I assume as experts you gonna give me some useful thoughts. Many thanks in advance. Serouche Michiel Beijen wrote: > yes, you can, but the platform has to be supported by Remedy (that=20 > means; the API files must be available for that platform). > You can then install ARSPerl as per the instructions on the website. > > -- > Michiel > > On 1/29/07, Serouche Rahimpour <ser...@dc...> wrote: > =20 >> it is maybe a stupid question. >> But please confirm or deny. >> Thank you. >> Serouche >> >> --------------------------------------------------------------------- >> ---- Take Surveys. Earn Cash. Influence the Future of IT Join=20 >> SourceForge.net's Techsay panel and you'll get the chance to share=20 >> your opinions on IT & business topics through brief surveys - and=20 >> earn cash=20 >> = http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DE >> VDEV _______________________________________________ >> Arsperl-users mailing list >> Ars...@ar... >> https://lists.sourceforge.net/lists/listinfo/arsperl-users >> >> =20 > > ---------------------------------------------------------------------- > --- Take Surveys. Earn Cash. Influence the Future of IT Join=20 > SourceForge.net's Techsay panel and you'll get the chance to share=20 > your opinions on IT & business topics through brief surveys - and earn > cash=20 > = http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEV > DEV _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > > =20 ------------------------------------------------------------------------ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDE V _______________________________________________ Arsperl-users mailing list Ars...@ar... https://lists.sourceforge.net/lists/listinfo/arsperl-users |
|
From: Serouche R. <ser...@dc...> - 2007-01-30 08:58:03
|
many thanks to you Michiel and also to Brent Bowman, Scott and Mark for the feedbacks. Hopefully I'll be able to do something useful with them. By the time I have another problem which is somehow related to this actual post. Here it is: > make test cc -c -I/opt/remedy/api/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xO3 -xdepend -DVERSION=\"1.84\" -DXS_VERSION=\"1.84\" -KPIC -I/usr/perl5/5.6.1/lib/sun4-solaris-64int/CORE -g -DARS32 -DARS452 -DPERL_PATCHLEVEL_IS=6 -DPERL_SUBVERSION_IS=1 -DPERL_BASEREV_IS=50 ARS.c sh: cc: not found *** Error code 1 make: Fatal error: Command failed for target `ARS.o' I am suspecting an issue with the c compiler. But at this stage I don't dare to contact my sys admins for some reasons. Or better to say I would prefer resolving my problems myself. Anyway therefore I though maybe I could try another machine. But before spending time on this new task I'd like to have some outputs from you guys. I assume as experts you gonna give me some useful thoughts. Many thanks in advance. Serouche Michiel Beijen wrote: > yes, you can, but the platform has to be supported by Remedy (that > means; the API files must be available for that platform). > You can then install ARSPerl as per the instructions on the website. > > -- > Michiel > > On 1/29/07, Serouche Rahimpour <ser...@dc...> wrote: > >> it is maybe a stupid question. >> But please confirm or deny. >> Thank you. >> Serouche >> >> ------------------------------------------------------------------------- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share your >> opinions on IT & business topics through brief surveys - and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> Arsperl-users mailing list >> Ars...@ar... >> https://lists.sourceforge.net/lists/listinfo/arsperl-users >> >> > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > > |
|
From: Michiel B. <mic...@gm...> - 2007-01-29 15:58:12
|
yes, you can, but the platform has to be supported by Remedy (that means; the API files must be available for that platform). You can then install ARSPerl as per the instructions on the website. -- Michiel On 1/29/07, Serouche Rahimpour <ser...@dc...> wrote: > it is maybe a stupid question. > But please confirm or deny. > Thank you. > Serouche > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > |
|
From: Vaughan, M. <Mar...@ca...> - 2007-01-29 15:04:36
|
Yes, as long as the system you're running from has access to the ARS server. When calling ars_Login, provide the correct server name in the call to ars_Login. Also, define the port you're using by creating an environment variable ARTCPPORT, such as=20 $ export ARTCPPORT=3D25000 Mark Vaughan TTS Development Comcast Cable Corporation 720.268.8591 -----Original Message----- From: ars...@ar... [mailto:ars...@ar...] On Behalf Of Serouche Rahimpour Sent: Monday, January 29, 2007 4:52 AM To: ARSperl User Discussion Subject: [Arsperl-users] is it possible to run the arsperl on another machine that where the Remedy is installed it is maybe a stupid question. But please confirm or deny. Thank you. Serouche ------------------------------------------------------------------------ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDE V _______________________________________________ Arsperl-users mailing list Ars...@ar... https://lists.sourceforge.net/lists/listinfo/arsperl-users |
|
From: <cla...@be...> - 2007-01-29 14:45:21
|
It is possible but you need to have the ARS API=20 libraries on that system and you need to make sure that=20 they are somwhere in your library path. For example, on solaris if you have the library files in=20 /usr/ar/api/. (You can do the unstallation by taring up=20 the api directory on the server and copying it to your=20 client system) When you run 'crle' the '/usr/ar/api/lib' directory should show up=20 in the output. In crle the last two lines of output is the=20 command line to set up the library environment in it's current state. If your library path is not in the list of directories listed after the '-l'=20 in the command line just add :/usr/ar/api/lib to the end of the directory listing=20 and run that command line. Example: crle -c /var/ld/ld.config -l /lib:/usr/lib:/usr/local/lib:/U01/app/oracle/product/920/lib:/usr/ar/api /lib Clayton > -----Original Message----- > From: ars...@ar...=20 > [mailto:ars...@ar...] On Behalf Of=20 > Serouche Rahimpour > Sent: January 29, 2007 6:52 AM > To: ARSperl User Discussion > Subject: [Arsperl-users] is it possible to run the arsperl on=20 > another machine that where the Remedy is installed >=20 > it is maybe a stupid question. > But please confirm or deny. > Thank you. > Serouche >=20 > -------------------------------------------------------------- > ----------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the=20 > chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge &CID=3DDEVDEV > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users >=20 |
|
From: Bowman, B. A <Bow...@st...> - 2007-01-29 14:16:07
|
Yes, you just need the api's on the machine where the arsperl is running. Then you connect to the machine by name when you make the connection. -----Original Message----- From: ars...@ar... [mailto:ars...@ar...] On Behalf Of Serouche Rahimpour Sent: Monday, January 29, 2007 6:52 AM To: ARSperl User Discussion Subject: [Arsperl-users] is it possible to run the arsperl on anothermachine that where the Remedy is installed it is maybe a stupid question. But please confirm or deny. Thank you. Serouche ------------------------------------------------------------------------ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDE V _______________________________________________ Arsperl-users mailing list Ars...@ar... https://lists.sourceforge.net/lists/listinfo/arsperl-users |
|
From: Serouche R. <ser...@dc...> - 2007-01-29 11:52:39
|
it is maybe a stupid question. But please confirm or deny. Thank you. Serouche |
|
From: Serouche R. <ser...@dc...> - 2007-01-29 09:42:24
|
Hi Mark, many thanks for your feedback. The problem was that when I downloaded the file from the web, I stored it first on Windows. When I gunziped it, the output was ARSperl-1.85 without extension. Then I copied over this file to my Unix box. Then I had this problem with the tar (see my previous posts). So on my Unix I copied ARSperl-1.85 to ARSperl-1.85.tar so I was able to use tar on it. But then it could not create the directory ARSperl-1.85 you are mentioning not because I don't have permissions on the directory but because there was already a file called like the directory. I figured this out by trying to create the directory myself by hand. So now I moved the ARSperl-1.85 to another location so tar was able to untar. It could be maybe usefull to have a sort of README coming along with ARSperl-1.85.gzp to list few basics to start with. Maybe. Cheers Serouche Mark Vaughan wrote: > Serouche, > When you untar the tarball, it creates a directory tree directly underneath > your current directory beginning with ARSperl-1.85. It appears by the > output that this directory exists, but you are unable to write to it. Check > for the existence of the ARSperl-1.85 directory (ls -ld ARSperl-1.85). If > this exists, verify that you have write permissions. It should say > something like 'drwxr-xr-x'. If this directory exists, try to create a file > in the directory (>ARSperl-1.85/x). If this fails then the directory > exists, but you don't have permissions to write to it. Either change the > permissions or, if there are no files in the directory, consider removing > the directory so that it gets created correctly (rm -rf ARSperl-1.85) via > the tarball. Then start over. > > If all of this fails, please try untarring using tar -xvf ARSperl-1.85.tar. > This will give verbose output and then send that back out again. > > HTH, > Mark Vaughan > 303.601.4434 (mobile) > -----Original Message----- > From: ars...@ar... > [mailto:ars...@ar...] On Behalf Of Serouche Rahimpour > Sent: Sunday, January 28, 2007 7:44 AM > To: ARSperl User Discussion > Subject: Re: [Arsperl-users] installation issue > > could you say to which directory do I need write permission ? > > Mark Vaughan wrote: > > >> It appears that you do not have write permissions to the directory. >> >> Thanks, >> Mark Vaughan >> 303.471.9987 (home) >> 303.601.4434 (mobile) >> -----Original Message----- >> From: ars...@ar... >> [mailto:ars...@ar...] On Behalf Of Serouche Rahimpour >> Sent: Saturday, January 27, 2007 3:14 PM >> To: ARSperl User Discussion >> Subject: Re: [Arsperl-users] installation issue >> >> I tried both >> tar xf ARSperl-1.85.tar >> and >> tar -xf ARSperl-1.85.tar >> For both cases I get: >> tar: ARSOOform.pm - cannot create >> tar: ARS.pm - cannot create >> tar: ARS.xs - cannot create >> tar: cannot open ARSperl-1.85/html/manual/OO Not a directory >> tar: cannot open ARSperl-1.85/html/manual/OO Not a directory >> tar: cannot open ARSperl-1.85/html/manual/OO Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html/manual Not a directory >> tar: cannot open ARSperl-1.85/html Not a directory >> tar: cannot open ARSperl-1.85/html Not a directory >> tar: cannot open ARSperl-1.85/html Not a directory >> tar: cannot open ARSperl-1.85/html Not a directory >> tar: cannot open ARSperl-1.85/html Not a directory >> tar: cannot open ARSperl-1.85/html Not a directory >> tar: cannot open ARSperl-1.85/html Not a directory >> tar: cannot open ARSperl-1.85/html Not a directory >> tar: cannot open ARSperl-1.85/html Not a directory >> tar: cannot open ARSperl-1.85/html Not a directory >> tar: ARSOOmsgs.pm - cannot create >> tar: ARSOOsup.pm - cannot create >> tar: ARSnparm.pm - cannot create >> tar: Artistic - cannot create >> tar: CHANGES - cannot create >> tar: INSTALLATION - cannot create >> tar: LICENSE - cannot create >> tar: MANIFEST - cannot create >> tar: Makefile.PL - cannot create >> tar: README - cannot create >> tar: RELNOTES - cannot create >> tar: TODO - cannot create >> tar: USAGE - cannot create >> tar: changes.dat - cannot create >> tar: support-h.template - cannot create >> tar: support.c - cannot create >> tar: supportrev.c - cannot create >> tar: supportrev.h - cannot create >> tar: typemap - cannot create >> tar: cannot open ARSperl-1.85/example/2.x Not a directory >> tar: cannot open ARSperl-1.85/example/3.x Not a directory >> tar: cannot open ARSperl-1.85/example/3.x Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/example Not a directory >> tar: cannot open ARSperl-1.85/infra Not a directory >> tar: cannot open ARSperl-1.85/infra Not a directory >> tar: cannot open ARSperl-1.85/infra Not a directory >> tar: cannot open ARSperl-1.85/infra Not a directory >> tar: cannot open ARSperl-1.85/infra Not a directory >> tar: cannot open ARSperl-1.85/infra Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> tar: cannot open ARSperl-1.85/t Not a directory >> >> Any idea ? >> Thanks >> Serouche >> >> >> >> >> Jeff Murphy wrote: >> >> >> >>> Serouche Rahimpour wrote: >>> >>> >>> >>> >>>> so the solution is obvious. >>>> On dowload what you get is a gz file. >>>> First change the file name for .tgz >>>> Then proceed to gunzip + tar >>>> But now I get a full bunch of "cannot create" message. >>>> I guess I'll find the solution by searching the archive. >>>> Thanks for your Time anyway. >>>> Serouche >>>> >>>> >>>> >>>> >>>> >>>> >>> For SUN, include the exact commands you are using and the full output >>> showing the errors. >>> >>> >>> ------------------------------------------------------------------------- >>> Take Surveys. Earn Cash. Influence the Future of IT >>> Join SourceForge.net's Techsay panel and you'll get the chance to share >>> >>> >>> >> your >> >> >> >>> opinions on IT & business topics through brief surveys - and earn cash >>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>> _______________________________________________ >>> Arsperl-users mailing list >>> Ars...@ar... >>> https://lists.sourceforge.net/lists/listinfo/arsperl-users >>> >>> >>> >>> >>> >> ------------------------------------------------------------------------- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> > your > >> opinions on IT & business topics through brief surveys - and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> Arsperl-users mailing list >> Ars...@ar... >> https://lists.sourceforge.net/lists/listinfo/arsperl-users >> >> >> ------------------------------------------------------------------------- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to share >> > your > >> opinions on IT & business topics through brief surveys - and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> Arsperl-users mailing list >> Ars...@ar... >> https://lists.sourceforge.net/lists/listinfo/arsperl-users >> >> >> >> > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > > |
|
From: Mark V. <mar...@co...> - 2007-01-28 21:39:26
|
Serouche, When you untar the tarball, it creates a directory tree directly underneath your current directory beginning with ARSperl-1.85. It appears by the output that this directory exists, but you are unable to write to it. Check for the existence of the ARSperl-1.85 directory (ls -ld ARSperl-1.85). If this exists, verify that you have write permissions. It should say something like 'drwxr-xr-x'. If this directory exists, try to create a file in the directory (>ARSperl-1.85/x). If this fails then the directory exists, but you don't have permissions to write to it. Either change the permissions or, if there are no files in the directory, consider removing the directory so that it gets created correctly (rm -rf ARSperl-1.85) via the tarball. Then start over. If all of this fails, please try untarring using tar -xvf ARSperl-1.85.tar. This will give verbose output and then send that back out again. HTH, Mark Vaughan 303.601.4434 (mobile) -----Original Message----- From: ars...@ar... [mailto:ars...@ar...] On Behalf Of Serouche Rahimpour Sent: Sunday, January 28, 2007 7:44 AM To: ARSperl User Discussion Subject: Re: [Arsperl-users] installation issue could you say to which directory do I need write permission ? Mark Vaughan wrote: >It appears that you do not have write permissions to the directory. > >Thanks, >Mark Vaughan >303.471.9987 (home) >303.601.4434 (mobile) >-----Original Message----- >From: ars...@ar... >[mailto:ars...@ar...] On Behalf Of Serouche Rahimpour >Sent: Saturday, January 27, 2007 3:14 PM >To: ARSperl User Discussion >Subject: Re: [Arsperl-users] installation issue > >I tried both >tar xf ARSperl-1.85.tar >and >tar -xf ARSperl-1.85.tar >For both cases I get: >tar: ARSOOform.pm - cannot create >tar: ARS.pm - cannot create >tar: ARS.xs - cannot create >tar: cannot open ARSperl-1.85/html/manual/OO Not a directory >tar: cannot open ARSperl-1.85/html/manual/OO Not a directory >tar: cannot open ARSperl-1.85/html/manual/OO Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: ARSOOmsgs.pm - cannot create >tar: ARSOOsup.pm - cannot create >tar: ARSnparm.pm - cannot create >tar: Artistic - cannot create >tar: CHANGES - cannot create >tar: INSTALLATION - cannot create >tar: LICENSE - cannot create >tar: MANIFEST - cannot create >tar: Makefile.PL - cannot create >tar: README - cannot create >tar: RELNOTES - cannot create >tar: TODO - cannot create >tar: USAGE - cannot create >tar: changes.dat - cannot create >tar: support-h.template - cannot create >tar: support.c - cannot create >tar: supportrev.c - cannot create >tar: supportrev.h - cannot create >tar: typemap - cannot create >tar: cannot open ARSperl-1.85/example/2.x Not a directory >tar: cannot open ARSperl-1.85/example/3.x Not a directory >tar: cannot open ARSperl-1.85/example/3.x Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory > >Any idea ? >Thanks >Serouche > > > > >Jeff Murphy wrote: > > >>Serouche Rahimpour wrote: >> >> >> >>>so the solution is obvious. >>>On dowload what you get is a gz file. >>>First change the file name for .tgz >>>Then proceed to gunzip + tar >>>But now I get a full bunch of "cannot create" message. >>>I guess I'll find the solution by searching the archive. >>>Thanks for your Time anyway. >>>Serouche >>> >>> >>> >>> >>> >>For SUN, include the exact commands you are using and the full output >>showing the errors. >> >> >>------------------------------------------------------------------------- >>Take Surveys. Earn Cash. Influence the Future of IT >>Join SourceForge.net's Techsay panel and you'll get the chance to share >> >> >your > > >>opinions on IT & business topics through brief surveys - and earn cash >>http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>_______________________________________________ >>Arsperl-users mailing list >>Ars...@ar... >>https://lists.sourceforge.net/lists/listinfo/arsperl-users >> >> >> >> > > >------------------------------------------------------------------------- >Take Surveys. Earn Cash. Influence the Future of IT >Join SourceForge.net's Techsay panel and you'll get the chance to share your >opinions on IT & business topics through brief surveys - and earn cash >http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >_______________________________________________ >Arsperl-users mailing list >Ars...@ar... >https://lists.sourceforge.net/lists/listinfo/arsperl-users > > >------------------------------------------------------------------------- >Take Surveys. Earn Cash. Influence the Future of IT >Join SourceForge.net's Techsay panel and you'll get the chance to share your >opinions on IT & business topics through brief surveys - and earn cash >http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >_______________________________________________ >Arsperl-users mailing list >Ars...@ar... >https://lists.sourceforge.net/lists/listinfo/arsperl-users > > > ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Arsperl-users mailing list Ars...@ar... https://lists.sourceforge.net/lists/listinfo/arsperl-users |
|
From: Serouche R. <ser...@dc...> - 2007-01-28 14:49:43
|
could you say to which directory do I need write permission ? Mark Vaughan wrote: >It appears that you do not have write permissions to the directory. > >Thanks, >Mark Vaughan >303.471.9987 (home) >303.601.4434 (mobile) >-----Original Message----- >From: ars...@ar... >[mailto:ars...@ar...] On Behalf Of Serouche Rahimpour >Sent: Saturday, January 27, 2007 3:14 PM >To: ARSperl User Discussion >Subject: Re: [Arsperl-users] installation issue > >I tried both >tar xf ARSperl-1.85.tar >and >tar -xf ARSperl-1.85.tar >For both cases I get: >tar: ARSOOform.pm - cannot create >tar: ARS.pm - cannot create >tar: ARS.xs - cannot create >tar: cannot open ARSperl-1.85/html/manual/OO Not a directory >tar: cannot open ARSperl-1.85/html/manual/OO Not a directory >tar: cannot open ARSperl-1.85/html/manual/OO Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html/manual Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: cannot open ARSperl-1.85/html Not a directory >tar: ARSOOmsgs.pm - cannot create >tar: ARSOOsup.pm - cannot create >tar: ARSnparm.pm - cannot create >tar: Artistic - cannot create >tar: CHANGES - cannot create >tar: INSTALLATION - cannot create >tar: LICENSE - cannot create >tar: MANIFEST - cannot create >tar: Makefile.PL - cannot create >tar: README - cannot create >tar: RELNOTES - cannot create >tar: TODO - cannot create >tar: USAGE - cannot create >tar: changes.dat - cannot create >tar: support-h.template - cannot create >tar: support.c - cannot create >tar: supportrev.c - cannot create >tar: supportrev.h - cannot create >tar: typemap - cannot create >tar: cannot open ARSperl-1.85/example/2.x Not a directory >tar: cannot open ARSperl-1.85/example/3.x Not a directory >tar: cannot open ARSperl-1.85/example/3.x Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/example Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/infra Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory >tar: cannot open ARSperl-1.85/t Not a directory > >Any idea ? >Thanks >Serouche > > > > >Jeff Murphy wrote: > > >>Serouche Rahimpour wrote: >> >> >> >>>so the solution is obvious. >>>On dowload what you get is a gz file. >>>First change the file name for .tgz >>>Then proceed to gunzip + tar >>>But now I get a full bunch of "cannot create" message. >>>I guess I'll find the solution by searching the archive. >>>Thanks for your Time anyway. >>>Serouche >>> >>> >>> >>> >>> >>For SUN, include the exact commands you are using and the full output >>showing the errors. >> >> >>------------------------------------------------------------------------- >>Take Surveys. Earn Cash. Influence the Future of IT >>Join SourceForge.net's Techsay panel and you'll get the chance to share >> >> >your > > >>opinions on IT & business topics through brief surveys - and earn cash >>http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>_______________________________________________ >>Arsperl-users mailing list >>Ars...@ar... >>https://lists.sourceforge.net/lists/listinfo/arsperl-users >> >> >> >> > > >------------------------------------------------------------------------- >Take Surveys. Earn Cash. Influence the Future of IT >Join SourceForge.net's Techsay panel and you'll get the chance to share your >opinions on IT & business topics through brief surveys - and earn cash >http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >_______________________________________________ >Arsperl-users mailing list >Ars...@ar... >https://lists.sourceforge.net/lists/listinfo/arsperl-users > > >------------------------------------------------------------------------- >Take Surveys. Earn Cash. Influence the Future of IT >Join SourceForge.net's Techsay panel and you'll get the chance to share your >opinions on IT & business topics through brief surveys - and earn cash >http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >_______________________________________________ >Arsperl-users mailing list >Ars...@ar... >https://lists.sourceforge.net/lists/listinfo/arsperl-users > > > |
|
From: Mark V. <mar...@co...> - 2007-01-27 23:41:22
|
It appears that you do not have write permissions to the directory. Thanks, Mark Vaughan 303.471.9987 (home) 303.601.4434 (mobile) -----Original Message----- From: ars...@ar... [mailto:ars...@ar...] On Behalf Of Serouche Rahimpour Sent: Saturday, January 27, 2007 3:14 PM To: ARSperl User Discussion Subject: Re: [Arsperl-users] installation issue I tried both tar xf ARSperl-1.85.tar and tar -xf ARSperl-1.85.tar For both cases I get: tar: ARSOOform.pm - cannot create tar: ARS.pm - cannot create tar: ARS.xs - cannot create tar: cannot open ARSperl-1.85/html/manual/OO Not a directory tar: cannot open ARSperl-1.85/html/manual/OO Not a directory tar: cannot open ARSperl-1.85/html/manual/OO Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: ARSOOmsgs.pm - cannot create tar: ARSOOsup.pm - cannot create tar: ARSnparm.pm - cannot create tar: Artistic - cannot create tar: CHANGES - cannot create tar: INSTALLATION - cannot create tar: LICENSE - cannot create tar: MANIFEST - cannot create tar: Makefile.PL - cannot create tar: README - cannot create tar: RELNOTES - cannot create tar: TODO - cannot create tar: USAGE - cannot create tar: changes.dat - cannot create tar: support-h.template - cannot create tar: support.c - cannot create tar: supportrev.c - cannot create tar: supportrev.h - cannot create tar: typemap - cannot create tar: cannot open ARSperl-1.85/example/2.x Not a directory tar: cannot open ARSperl-1.85/example/3.x Not a directory tar: cannot open ARSperl-1.85/example/3.x Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory Any idea ? Thanks Serouche Jeff Murphy wrote: > Serouche Rahimpour wrote: > >> so the solution is obvious. >> On dowload what you get is a gz file. >> First change the file name for .tgz >> Then proceed to gunzip + tar >> But now I get a full bunch of "cannot create" message. >> I guess I'll find the solution by searching the archive. >> Thanks for your Time anyway. >> Serouche >> >> >> > > For SUN, include the exact commands you are using and the full output > showing the errors. > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > > ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Arsperl-users mailing list Ars...@ar... https://lists.sourceforge.net/lists/listinfo/arsperl-users |
|
From: Serouche R. <ser...@dc...> - 2007-01-27 22:14:25
|
I tried both tar xf ARSperl-1.85.tar and tar -xf ARSperl-1.85.tar For both cases I get: tar: ARSOOform.pm - cannot create tar: ARS.pm - cannot create tar: ARS.xs - cannot create tar: cannot open ARSperl-1.85/html/manual/OO Not a directory tar: cannot open ARSperl-1.85/html/manual/OO Not a directory tar: cannot open ARSperl-1.85/html/manual/OO Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html/manual Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: cannot open ARSperl-1.85/html Not a directory tar: ARSOOmsgs.pm - cannot create tar: ARSOOsup.pm - cannot create tar: ARSnparm.pm - cannot create tar: Artistic - cannot create tar: CHANGES - cannot create tar: INSTALLATION - cannot create tar: LICENSE - cannot create tar: MANIFEST - cannot create tar: Makefile.PL - cannot create tar: README - cannot create tar: RELNOTES - cannot create tar: TODO - cannot create tar: USAGE - cannot create tar: changes.dat - cannot create tar: support-h.template - cannot create tar: support.c - cannot create tar: supportrev.c - cannot create tar: supportrev.h - cannot create tar: typemap - cannot create tar: cannot open ARSperl-1.85/example/2.x Not a directory tar: cannot open ARSperl-1.85/example/3.x Not a directory tar: cannot open ARSperl-1.85/example/3.x Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/example Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/infra Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory tar: cannot open ARSperl-1.85/t Not a directory Any idea ? Thanks Serouche Jeff Murphy wrote: > Serouche Rahimpour wrote: > >> so the solution is obvious. >> On dowload what you get is a gz file. >> First change the file name for .tgz >> Then proceed to gunzip + tar >> But now I get a full bunch of "cannot create" message. >> I guess I'll find the solution by searching the archive. >> Thanks for your Time anyway. >> Serouche >> >> >> > > For SUN, include the exact commands you are using and the full output > showing the errors. > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > > |
|
From: Jeff M. <jcm...@je...> - 2007-01-27 21:53:26
|
Serouche Rahimpour wrote: > so the solution is obvious. > On dowload what you get is a gz file. > First change the file name for .tgz > Then proceed to gunzip + tar > But now I get a full bunch of "cannot create" message. > I guess I'll find the solution by searching the archive. > Thanks for your Time anyway. > Serouche > > For SUN, include the exact commands you are using and the full output showing the errors. |