Re: Greybeards

2010-10-23 Thread Robert Bonomi


Date: Fri, 22 Oct 2010 10:33:20 -0700
From: Gary Kline kl...@thought.org
Subject: Re: Greybeards (Re: Netbooks  BSD)

On Thu, Oct 21, 2010 at 06:22:59AM -0500, Robert Bonomi wrote:
  From owner-freebsd-questi...@freebsd.org  Wed Oct 20 15:04:17 2010
  From: Mike Jeays mike.je...@rogers.com
  To: Bob Hall rjh...@gmail.com,
  FreeBSD Mailing List freebsd-questions@freebsd.org
  Date: Wed, 20 Oct 2010 16:05:34 -0400
  Cc: 
  Subject: Re: Greybeards (Re: Netbooks  BSD)
 
 
  OK, I guess you win! End-of-thread time?
 
 Well, if one is going to get into that kind of bragging, the first 
 *mainframe*
 I worked on didn't have any disks at all. purely mag-tape based.   An early-
 generation IBM system/360 with a whopping 64k words of _core_ memory.  The 
 operating system was TOS (the Tape Operating System), predecessor of
 DOS, which the machine was upgraded to when they got a couple of hard-disks
 for it.  Single user, bare-bones batch processing,  punch-card input.  
 late 1960s.


   I learned FORTRAN back in summer quarter '78 on a CDC-6400 that
   used punch cards.  Had to use my _nose_ to finish one card.  The 
   6400 took up a chunk of the basement of Evans HAll and had a
   HUGE 64k of core!  That's the limit of my bragging--er,
   commenting:-)

   TOS?  snicker, LOL, ROFL ...

Yawp.  Really.  TOS and DOS.  Those _were_ the names the two OS varients
were known by.  

Not too long thereafter, IBM decided the minimum configuration would include
disk packs,  And 0S/360 became the universal choice.


As for the 6400, it had 64k words of 60-bit  (each word could hold 10 
characters in the internal CDC character set) memory.  roughly 2x to 2.5x
the capacity of the 64k 32-bit words on the IBM.

I programmed on the 6400, and it's big brother, the 6600, for a number of 
years.  An absolutely _lovely_ architecture  at a high level it was a 
beatutifully simple architecture,  with a machine-language that you could
learn in an afternoon, if you'd had any exposure to _any_ other assemler
language.  The instruction set was _so_ rational, you didn't need a cheat
sheet (aka, green card, yellow card, whatever) to keep track of what
was what.

Now, admittedly, the closer you got to the hardware, the more strange the 
machine got.  It's the only machine I know of, where CPU HALT is an
_unpriviliged_ user-mode instruction. and one where user programs are 
*expected* to use it to end every program.

And, of course, the 6600 architecture (the 6600 was the original model, 6400s
were introduced later as a 'economy' version) as one other endearing 
characteristic.  It *can't*add*.  At the hardware level, addition is done
by 'complement and subtract'.  And  the CPU clock is more than 10x faster 
than memory read cycle.  Memory is 32-way(!!) interleaved, to keep up.

Oh yeah, the machine -really- annoyed computer-science purists.  Up to
the limit of data that you oult fit in main memory, an optimized _bubble-
sort_ was faster than =any= other sorting algorithm.  This came as a *RUDE*
surprise to more than one first-year C.S dept faculty member.  There was
always some smart-*ss in the class who got the bubble-sort implementation
right, and it ran in far less time than even quicksort.   If you did
_careful_ benchmarking, you could see that when the data-sets got large
enough that the 'expected' (bubble-sort loses) behavior _was_ there.
but the cross-over/break-even point was at a point that was _larger_ 
than the maximum main memory that you could hang on a machine with only
an 18-hit address-space.  Uuser apps were limited to only 17 bits of
addressing.

