ক্রন্টব ত্রুটি "মূলের জন্য কোনও ক্রন্টব নয়"


13

আমি যখন crontab -eটার্মিনালে কমান্ড লিখি ,

আমি এই ত্রুটি বার্তাটি পেয়েছি:

no crontab for root - using an empty one 888

আমি জানি না '888' অর্থ কী?

Crontab / etc / crontab এর কনফিগার ফাইল:

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user  command
58 * * * * root cd / && run-parts --report /etc/cron.hourly
52 0 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
46 0 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
9 5 28 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#

আমাকে সাহায্য করুন.

ধন্যবাদ।

cron 

2
Crontab -e এবং / etc / crontab দ্বারা সম্পাদিত ফাইলটি বিভিন্ন ফাইল। serverfault.com/questions/449651/…

উত্তর:


9

আপনার crontabসম্পাদকটি স্যুইচ করা হয়েছে ed। এর থেকে বের হতে ed, প্রেস Qএবং পরবর্তীকালে Enter। এটি edসম্পাদক ছেড়ে যাবে ।

আপনি যদি আপনার crontabসম্পাদককে আবার nanoব্যবহার করতে চান তবে:

sudo select-editor

এটি সহায়ক হতে পারে:

EDITOR=nano crontab -e

8

এটি ডিফল্ট ফাইলে অক্ষরের সংখ্যা। উবুন্টু একটি 'খালি' ক্রন্টব ফাইল তৈরি করে যাতে এটি কীভাবে ব্যবহার করতে হয় তার অনেকগুলি মন্তব্য দেওয়া হয়।

crontab -e 
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h  dom mon dow   command
"/tmp/crontab.vILdXR/crontab" 22L, 888C

@ ল্যালেন আমি এই ফাইলটি খুলতে পারি না?
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.