- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Huge files in root dir
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2002 10:42 AM
07-05-2002 10:42 AM
Huge files in root dir
This is obviously no good so looking in there I found two mysterious files. One is a file with the same name as the hostname and another file is the name of our backup server (a sun box). Both these files are nearly 14 MBs.
Anyone seen this before and is it safe to get rid of them?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2002 10:48 AM
07-05-2002 10:48 AM
Re: Huge files in root dir
Do a file on those filename and see what kind of file this is.
Ex: file yourhostname. It looks like somebody might have created these files. You can saftly remove it. Or if it has any valuable info then move it to somewhere else.
Goodluck,
-USA...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2002 10:52 AM
07-05-2002 10:52 AM
Re: Huge files in root dir
You can copy this file in another directory if you have space, check the contenst of the file if they are readable (text) and then safely remove these files.
I have not heard of such files.
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2002 11:09 AM
07-05-2002 11:09 AM
Re: Huge files in root dir
Chances are that this is a script or command that was intented to use a hostname as a paramater, but rather wrote it to these filenames. Of course you'll want to look into it further, by looking at the file dates and such.
I would move these files into another filesystem that has some free space available. If you don't have the space to work with in another filesystem, then back them up to tape to be sure. It's always good to have a copy, in the event that there is a real need for these files.
Be sure to take a look at what user created them and determine what they actually are so you can prevent them from being created in the future. I would try:
file
and depending on the results from that:
strings
more
Hope that helps.
-Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2002 11:10 AM
07-05-2002 11:10 AM
Re: Huge files in root dir
Thanks to all.
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2002 11:21 AM
07-05-2002 11:21 AM
Re: Huge files in root dir
If anything goes out of whack I can copy them back from wher they were moved.
Thanks
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2002 11:31 AM
07-05-2002 11:31 AM
Re: Huge files in root dir
Yes once you copy them to another filesystem you can always restore them back if you require them.
Read the contest of the file thro strings or vi and find out.
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 06:46 AM
07-08-2002 06:46 AM
Re: Huge files in root dir
command.
scp largefile remotehost
instead of
scp largfile remotehost:
It dropps the file in the current directory. Usually
this is a commandline problem.
Check the shell history for root.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 07:31 AM
07-08-2002 07:31 AM
Re: Huge files in root dir
Marty