It also freaked some people that you could copy a dataset that was 
many times the size of main memory, using only _one_ buffer, and isusing
only *one* 'read and *one* write instruction.  The operating system
was 'management by committee' at the _hardware_ level, and could literally
be doing _20_ different things simultaneously.   Start one member of the
'committee' transferring data from the 'source' into the buffer, and hav
a -second- member transfering _out_ of the butter to the destination, 
and just sit ack and watch them go at it.

The 6600 also gets credit for being the first CPU where speed-of-light
limitqation had to be taken into consideration.  roughly 40% of the data
in the CPU didn't have a fixed location,  but was 'in transit' to where
it would be needed..  internal wiring of a particular insulation color 
was _not_ 'field repairable'.  you had to remove the wire entirely, and
replace it with a nother pice with the -specific- part number that came 
from the factory.



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Greybeards

2010-10-23 Thread Gary Kline
On Sat, Oct 23, 2010 at 01:15:05AM -0500, Robert Bonomi wrote:
 
 
 Date: Fri, 22 Oct 2010 10:33:20 -0700
 From: Gary Kline kl...@thought.org
 
  TOS?  snicker, LOL, ROFL ...
 
 Yawp.  Really.  TOS and DOS.  Those _were_ the names the two OS varients
 were known by.  
 
 Not too long thereafter, IBM decided the minimum configuration would include
 disk packs,  And 0S/360 became the universal choice.
 
 
 As for the 6400, it had 64k words of 60-bit  (each word could hold 10 
 characters in the internal CDC character set) memory.  roughly 2x to 2.5x
 the capacity of the 64k 32-bit words on the IBM.
 
 I programmed on the 6400, and it's big brother, the 6600, for a number of 
 years.  An absolutely _lovely_ architecture  at a high level it was a 
 beatutifully simple architecture,  with a machine-language that you could
 learn in an afternoon, if you'd had any exposure to _any_ other assemler
 language.  The instruction set was _so_ rational, you didn't need a cheat
 sheet (aka, green card, yellow card, whatever) to keep track of what
 was what.
 
 Now, admittedly, the closer you got to the hardware, the more strange the 
 machine got.  It's the only machine I know of, where CPU HALT is an
 _unpriviliged_ user-mode instruction. and one where user programs are 
 *expected* to use it to end every program.
 
 And, of course, the 6600 architecture (the 6600 was the original model, 6400s
 were introduced later as a 'economy' version) as one other endearing 
 characteristic.  It *can't*add*.  At the hardware level, addition is done
 by 'complement and subtract'.  And  the CPU clock is more than 10x faster 
 than memory read cycle.  Memory is 32-way(!!) interleaved, to keep up.
 
 Oh yeah, the machine -really- annoyed computer-science purists.  Up to
 the limit of data that you oult fit in main memory, an optimized _bubble-
 sort_ was faster than =any= other sorting algorithm.  This came as a *RUDE*
 surprise to more than one first-year C.S dept faculty member.  There was
 always some smart-*ss in the class who got the bubble-sort implementation
 right, and it ran in far less time than even quicksort.   If you did
 _careful_ benchmarking, you could see that when the data-sets got large
 enough that the 'expected' (bubble-sort loses) behavior _was_ there.
 but the cross-over/break-even point was at a point that was _larger_ 
 than the maximum main memory that you could hang on a machine with only
 an 18-hit address-space.  Uuser apps were limited to only 17 bits of
 addressing.
 
 It also freaked some people that you could copy a dataset that was 
 many times the size of main memory, using only _one_ buffer, and isusing
 only *one* 'read and *one* write instruction.  The operating system
 was 'management by committee' at the _hardware_ level, and could literally
 be doing _20_ different things simultaneously.   Start one member of the
 'committee' transferring data from the 'source' into the buffer, and hav
 a -second- member transfering _out_ of the butter to the destination, 
 and just sit ack and watch them go at it.
 
 The 6600 also gets credit for being the first CPU where speed-of-light
 limitqation had to be taken into consideration.  roughly 40% of the data
 in the CPU didn't have a fixed location,  but was 'in transit' to where
 it would be needed..  internal wiring of a particular insulation color 
 was _not_ 'field repairable'.  you had to remove the wire entirely, and
 replace it with a nother pice with the -specific- part number that came 
 from the factory.
 

