- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Filesystem problem?
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
11-04-2005 02:13 AM
11-04-2005 02:13 AM
Thanks a lot!
# pwd
/u02/app/DEV50/rms/forms
# ll
total 1868
drwxrwxr-x 2 oracle rms 16384 Nov 3 08:17 bin
-rw-rw-r-- 1 johnso_b staff 407244 Sep 29 09:18 bin
-rw-rw-r-- 1 johnso_b staff 504488 Nov 3 08:16 bin
# rm bin
rm: bin non-existent
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2005 02:21 AM
11-04-2005 02:21 AM
SolutionI suspect the filenames actuall contain some non-graphic charcters. You can expose them with 'ls -lb' to show their octal notation.
An easy way to remove them is to identify their inode ('ls -li'). Note the inode number and do:
# cd /u02/app/DEV50/rms/forms
# find . -inum
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2005 02:24 AM
11-04-2005 02:24 AM
Re: Filesystem problem?
Yes, that's because of non-graphic charcters!
I can see those chars with ftp client, but not putty.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2005 02:25 AM
11-04-2005 02:25 AM
Re: Filesystem problem?
- Tags:
- unprintable chars
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2005 04:43 AM
11-04-2005 04:43 AM
Re: Filesystem problem?
Login to the system though ftp with root user. at th prompt change to the dir "/u02/app/DEV50/rms/forms
ftp>cd /u02/app/DEV50/rms/forms
ftp>ls -l
ftp>rm *bin*
ftp>bye
Regards,
Sunil