- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Can't remove file (non-existent)
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
09-14-2001 02:49 AM
09-14-2001 02:49 AM
rm: v4_crt_smo_st_data.sql non-existent
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 02:59 AM
09-14-2001 02:59 AM
Solutioncd to the directory the file is in and try inserting a ./ before the filename and a * after the sql at the end.
Or do ls -l | vis
To see the file and any funny characters in the filename.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 03:04 AM
09-14-2001 03:04 AM
Re: Can't remove file (non-existent)
If filename has unusual characters, if it's possible, you could try delete it with the "file manager" of CDE.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 03:04 AM
09-14-2001 03:04 AM
Re: Can't remove file (non-existent)
ll -i (to find the inode number)
substitute the inode number in place of the # below;
find . -xdev -inum # -exec ll {} \;
find . -xdev -inum # -exec rm -i {} \;
Note, it is prefered to run the find from the filesystem your are in not from / becuase it is likely that the inode number will appear in more than one filesystem.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 03:17 AM
09-14-2001 03:17 AM
Re: Can't remove file (non-existent)
You may have some nonprinting characters in the
file name. To see them use ls -b.
To delete them you can use :
rm -i "`ls -b BEGINNIG_OF_FILENAME`"
HTH
Herv?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 09:29 AM
09-14-2001 09:29 AM
Re: Can't remove file (non-existent)
#rm -i
This is an interactive command that will ask you at each file instance name if you want to remove it. When you get to the on you want removed, answer "y". That's it!
Do a ^C to get out of "rm".
Hope this helps you.