Very interesting history.  I never knew that the wordsize was 60
bits; hmm.  The 6600 was designed by Seymour Cray, as you
prob'ly know.  Seymour was a hardcore EE who (at the time)
thought that software was for pussies.  No-need-for.  No OS, no
nothing.  Seymour only cared about speed.  

-- 
 Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
The 7.90a release of Jottings: http://jottings.thought.org/index.php
   http://journey.thought.org

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


acroread9 crashing

2010-10-23 Thread Jerry
FreeBSD 8.1-STABLE /amd64

I continue to have a problem getting acroread9 to run.

1) It will not create its directory in my home directory.

:1: error: unexpected character `\1', expected keyword - e.g. `style'
Acroread was unable to create the directory .adobe in your home directory.
There may be a permission problem with the parent directory.
Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in your 
home directory.
There may be a permission problem with the parent directory.
Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in your 
home directory.
There may be a permission problem with the parent directory.
Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in your 
home directory.
There may be a permission problem with the parent directory.
Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in your 
home directory.
There may be a permission problem with the parent directory.
Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in your 
home directory.
There may be a permission problem with the parent directory.
Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in your 
home directory.
There may be a permission problem with the parent directory.

The directory permissions are normal and no other program has ever
complained about it. I even tried giving it 0777 permissions without
success. So, I manually create the directory structure it appears to
want.

2) Now I manually start acroread9 again:

Error message:

:1: error: unexpected character `\1', expected keyword - e.g. `style'

Next License agreement displays and I choose accept

Main program windows pops up for 1 second and then disappears

This is now displayed:

terminate called after throwing an instance of 'RSException'

3) From the Security Run Output received every morning, this excerpt:

+linux: pid 17352 (acroread): syscall inotify_init not implemented

I have tried doing a complete 'pkg_delete of the program and then
reinstalling it without any success.

I wanted to use 'gdb' to try to debug the program; however, it throws an
error message also:

gdb acroread9
GNU gdb 6.1.1 [FreeBSD]
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type show copying to see the conditions.
There is absolutely no warranty for GDB.  Type show warranty for details.
This GDB was configured as amd64-marcel-freebsd.../usr/local/bin/acroread9: 
not in executable format: File format not recognized

(gdb) run
Starting program:  
No executable file specified.
Use the file or exec-file command.

I tried using the file command; however, that also throws an error,
probably because I am using the wrong syntax.

I am open to any suggestions. I tried Googling without any great
success. Evidently, many others have experienced this problem also. I
have not seen a concrete solution posted for it. This problem was
reported over a year ago, and perhaps more from what I have been able
to discover. If it is a universal problem in FreeBSD, then perhaps the
port should be marked Broken. If not, then why does it work on some
systems and not others? From what I have been able to ascertain, many
users have never gotten it to work and have just given up on it.

I have used truss to capture the output if anyone wants to view it.

-- 
Jerry ✌
freebsd.u...@seibercom.net

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__

We're going to have the best educated American people in the world.

George W. Bush
September 21, 1997
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


HPC with GPU/GPGPU on FreeBSD 8/9?

2010-10-23 Thread O. Hartmann
Does anyone of the FreeBSD folks out here use/develop/programme 
GPU-based scientific applications/libraries (mathematical nature, 
mostly) on FreeBSD natively running on FreeBSD with GPGPU support?
What are you using as 'language', framework, development environment? 
I'm desperately searching for solutions how to run n-body simulations 
GPGPU-supported on multi-processor 64Bit FreeBSD boxes with either 
nVidia or AMD GPU support.


Thanks,
Oliver
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Suzy Zokaya. has forwarded a page to you from Wacom India

