Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: gcazian
  • Content: Threads
  • Order by date
  1. gcazian

    simple regexp to filter out #'s and *'s

    Hi all, I have a file that I want to open as a file handle and only retrieve lines that don't have a hash mark, an asterisk, or a line that looks like this: # **************************** I have tried /[^#*]/ but it doesn't work. Anyone have any tips?
  2. gcazian

    Getting "Error -1" when trying to mount NFS

    (root):/> mount /xyz nfsmnthelp: myhost.com: Error -1 occurred. mount: giving up on: myhost.com:/xyz Error -1 occurred. Does anyone know what is causing this error or how to fix it? The entry for /xyz exists in /etc/filesystems: /scm: dev = "/xyz" vfs...
  3. gcazian

    Changing context root via the WAS console

    Hello, We want to change an application's console root, and we are wondering if this is possible to do in the WAS console. We are running version 5.1.
  4. gcazian

    sed pattern matching question

    Hi, I am new to sed and have a quick question. I am trying to match the output of the 'java -version' command. However, I onlt want to match from the word 'Classic' onto the end of the line: java version "1.2.2" Classic VM (J2RE 1.2.2 IBM build ca122-20041020 (JIT enabled: jitc)) How do I do...
  5. gcazian

    Best way to find available FREE memory in AIX?

    Is there a specific command in AIX that tells you how much free memory the system has available to processes? Is the fre column in vmstat the best way to go? Thanks.
  6. gcazian

    How do I print out the last value of a line in AWK?

    For instance, I have a row of data: "Buffer pool data logical reads = 5454723" ...and I want to print out 5454723 through AWK. TIA
  7. gcazian

    default codepage for AIX?

    Does anyone know what the default codepage (symbol set) for AIX 5.x is? Is there any documentation on this? TIA
  8. gcazian

    NFS mounting options

    I am trying to determine the best set of NFS mount options for our environment. Does anyone have any recomendations? Also, I am a bit confused by the hard vs. soft mounting options. I understand that hard will attempt to mount until the server responds. Does this mean that it wiill attempt up...
  9. gcazian

    Where can I donwload updates for RH ES 3?

    I don't want to use the up2date utility, I want to be able to download any updates via ftp or some other means. Is this possible?
  10. gcazian

    problems with accounts when users change their passwords

    On our domain, user accounts expire after 60 days. The users are then prompted to change their password, which they do. Afterwards, everything seems to be okay. Yet, when they try to log back into their machine the next day, their passwords will not take. We found that if we revert to their...
  11. gcazian

    slow Outlook connections to Exchange 2000 server

    We are experiencing that our Outlook clients are getting slow connections to the Exchange 2000 server. They occasionally get the "requesting data message" in the lower right hand of the taskbar when Outlook is open. I was just wondering if this is a known issue and if anyone has experienced...
  12. gcazian

    Any way to import data files into a new database?

    We have some data files that contain some important data that we need. Unfortunately, the SQL Server they were attached to crashed. My question is: Is there any possible way to import raw data files into a fresh database? Thanks in advance.
  13. gcazian

    Dependent module /usr/local/lib/libz.a(libz.so.1) could not be loaded

    I seem to be having a problem when trying to run the sshd daemon on my 4.3.3 box: # sshd exec(): 0509-036 Cannot load program sshd because of the following errors: 0509-150 Dependent module /usr/local/lib/libz.a(libz.so.1) could not be loaded. 0509-152 Member libz.so.1 is...
  14. gcazian

    Newbie: Want to pull data from file and create a hash

    Hello, I am attempting to create a filehandle that reads the output of a TSM query (tape drive status) from a file and then creates a hash table of the library drive number and its corresponding status. Here is what the TSM output file typically looks like: ANR8330I LTO volume 000165L1 is...
  15. gcazian

    Need help reinstalling Man pages

    We recently upgraded a few of our servers from AIX 4.3 to 5.1. Now, the man pages appear to be missing: # man ls Manual entry for ls not found or not installed. # echo $MANPATH /usr/local/man:/usr/share/man Yet, it looks like bos.rte.man is installed: bos.rte.man 5.1.0.35...
  16. gcazian

    problem when compiling with gcc

    We are trying to compile rssh 2.1.0. We are running AIX 5.1 and gcc is version 2.9-aix51-020209. We seem to run into a problem though, and we cannot finish: > make make all-am gcc -c -DHAVE_CONFIG_H -DPATH_RSSH_CONFIG=\"/usr/local/etc/rssh.conf\"...
  17. gcazian

    Korn script to kill CPU processes

    Hi, I'm fairly new to scripting in Unix. However, I am trying to write a script that checks running Oracle report processes and kills the processes if the CPU time is greater than 500. Here is my script: #!/usr/bin/ksh93 count=$(ps -ef|grep oracle.reports|grep -v 'grep'|wc -l) # get count of...
  18. gcazian

    XML to telnet session and redirecting to file

    I am writing a script that perfoms admin duties on my Jabber server. I want to be able to connect to my Jabber server through telnet via port 5222 and pass on some XML to the command line. What I need is the output of the telnet session to be redirected to a text file. Anyone have any ideas...
  19. gcazian

    directing XML to telnet session and redirecting to file

    I am writing a script that perfoms admin duties on my Jabber server. I want to be able to connect to my Jabber server through telnet via port 5222 and pass on some XML to the command line. What I need is the output of the telnet session to be redirected to a text file. Anyone have any ideas...
  20. gcazian

    Extracting e-mail address from output file

    I have an output file that contains one very large string, and looks look this: <who><presence from='username1@myserver.mydomain.com/Exodus' to='username2@myserver.mydomain.com'> followed by some more non-important data. I want to extract the first e-mail address using sed or awk. I'm a bit...

Part and Inventory Search

Back
Top