- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: crontab -e
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
01-08-2010 06:22 AM
01-08-2010 06:22 AM
I have an issue with crontab -e. When I sudo that command, a text editor window pops up, and tells me "Unable to read from file (probably no read permission)."
However, crontab -l workds like a charm!!
Any ideas??
thx
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2010 06:56 AM
01-08-2010 06:56 AM
Re: crontab -e
You have to search for cron.allow
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=186051
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2010 06:59 AM
01-08-2010 06:59 AM
Re: crontab -e
The fact that "crontab -l" works suggests that the problem might be with the creation of the temporary file, or accessing it.
Is your /var filesystem (or /var/tmp, if you've made it a separate filesystem) perhaps 100% full?
The name of the temporary file created by "crontab -e" is dynamically generated: something like /var/tmp/aaaa01539. I guess it might be created by the tmpnam() library function
I think there used to be a bug of some sort that caused similarly-named temporary files (not necessarily created by the crontab command, but something else that uses tmpnam()) to accumulate in /var/tmp. If there are a *lot* of old temporary files in /var/tmp, the tmpnam() algorithm may be unable to find an unused filename.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2010 09:46 AM
01-08-2010 09:46 AM
Re: crontab -e
/var is at 67% full, so I don't thing that's an issue either.
Regards,
ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2010 11:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2010 06:52 AM
01-11-2010 06:52 AM
Re: crontab -e
Can you try with below steps..
Just export the EDITOR with vi
EDITOR=vi
export EDITOR
Regards
himacs