2010-10-23 Thread suzyzokaya

   [1]Wacom India 
   [2]Suzy Zokaya. thought you would like to see this page from the Wacom
   India web site.
   Message from Sender:

   suzyzok...@hotmail.fr
   Hello!!!
   I am Suzy Zokaya I saw your contact mail today when i was searching
   and browsing through internet,and i was deeply moved.I think that you
   are a very interesting person.So I decided to use the chance to get to
   know you.i do not think that the age appearance is so important. The
   most important is what is inside you and how do you feel about the
   life.I know this life from many sides and I am rather mature already
   to know how to make a man happy.I think we should use every chance to
   find our happiness. and I am contacting you for obvious reason which
   you will understand.Reply me through my email address
   (suzyzok...@hotmail.fr) so that i will send my photo and more details
   to you,and i have a very important thing to tell you,i still hope for
   your reply,have a pleasant day,
   Suzy Zokaya.
   [3]IKEA chooses Wacom's SignPad to reduce costs and paperwork

   Wacom, the leading manufacturer of pen tablets, interactive pen
   displays and intuitive interface devices, today announces that the
   major home furnishings retailer IKEA has adopted the electronic
   receipt storage solution from TeleCash GmbH  Co. KG based on Wacom�s
   LCD signature tablet technology - the STU-500 (or SignPad)?- across
   Germany. In pionieering this solution, TeleCash is using the market
   leading technology from Wacom for generating electronical signatures.
   [4]Click here to read more on our site

References

   1. http://www.wacom.co.in/
   2. mailto:suzyzok...@hotmail.fr
   3. http://www.wacom.co.in/forward/emailref/301
   4. http://www.wacom.co.in/forward/emailref/301
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: acroread9 crashing

2010-10-23 Thread Alexander Best
the freebsd linux emulator is missing support for the inotify_init syscall. you
won't be able to use acroread9, until it gets implemented.

right now i guess it returns ENOSYS to any linux app making use of it. you
might be able to work around this problem by replacing ENOSYS with 0. however
since no actual work is being done i suspect this won't make acroread9 run
properly.

you might want to drop Roman Divacky (rdivacky@) a note. he may have some
experimental patches at hand.

cheers.
alex

On Sat Oct 23 10, Jerry wrote:
 FreeBSD 8.1-STABLE /amd64
 
 I continue to have a problem getting acroread9 to run.
 
 1) It will not create its directory in my home directory.
 
 :1: error: unexpected character `\1', expected keyword - e.g. `style'
 Acroread was unable to create the directory .adobe in your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 
 The directory permissions are normal and no other program has ever
 complained about it. I even tried giving it 0777 permissions without
 success. So, I manually create the directory structure it appears to
 want.
 
 2) Now I manually start acroread9 again:
 
 Error message:
 
 :1: error: unexpected character `\1', expected keyword - e.g. `style'
 
 Next License agreement displays and I choose accept
 
 Main program windows pops up for 1 second and then disappears
 
 This is now displayed:
 
 terminate called after throwing an instance of 'RSException'
 
 3) From the Security Run Output received every morning, this excerpt:
 
 +linux: pid 17352 (acroread): syscall inotify_init not implemented
 
 I have tried doing a complete 'pkg_delete of the program and then
 reinstalling it without any success.
 
 I wanted to use 'gdb' to try to debug the program; however, it throws an
 error message also:
 
 gdb acroread9
 GNU gdb 6.1.1 [FreeBSD]
 Copyright 2004 Free Software Foundation, Inc.
 GDB is free software, covered by the GNU General Public License, and you are
 welcome to change it and/or distribute copies of it under certain conditions.
 Type show copying to see the conditions.
 There is absolutely no warranty for GDB.  Type show warranty for details.
 This GDB was configured as 
 amd64-marcel-freebsd.../usr/local/bin/acroread9: not in executable 
 format: File format not recognized
 
 (gdb) run
 Starting program:  
 No executable file specified.
 Use the file or exec-file command.
 
 I tried using the file command; however, that also throws an error,
 probably because I am using the wrong syntax.
 
 I am open to any suggestions. I tried Googling without any great
 success. Evidently, many others have experienced this problem also. I
 have not seen a concrete solution posted for it. This problem was
 reported over a year ago, and perhaps more from what I have been able
 to discover. If it is a universal problem in FreeBSD, then perhaps the
 port should be marked Broken. If not, then why does it work on some
 systems and not others? From what I have been able to ascertain, many
 users have never gotten it to work and have just given up on it.
 
 I have used truss to capture the output if anyone wants to view it.
 
 -- 
 Jerry ???
 freebsd.u...@seibercom.net
 
 Disclaimer: off-list followups get on-list replies or get ignored.
 Please do not ignore the Reply-To header.
 __
 
 We're going to have the best educated American people in the world.
 
 George W. Bush
 September 21, 1997

