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!

Recent content by dobbyn

  1. dobbyn

    help to understand the truss -p output

    pread is a read of a file... 341 should be the file descriptor. If you have the proc tools installed (/usr/proc/bin), you might be able to find more information about this file by using pfiles. Also, pstack can give you the call stack for the process, and might give you a good idea of exactly...
  2. dobbyn

    Shared Memory settings

    Your values for shmmax and shmseg are already set to the maximum allowed value. The value for shmmni (number of shared memory identifiers) can be set as high as 2147483648 (2GB). The main effect of setting these values too high is that you are using more kernel memory than necessary. If you...
  3. dobbyn

    Newbie Help

    What happens if you try to use the "passwd" command from the command line?
  4. dobbyn

    Max amount of memory for Solaris 8

    This should be controlled by the ulimit on virtual memory. If it is set to "unlimited", a single process could potentially take over your whole box.
  5. dobbyn

    How do you mail a file to a local user in Solaris 8?

    Try: mailx anna < message1
  6. dobbyn

    Memory Leak debugging tool on AIX

    Here's an old list that I've used in the past... Insure++ is the only tool I've used on AIX. http://www.cs.colorado.edu/homes/zorn/public_html/MallocDebug.html
  7. dobbyn

    SUNWspro, where do I get it?

    SUNWspro is the workshop IDE and compilers. As far as I know, you'll have to order this from Sun.
  8. dobbyn

    What terminal am I using?

    If you are using different terminal types, you might be able to use the value of $TERM to determine where you are coming from. Otherwise, you are probably just doing an &quot;rexec&quot; from your PC, so there's no way (I know of) for the server to know what software is sending that command.
  9. dobbyn

    FOR and DO Loop Help

    It looks like it is intending to process a list of files that is contained in &quot;sourcename.txt&quot;. However, the code above will not do that. The line: [code]for f in sourcename.txt[code] will assign the value &quot;sourcename.txt&quot; to the variable &quot;f&quot;, and only process...
  10. dobbyn

    Trying to add a volume group

    If you are adding a volume group, don't you want to be using vgcreate? You cannot modify the lmvtab file directly, it must be done with the vg commands. You can check current definitions in lvmtab using the strings command - what does that show? Is c2t0d0 already in there? Another suggestion...
  11. dobbyn

    Sun WorkShop - Could not open ToolTalk channel.

    Just looking at this a little more... if you use the command: /usr/dt/bin/ttsession -p -c workshop -D ... It should work as an override.
  12. dobbyn

    Sun WorkShop - Could not open ToolTalk channel.

    Workshop uses tooltalk to send display information to your PC. Usually this message means your PC already has the tooltalk port in use. Check on the server for a process called &quot;ttsession&quot;. If you see one of these processes that is referencing your DISPLAY, you may be able to kill...
  13. dobbyn

    Solaris 9 on an E450?

    Should be no problem. We have a 250 running Solaris 9.
  14. dobbyn

    chmod question

    The &quot;s&quot; or &quot;S&quot; both indicate the set-uid or set-gid bit is on. Lower case means the file is executable (or directory is searchable), while upper case means it is not executable (or searchable).
  15. dobbyn

    Error while running TNS utility on IBM AIX

    This is most likely an oracle client configuration issue rather than AIX... - Make sure you can successfully ping the <hostname> above. - Make sure your ORACLE_HOME and PATH environment variables is set correctly. - Make sure your tnsnames.ora and sqlnet.ora entries is correct.

Part and Inventory Search

Back
Top