- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- rm /opt/.journal 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
05-07-2004 03:22 AM
05-07-2004 03:22 AM
[root@aktsrh02 histlogs]# rm -f /opt/.journal
rm: cannot unlink `/opt/.journal': Operation not permitted
[root@aktsrh02 histlogs]#
[root@aktsrh02 histlogs]# ll /opt/.journal
-rw------- 1 root root 33554432 Oct 14 2003 /opt/.journal
[root@aktsrh02 histlogs]#
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2004 03:57 AM
05-07-2004 03:57 AM
Re: rm /opt/.journal problem
chmod 666 .journal
Vern
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2004 05:34 AM
05-07-2004 05:34 AM
SolutionThe probable cause here is is an open process on the file.
Suggestion: use fuser command to terminate the process.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2004 05:52 AM
05-07-2004 05:52 AM
Re: rm /opt/.journal problem
Assuming this is the journal file of an ext3 filesystem you should not delete it while the filesystem is mounted read-write.
I have no experience in this field, but it is suggested on the internet to mount the FS as ext2, delete the .journal file, and create the file again. Check for yourself before taking action.
JP.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2004 07:13 AM
05-07-2004 07:13 AM
Re: rm /opt/.journal problem
I found out there are more than 1 .journal
file.
I am able to rm -f the .journal files that
are currently not used by any process.
Thanks again