<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: PS -ef command doesn't show all the details in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788548#M23406</link>
    <description>Jorge,&lt;BR /&gt;&lt;BR /&gt;This annoyed me for years and I'm pretty sure I tried the COLUMNS option. What you want is the w option but note that these accumulate (up to a maximum of maybe 3?). So, one of my standard aliases on linux is:&lt;BR /&gt;&lt;BR /&gt;alias psw='ps -auxfwww'&lt;BR /&gt;&lt;BR /&gt;And I think this is about as much as you can get. Now if someone can tell me the equivalent on HP-UX and/or Solaris (across different versions)...</description>
    <pubDate>Wed, 17 May 2006 05:18:27 GMT</pubDate>
    <dc:creator>cmac</dc:creator>
    <dc:date>2006-05-17T05:18:27Z</dc:date>
    <item>
      <title>PS -ef command doesn't show all the details</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788542#M23400</link>
      <description>Greetings,&lt;BR /&gt;When I run a command "ps -ef | grep monitor" and I get part of the message on one server.  However, on another server I get the complete all the details.  Currently, we are running RHAS 3.0 -&lt;BR /&gt;&lt;BR /&gt;Please let me know if you know the answer.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;J</description>
      <pubDate>Mon, 15 May 2006 21:56:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788542#M23400</guid>
      <dc:creator>Jorge Cocomess</dc:creator>
      <dc:date>2006-05-15T21:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: PS -ef command doesn't show all the details</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788543#M23401</link>
      <description>What is missing? The beginning part of the line, the end or something else?&lt;BR /&gt;&lt;BR /&gt;If the partial message looks like it's the wrapped part of a long line, it might be that on one server, the "monitor" process is started with the full path and on the other server without. With the full path, the command name might be long enough to wrap to the next line. And grep picks just the line that has the keyword, not the one before it...&lt;BR /&gt;&lt;BR /&gt;Still, on Linux, ps is often smart enough to detect if its output is being piped and not wrap the lines in that case. &lt;BR /&gt;&lt;BR /&gt;Also check that there are no aliases or shell function definitions that would add some extra options to the ps command line: type "alias" to see a list of all shell aliases and "typeset -f" to see a list of defined (bash) shell functions.</description>
      <pubDate>Tue, 16 May 2006 01:19:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788543#M23401</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2006-05-16T01:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: PS -ef command doesn't show all the details</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788544#M23402</link>
      <description>Matti - Thanks for your response.  It's missing the details toward the end of the line, such as name_of_the_job and the description.  However, if I just execute the command "ps -ef", that will give me what I wanted but also include all of the processes that I don't care much for.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;J&lt;BR /&gt;</description>
      <pubDate>Tue, 16 May 2006 07:51:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788544#M23402</guid>
      <dc:creator>Jorge Cocomess</dc:creator>
      <dc:date>2006-05-16T07:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: PS -ef command doesn't show all the details</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788545#M23403</link>
      <description>Have you trying setting the COLUMN variable? For example:&lt;BR /&gt;&lt;BR /&gt;export COLUMNS=300&lt;BR /&gt;ps -ef |grep monitor</description>
      <pubDate>Tue, 16 May 2006 08:01:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788545#M23403</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-05-16T08:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: PS -ef command doesn't show all the details</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788546#M23404</link>
      <description>Are you looking for ps -efl (the l is for long listing).</description>
      <pubDate>Tue, 16 May 2006 15:16:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788546#M23404</guid>
      <dc:creator>Sheriff Andy</dc:creator>
      <dc:date>2006-05-16T15:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: PS -ef command doesn't show all the details</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788547#M23405</link>
      <description>I will try these commands.&lt;BR /&gt;&lt;BR /&gt;~ Many Thanks,&lt;BR /&gt;&lt;BR /&gt;J</description>
      <pubDate>Tue, 16 May 2006 22:37:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788547#M23405</guid>
      <dc:creator>Jorge Cocomess</dc:creator>
      <dc:date>2006-05-16T22:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: PS -ef command doesn't show all the details</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788548#M23406</link>
      <description>Jorge,&lt;BR /&gt;&lt;BR /&gt;This annoyed me for years and I'm pretty sure I tried the COLUMNS option. What you want is the w option but note that these accumulate (up to a maximum of maybe 3?). So, one of my standard aliases on linux is:&lt;BR /&gt;&lt;BR /&gt;alias psw='ps -auxfwww'&lt;BR /&gt;&lt;BR /&gt;And I think this is about as much as you can get. Now if someone can tell me the equivalent on HP-UX and/or Solaris (across different versions)...</description>
      <pubDate>Wed, 17 May 2006 05:18:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788548#M23406</guid>
      <dc:creator>cmac</dc:creator>
      <dc:date>2006-05-17T05:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: PS -ef command doesn't show all the details</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788549#M23407</link>
      <description>I can't get complete display using ps -aef on HP-UX ,filed in COMMNAD coulumn is cutting off.</description>
      <pubDate>Fri, 23 Feb 2007 11:44:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ps-ef-command-doesn-t-show-all-the-details/m-p/3788549#M23407</guid>
      <dc:creator>richtl</dc:creator>
      <dc:date>2007-02-23T11:44:52Z</dc:date>
    </item>
  </channel>
</rss>

