Sponsored Content
Full Discussion: Something strange...
Operating Systems Solaris Something strange... Post 302078294 by B14speedfreak on Thursday 29th of June 2006 10:48:37 AM
Old 06-29-2006
Tools Something strange...

Hi all,

Thanks for any replies and for reading in advance.

We have upgraded one of our database instances to 10g on a Solaris 8 box, anyhow the other day it started trying to ping loads of weird IP addresses that we don't use, since our systems all run on pretty similar IP's. It all behind a firewall and all that stuff, but its only started doing it since we upgraded.

Anyone any ideas?

Thanks again,

B14... aka.. Marky Mark...
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

strange

Hi All I am doing a locate <file_name> on my Redhat 7 System. I am unable to get the output. All the keep getting is: locate: this is not a vlaid slocate database: /var/lib/locate/slocate.db What des this mean? Is my system compromised? Thanks in advance. KS (13 Replies)
Discussion started by: skotapal
13 Replies

2. UNIX for Dummies Questions & Answers

Strange error

Hi all, i executed a script. cat <filename> | grep <pattern> | awk '{print $1}' | read a i get the answer when i execute it in the shell env (no problem with that) as ./<name>.ksh when i tried the same in cron (as an entry in cron) value is not being read in the variable a through... (1 Reply)
Discussion started by: matrixmadhan
1 Replies

3. Shell Programming and Scripting

Strange question

Good day. I whant to put in a "readkey" function into my script. My script will be running in "real time". Basicaly I whant to add a eg. "Press X to exit" statement into my script. More or less like the read command, but I don't whant it to wait for the user to press enter. eg. Readkey. If no... (5 Replies)
Discussion started by: Blooper
5 Replies

4. AIX

Strange ls results..

Multipart question.. Can anybody explain why this happens : -rw-rw-r-- 1 fnsw fnusr 1531061 Feb 13 21:45 filename1.log -rw-rw-r-- 1 fnsw fnusr 1760706 Feb 10 22:10 filename2.log -rw-rw-r-- 1 fnsw fnusr 1525805 Aug 16 2005 filename3.log -rw-rw-r-- 1... (3 Replies)
Discussion started by: dbridle
3 Replies

5. Shell Programming and Scripting

Strange Logic

I am trying to read a file and skip few records based upon the following two columns. Pipe delimiter used between the two columns. Column1|Column2 Property|CutOff Target|11111 Min|9999 Max|10000 Comment|This is a test Property|Weight Target|222 Min|3434 Max|77777 UOM|mm ... (5 Replies)
Discussion started by: ganesh123
5 Replies

6. Shell Programming and Scripting

Strange one (likely something simple...)

Right folks... this is probably something simple that I'm missing as it's early, but can anyone tell me what's going on here: The Script: cougar:/usr/hxscripts>vi ~/test.ksh "/usr/home/branch/users/tech/test.ksh" #!/bin/ksh LOGDIR=/usr/hxscripts/LOGS/logmeoff/ # Logging directory,... (6 Replies)
Discussion started by: alexop
6 Replies

7. Shell Programming and Scripting

A Strange Behaviour!!!

Can some-one give me a view to this : I have a directory in an unix server, having permissions r-xr-xr-x .This directory is basically a source directory. Now there is another directory basically the destination directory which has all the permissions. Note:I log in as not the owner,but user... (5 Replies)
Discussion started by: navojit dutta
5 Replies

8. Solaris

Strange Messages

Dear Solarizer, Every time i log in to the sheel i always got this messages, How to stop this messgaes permanently. tpx@plood/export/home/ $ Jul 29 11:35:00 plood sendmail: unable to qualify my own domain name (plood) -- using short name Jul 29 11:35:00 plood sendmail: unable to qualify... (3 Replies)
Discussion started by: tpx99
3 Replies

9. UNIX for Advanced & Expert Users

strange output with du

Can someone please explain why I get two outputs with the du command? The first one gave me one. I also didn't ask for the second directory so why did it give that directory? $ du -h "/media/Part 1/Desktop/playlist" 775M /media/Part 1/Desktop/playlist $ du -h "/media/Part... (1 Reply)
Discussion started by: cokedude
1 Replies

10. Solaris

strange numbers when df a fs

