<?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: root directory full in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743629#M256554</link>
    <description>Donald,&lt;BR /&gt;&lt;BR /&gt;Please remember that you are deleting files on a UNIX machine.  When you try to delete *.*, you are only deleting files that have a '.' in them somewhere, surrounded by any other chatacter(s).  From the UNIX command line, you would delete all files by typing:&lt;BR /&gt;&lt;BR /&gt;$ rm *&lt;BR /&gt;&lt;BR /&gt;This will delete all files in the directory (except 'hidden' files; file that begin with '.').  &lt;BR /&gt;&lt;BR /&gt;Do keep in mind that rm * is a very dangerous command.  Check twice, then check again to make sure this is what you want to do.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Mark</description>
    <pubDate>Mon, 06 Mar 2006 12:23:29 GMT</pubDate>
    <dc:creator>Mark Ellzey</dc:creator>
    <dc:date>2006-03-06T12:23:29Z</dc:date>
    <item>
      <title>root directory full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743622#M256547</link>
      <description>I was deleting files out of the /tmp directory and I noticed that the root directory(/) now shows full, the files that were deleted were put in 'trash'.(i'm using the file manager that comes with exceed to do the deletes). On the last file that I deleted I got a message about no space available on the device moving to...</description>
      <pubDate>Fri, 03 Mar 2006 09:13:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743622#M256547</guid>
      <dc:creator>Donald Thaler</dc:creator>
      <dc:date>2006-03-03T09:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: root directory full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743623#M256548</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;can you access on the command line and deleting any files under root manually?&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Fabio</description>
      <pubDate>Fri, 03 Mar 2006 09:15:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743623#M256548</guid>
      <dc:creator>Fabio Ettore</dc:creator>
      <dc:date>2006-03-03T09:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: root directory full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743624#M256549</link>
      <description>Use:&lt;BR /&gt;&lt;BR /&gt;find / -xdev -exec ls -l {} \; |sort +4 -nrb |head -10&lt;BR /&gt;&lt;BR /&gt;du -kx / | sort -rn | head -10&lt;BR /&gt;&lt;BR /&gt;To identify the directory/files that uses more space on /.</description>
      <pubDate>Fri, 03 Mar 2006 09:25:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743624#M256549</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-03-03T09:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: root directory full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743625#M256550</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;Donald,&lt;BR /&gt;&lt;BR /&gt;Is there an option on the trash to "empty" it?&lt;BR /&gt;&lt;BR /&gt;Can you get to the command line and delete file that way?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Mar 2006 09:30:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743625#M256550</guid>
      <dc:creator>DCE</dc:creator>
      <dc:date>2006-03-03T09:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: root directory full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743626#M256551</link>
      <description>Hi Donald,&lt;BR /&gt;&lt;BR /&gt;right click your mouse, select Folders, Empty Trash Can.&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;# cd /.dt/Trash&lt;BR /&gt;# ls -la&lt;BR /&gt;# rm files&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Fri, 03 Mar 2006 09:32:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743626#M256551</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2006-03-03T09:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: root directory full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743627#M256552</link>
      <description>Find out the files which got added to the / recetly and find out the files with more size.&lt;BR /&gt;&lt;BR /&gt;1) find / -xdev -size +10000 -exec ls -l {} \;&lt;BR /&gt;Use &lt;BR /&gt;2) du -sk * | sort -n  from / to find out which all folders use more space on the file system&lt;BR /&gt;&lt;BR /&gt;3) find / -xdev -name core&lt;BR /&gt;&lt;BR /&gt;To find out any core files. Removing the /temp files might have created issues to the running applications temp files.&lt;BR /&gt;&lt;BR /&gt;Find the files and move to some other filesystem which has got space.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Mar 2006 09:49:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743627#M256552</guid>
      <dc:creator>SUDHEER M S</dc:creator>
      <dc:date>2006-03-03T09:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: root directory full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743628#M256553</link>
      <description>Robert-Jan,&lt;BR /&gt;&lt;BR /&gt;  Your answer was right on the money, I didn't realize that exceed didn't actually delete the files. When I try to delete *.* from the Trash directory it returns 'non-existant' and I had to delete each file seperately. Do you by chance know the difference between putting files in 'trash' and putting them in 'workspace'??&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Mar 2006 10:26:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743628#M256553</guid>
      <dc:creator>Donald Thaler</dc:creator>
      <dc:date>2006-03-03T10:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: root directory full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743629#M256554</link>
      <description>Donald,&lt;BR /&gt;&lt;BR /&gt;Please remember that you are deleting files on a UNIX machine.  When you try to delete *.*, you are only deleting files that have a '.' in them somewhere, surrounded by any other chatacter(s).  From the UNIX command line, you would delete all files by typing:&lt;BR /&gt;&lt;BR /&gt;$ rm *&lt;BR /&gt;&lt;BR /&gt;This will delete all files in the directory (except 'hidden' files; file that begin with '.').  &lt;BR /&gt;&lt;BR /&gt;Do keep in mind that rm * is a very dangerous command.  Check twice, then check again to make sure this is what you want to do.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Mark</description>
      <pubDate>Mon, 06 Mar 2006 12:23:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743629#M256554</guid>
      <dc:creator>Mark Ellzey</dc:creator>
      <dc:date>2006-03-06T12:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: root directory full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743630#M256555</link>
      <description>In general, from the command line:&lt;BR /&gt;&lt;BR /&gt;find / -xdev -size +1000000c &lt;BR /&gt;&lt;BR /&gt;This will list all files on the device (xdev) starting in / that are greater than 1 meg in size.&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Mar 2006 12:50:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743630#M256555</guid>
      <dc:creator>Kent Ostby</dc:creator>
      <dc:date>2006-03-06T12:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: root directory full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743631#M256556</link>
      <description>Hi Donald,&lt;BR /&gt;&lt;BR /&gt;If you drag files into your workspace they will stay in the original directory (its just a link to your desktop), if you put files into your Trash they will be moved to the $HOME/.dt/Trash directory. &lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Tue, 07 Mar 2006 06:04:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-directory-full/m-p/3743631#M256556</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2006-03-07T06:04:07Z</dc:date>
    </item>
  </channel>
</rss>