-- 
a13x
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


RE: My mail server flagged spam!

2010-10-23 Thread Marwan Sultan

Dear Dr. Matthew.,
 
   When my client or any clients uses the web mail that i have configured, 
   then everything works fine NO spam problems and email will be
   received by hotmail, gmail and vise versa.
 
   I found out that this particular client complaining because they use
   outlook express NOT the web mail.
 
   they configure their outlook express to use SMTP user/password
   with mail.clinet_domain.com as incoming/outgoing.
 
  even if they send from x...@client_domain to ad...@mydomain.com
  both are in same server, I will still receive it as SPAM.
  (They are sending from outlook.)
 
  looking at spam log, and why its scored as spam.. here is a copy.
 
pts rule name  description 
 -- -- 
0.9 RCVD_IN_PBLRBL: Received via a relay in Spamhaus PBL 
   [95.66.68.100 listed in zen.spamhaus.org] 
0.0 HTML_MESSAGE   BODY: HTML included in message 
0.0 BAYES_50   BODY: Bayesian spam probability is 40 to 60% 
   [score: 0.5019] 
2.2 TVD_SPACE_RATIOBODY: TVD_SPACE_RATIO 
0.1 RDNS_NONE  Delivered to trusted network by a host with no rDNS 
2.8 DOS_OE_TO_MX   Delivered direct to MX with OE headers 
 
 
As you see 2.8 for DOS_OE_TO_MX
and 2.2 for TVD_SPACE_RATIO
 
 I have looked for DOS_OE_TO_MX
 and it says because client is sending directly to MX records?
 well! i asked them to use mail.server_name.com for income/outgoing
 for outlook express..but still the same error and email is scored as spam.
 
 Any help is highly appreciate it.
 
- Marwan
 
 Date: Thu, 21 Oct 2010 06:42:06 +0100
 From: m.sea...@infracaninophile.co.uk
 To: dead_l...@hotmail.com
 CC: freebsd-questions@freebsd.org
 Subject: Re: My mail server flagged spam!
 
 On 21/10/2010 01:10, Marwan Sultan wrote:
  if I check that domain in mxtoolbox.com
  it complains Warning - Reverse DNS does not match SMTP Banner
  could it be the SMTP banner flagging the mail as spam?
 
 This is certainly possible. It would add spam points on my servers.
 
 The address in question is the one presented by your mail server during
 the SMTP dialogue -- the first line it sends in fact. Something like this:
 
 EHLO smtp.example.com
 
 By default it will use the hostname of your server, but you can override
 that.
 
 It is this address that you have to be really strict about: the address
 should resolve to the IP that the server connects via (not necessarily
 the IP of the server if there are NAT gateways involved), and a reverse
 lookup of that IP should return the name again.
 
 This name used in the EHLO banner doesn't have to be anything to do with
 the addresses on the e-mail, except in as far as either side is using
 SPF and you have chosen to add that information to the SPF selector(s).
 SPF seems to be going out of favour now, and sensible mail admins
 didn't make accept/deny decisions entirely on pass/fail of SPF tests,
 but still, for best results with a mail system, you should take care to
 get that right.
 
 Cheers,
 
 Matthew
 
 -- 
 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard
 Flat 3
 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
 JID: matt...@infracaninophile.co.uk Kent, CT11 9PW
 
  
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: My mail server flagged spam!