Hi, when i execute a df, look what such a strange numbers appear Does anybody know why these numbers appear??? is it critical?? is there a way to mend it? df -k Filesystem kbytes used avail capacity Mounted on /dev/md/dsk/d704 2033295 18446744073707800956 3722957... (3 Replies)
Discussion started by: pabloli150
3 Replies
PERL586DELTA(1) 					 Perl Programmers Reference Guide					   PERL586DELTA(1)

NAME
perl586delta - what is new for perl v5.8.6 DESCRIPTION
This document describes differences between the 5.8.5 release and the 5.8.6 release. Incompatible Changes There are no changes incompatible with 5.8.5. Core Enhancements The perl interpreter is now more tolerant of UTF-16-encoded scripts. On Win32, Perl can now use non-IFS compatible LSPs, which allows Perl to work in conjunction with firewalls such as McAfee Guardian. For full details see the file README.win32, particularly if you're running Win95. Modules and Pragmata o With the "base" pragma, an intermediate class with no fields used to messes up private fields in the base class. This has been fixed. o Cwd upgraded to version 3.01 (as part of the new PathTools distribution) o Devel::PPPort upgraded to version 3.03 o File::Spec upgraded to version 3.01 (as part of the new PathTools distribution) o Encode upgraded to version 2.08 o ExtUtils::MakeMaker remains at version 6.17, as later stable releases currently available on CPAN have some issues with core modules on some core platforms. o I18N::LangTags upgraded to version 0.35 o Math::BigInt upgraded to version 1.73 o Math::BigRat upgraded to version 0.13 o MIME::Base64 upgraded to version 3.05 o POSIX::sigprocmask function can now retrieve the current signal mask without also setting it. o Time::HiRes upgraded to version 1.65 Utility Changes Perl has a new -dt command-line flag, which enables threads support in the debugger. Performance Enhancements "reverse sort ..." is now optimized to sort in reverse, avoiding the generation of a temporary intermediate list. "for (reverse @foo)" now iterates in reverse, avoiding the generation of a temporary reversed list. Selected Bug Fixes The regexp engine is now more robust when given invalid utf8 input, as is sometimes generated by buggy XS modules. "foreach" on threads::shared array used to be able to crash Perl. This bug has now been fixed. A regexp in "STDOUT"'s destructor used to coredump, because the regexp pad was already freed. This has been fixed. "goto &" is now more robust - bugs in deep recursion and chained "goto &" have been fixed. Using "delete" on an array no longer leaks memory. A "pop" of an item from a shared array reference no longer causes a leak. "eval_sv()" failing a taint test could corrupt the stack - this has been fixed. On platforms with 64 bit pointers numeric comparison operators used to erroneously compare the addresses of references that are overloaded, rather than using the overloaded values. This has been fixed. "read" into a UTF8-encoded buffer with an offset off the end of the buffer no longer mis-calculates buffer lengths. Although Perl has promised since version 5.8 that "sort()" would be stable, the two cases "sort {$b cmp $a}" and "sort {$b <=> $a}" could produce non-stable sorts. This is corrected in perl5.8.6. Localising $^D no longer generates a diagnostic message about valid -D flags. New or Changed Diagnostics For -t and -T, Too late for "-T" option has been changed to the more informative "-T" is on the #! line, it must also be used on the command line Changed Internals From now on all applications embedding perl will behave as if perl were compiled with -DPERL_USE_SAFE_PUTENV. See "Environment access" in the INSTALL file for details. Most "C" source files now have comments at the top explaining their purpose, which should help anyone wishing to get an overview of the implementation. New Tests There are significantly more tests for the "B" suite of modules. Reporting Bugs If you find what you think is a bug, you might check the articles recently posted to the comp.lang.perl.misc newsgroup and the perl bug database at http://bugs.perl.org. There may also be information at http://www.perl.org, the Perl Home Page. If you believe you have an unreported bug, please run the perlbug program included with your release. Be sure to trim your bug down to a tiny but sufficient test case. Your bug report, along with the output of "perl -V", will be sent off to perlbug@perl.org to be analysed by the Perl porting team. You can browse and search the Perl 5 bugs at http://bugs.perl.org/ SEE ALSO
The Changes file for exhaustive details on what changed. The INSTALL file for how to build Perl. The README file for general stuff. The Artistic and Copying files for copyright information. perl v5.12.5 2012-09-11 PERL586DELTA(1)
All times are GMT -4. The time now is 10:59 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy