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-20-2002 07:02 AM
05-20-2002 07:02 AM
crontab
warning: commands will be executed using /usr/bin/sh
Is there any way to resolve this warning?
Thanks,
Bob Menefee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 07:06 AM
05-20-2002 07:06 AM
Re: crontab
depends. is there a reason to worry about the scripts being run in usr/bin/sh? that is the default kernal, and shouldn't cause any issues unless you wrote the script in another (csh, for example). I think it is just a head's up type of thing and personally I wouldn't worry about it.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 07:07 AM
05-20-2002 07:07 AM
Re: crontab
or #!/usr/bin/perl in as the first line.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 07:07 AM
05-20-2002 07:07 AM
Re: crontab
It is just telling you that any commands that are run from the crontab will be executing using the POSIX shell (/usr/bin/sh).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 07:10 AM
05-20-2002 07:10 AM
Re: crontab
This message will be NORMAL, depends on your usage. If you directly edit the cron file, then shell will accept the default environmental variables, and will display this message. If you particularly needs the cron file to be executed by a shell, then you need to add this at the starting of the file:
SHELL=/usr/bin/ksh;export SHELL
( for ksh).
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 07:12 AM
05-20-2002 07:12 AM
Re: crontab
Check this document for the correct steps to edit a cron file (TKB #KBRC00000924):
http://us-support2.external.hp.com/cki/bin/doc.pl/sid=05f18d471c2da471f8/screen=ckiDisplayDocument?docId=200000058668843
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 07:14 AM
05-20-2002 07:14 AM
Re: crontab
This is a standard message and not any warning . Actually you can scheule cron either buy crontab -e , which helps you editing and schduling ot edit /usr/spool/cron/crontabs/
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 07:26 AM
05-20-2002 07:26 AM
Re: crontab
This is not an error message. It is just that the system is tellling you that your cron jobs will be executed using the /usr/bin/sh shell.
Hope this helps.
regds