2010-10-23 Thread Chuck Swiger
On Oct 23, 2010, at 3:46 PM, Marwan Sultan wrote:
  they configure their outlook express to use SMTP user/password
  with mail.clinet_domain.com as incoming/outgoing.
 
  even if they send from x...@client_domain to ad...@mydomain.com
  both are in same server, I will still receive it as SPAM.
  (They are sending from outlook.)

When someone is an authorized user of email, ie, they login to your SMTP server 
via a good username+password, then you should configure your spam filtering to 
treat them as trusted.  For example, in postfix you could have:

smtpd_recipient_restrictions = permit_mynetworks,
permit_sasl_authenticated,
[ ...before checks like... ]
check_policy_service inet:127.0.0.1:12525,
check_policy_service inet:127.0.0.1:10023,

Regards,
-- 
-Chuck

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: acroread9 crashing

2010-10-23 Thread Jerry McAllister
On Sat, Oct 23, 2010 at 07:25:27AM -0400, Jerry wrote:

 FreeBSD 8.1-STABLE /amd64
 
 I continue to have a problem getting acroread9 to run.
 
 1) It will not create its directory in my home directory.

I have not been able to get acroread to work.
I gave up and use XPDF which does what I need, though minimally.

jerry


 
 :1: error: unexpected character `\1', expected keyword - e.g. `style'
 Acroread was unable to create the directory .adobe in your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 Acroread was unable to create the directory /home/gerard/.adobe/Acrobat in 
 your home directory.
 There may be a permission problem with the parent directory.
 
 The directory permissions are normal and no other program has ever
 complained about it. I even tried giving it 0777 permissions without
 success. So, I manually create the directory structure it appears to
 want.
 
 2) Now I manually start acroread9 again:
 
 Error message:
 
 :1: error: unexpected character `\1', expected keyword - e.g. `style'
 
 Next License agreement displays and I choose accept
 
 Main program windows pops up for 1 second and then disappears
 
 This is now displayed:
 
 terminate called after throwing an instance of 'RSException'
 
 3) From the Security Run Output received every morning, this excerpt:
 
 +linux: pid 17352 (acroread): syscall inotify_init not implemented
 
 I have tried doing a complete 'pkg_delete of the program and then
 reinstalling it without any success.
 
 I wanted to use 'gdb' to try to debug the program; however, it throws an
 error message also:
 
 gdb acroread9
 GNU gdb 6.1.1 [FreeBSD]
 Copyright 2004 Free Software Foundation, Inc.
 GDB is free software, covered by the GNU General Public License, and you are
 welcome to change it and/or distribute copies of it under certain conditions.
 Type show copying to see the conditions.
 There is absolutely no warranty for GDB.  Type show warranty for details.
 This GDB was configured as 
 amd64-marcel-freebsd.../usr/local/bin/acroread9: not in executable 
 format: File format not recognized
 
 (gdb) run
 Starting program:  
 No executable file specified.
 Use the file or exec-file command.
 
 I tried using the file command; however, that also throws an error,
 probably because I am using the wrong syntax.
 
 I am open to any suggestions. I tried Googling without any great
 success. Evidently, many others have experienced this problem also. I
 have not seen a concrete solution posted for it. This problem was
 reported over a year ago, and perhaps more from what I have been able
 to discover. If it is a universal problem in FreeBSD, then perhaps the
 port should be marked Broken. If not, then why does it work on some
 systems and not others? From what I have been able to ascertain, many
 users have never gotten it to work and have just given up on it.
 
 I have used truss to capture the output if anyone wants to view it.
 
 -- 
 Jerry ???
 freebsd.u...@seibercom.net
 
 Disclaimer: off-list followups get on-list replies or get ignored.
 Please do not ignore the Reply-To header.
 __
 
 We're going to have the best educated American people in the world.
 
 George W. Bush
 September 21, 1997
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org