Fedora :: Crontab Alarm Setup - No Sound

Dec 19, 2009

I am trying to set up an alarm via crontab. I can play music by "/usr/local/bin/mp3blaster /home/burak/Desktop/kemannnnn.mp3" command on terminal. However when I wrote this line in crontab it doesn't play:
04 19 * * * root /usr/local/bin/mp3blaster /home/burak/Desktop/kemannnnn.mp3

View 5 Replies


ADVERTISEMENT

Fedora :: Crontab - Alarm Clock Functionality To Wake Up Computer

Jul 6, 2010

I have a feature that keeps me going back to Mac every night, and I was wondering if there was an equivalent. I have a nice app called alarm clock on Mac that plays music from my library on specified days of the week and times AND can wake the computer from sleep to do so. I was wondering if there was a Linux equivalent, such as crontab, that could do all those things. It's the last barrier to almost full time Linux use.

View 4 Replies View Related

Ubuntu :: CronJob - Alarm Clock Setup With Snooze Function

Feb 4, 2011

I need to set up an alarm to start at 7:30am and run every 5 seconds until I stop it. How would I acheive this in cron tab?

View 2 Replies View Related

Ubuntu :: No Option For Sound Alarm In Calendar?

Apr 10, 2011

I've seen in Evolution Calendar where you can have an audio alarm in addition to the pop-up and notification. For the life of me, I cannot find that now. I am Ubuntu 10.04 LTS with Evolution 2.28.3 - the latest in the repository. I just can't find an option for audio alarms...

View 1 Replies View Related

General :: Crontab Not Working \ Edited Crontab File Using Crontab -e?

Apr 27, 2010

I am using Linux 64 bit Redhat Linux. I am trying to setup simple crontab as follow...1. Edited crontab file using crontab -e2. Listed the file once to verify it using crontab -l. This will display as.. 18 5 * * 2-3 ksh $HOME/testScript.sh > $HOME/testscript.out3. Logged in a root and restarted cron deamon using "/etc/init.d/crond restart"As per my understanding now my testScript should start running at 5:18 am Thuesday

View 3 Replies View Related

General :: Setup Do Not Run In The Blank Crontab

Aug 13, 2010

I used to get the below when I ran crontab, but now its disappeared and my tasks I set up do not run in the blank crontab

#lxpr weekly cron job - Kickstart generated entry
0 1 * * 0 /opt/lxpr/lxpr -st /var/lxpr
#lxpr monthly job to clear down old dumps - Kickstart generated entry
0 1 28 * * find /var/lxpr -name "lxpr.`uname -n`*" -type d -a -mtime +30 -exec /bin/rm -r {} ;

View 5 Replies View Related

Slackware :: Setup A Cron Job Using Crontab Entry

May 31, 2010

I am trying to setup a cron job using crontab entry like this 6,16,26,36,46,56 * * * * /usr/bin/fetchmail -k>/dev/null 2>&1 But nothing is happening This is the first time I have attempted using cron as I have settup mutt for my email which is now working great but I would like to have the mail collected every 10 mins The file is saved as mailcron in my /home folder. When i run crontab -l its listed ok but no mail is appearing in mutt.

View 10 Replies View Related

Slackware :: How To Properly Setup Crontab On 13.0 Machine

Dec 3, 2010

I'm running a Slackware64 13.0 machine with the following line at the end of crontab -e:
Code:
@reboot rm -rf /tmp/*
Yet /tmp is not clearing.
This exact same setup is working fine for me on two 13.1 boxes and a -current machine; what gives?

View 5 Replies View Related

Fedora :: Write A Crontab Entry Using "crontab -e"

Jul 21, 2011

I was trying to write a crontab entry using "crontab -e"


Code:
0 0 * * * cp /var/log/httpd/domains/mydomain.net.log
/home/admin/logs/mydomain.net.log

crontab is giving me this error:

Code:
"/tmp/crontab.XXXXfMOnRS":2: bad minute
errors in crontab file, can't install.

I've tried a dozen different values for the minute, but it's still giving me the same error.

View 5 Replies View Related

Fedora :: No Sound On Version 14 - Setup On Server

Apr 21, 2011

I have tried following guides on forums and google to which i have had the sound working once, but when i restarted my server it went off again :? what i need is some step by step instructions I have pulseaudio installed and in the option sound preferences the output says dummy output, but when it was working it had my on-board sound card there I am new to linux and dont know where to start.

View 5 Replies View Related

General :: Possible Disabling Crontab Job Without Deleting Crontab Description Entry

Jun 23, 2011

is it possible disabling a crontab job without deleting the crontab description entry (by crontab -e)?I could also accept to change the entry itself. Now it's:0 0 * * 0-6 /home/me/cron/script.csh

View 4 Replies View Related

Fedora :: Evolution Freezes On Start Up - Ending Alarm Notify Task?

May 17, 2010

I have had some problems with Evolution. It sometimes freezes on start-up: I have to force it to quit. If I open "System Monitor", and end the evolution-alarm-notify task, then I can restart evolution successfully. I therefore suspect it is that which is causing trouble. What is it and how do I stop it?

View 9 Replies View Related

Ubuntu Servers :: After Using Crontab With /etc/crontab / Giving Error "can't Find Command Root"?

Aug 26, 2010

I have a question about using crontab with /etc/crontab...

I had a cron job that I needed to run as root. At the time I thought that sticking it in /etc/crontab would be a good idea. However, I used the crontab command to edit /etc/crontab, which I guess is not standard procedure? Specifically, I configured /etc/crontab as my local user's crontab (i.e. sudo crontab /etc/crontab) then added my cron job as I would a local user crontab (i.e. sudo crontab -e).

Originally, my cron job looked like this:

30 * * * * root /my/batch/script &> /dev/null

After adding the new cron job I started seeing errors. Something to the effect of "can't find command root" or something similar. So I removed the 'root' user definition from the cron job and the job started running fine. However, because this is /etc/crontab, there are other system related cron jobs that have been defined to run under the root account (e.g. "17 * * * * root cd / && run-parts --report /etc/cron.hourly" runs as root, etc.). So these pre-existing system cron jobs, which up until now have been running smoothly, are now generating "can't find command root" errors. But I think that the system cron jobs _are_ successfully being run someplace because logrotate seems to be working.

So what I _think_ is happening is that /etc/crontab is being run twice: once as the system crontab, and once as my sudoed local user's crontab. When I run crontab -l I see nothing, but when I run sudo crontab -l I can see the contents of /etc/crontab. I am reluctant to delete my sudoed local user's crontab, because then in the process I would be deleting the system crontab, and I do not know how I should restore the system crontab's contents. (I am still not sure as to the most appropriate way to edit the system crontab).

How can I get out of this mess? I want /etc/crontab to go back to the way it was before--running _once_ as the system crontab. As for my new cron job, I'm willing to reconfigure it anywhere so long as I am still able to run it as root. Any ideas? (I am using Ubuntu 8.04 Server LTE)

View 2 Replies View Related

Software :: Scheduling Backup In Crontab When Put This File In Crontab To Schedule The Backup Program It Wont Run?

Apr 9, 2011

I have installed an application manager(monitoring application) on my linux server. Now, i need to have backup schedule for my application. The application itself has executive file to backup database.But when i put this file in my crontab to schedule the backup program it wont run!50 09 * * * root /opt/ME/AppManager9/bin/BackupMysqlDB.sh

View 1 Replies View Related

Red Hat / Fedora :: No Crontab For Root?

Oct 28, 2010

I am setting my cron to work. I am in the roo account/ So first I type as vi crontab -e. Then it ask me type "visual" for normal mode and do that then I type the following as below 1 * * * * root usr/local/testClient/runClient.sh>/usr/local/testClient/cron1.log and press esc type wq. Then I restart the cron service /etc/init.d/crond stop and /etc/init.d/crond start. Lastly when I type crontab -l it tells me no crontab for root.

View 2 Replies View Related

Fedora :: Running Script Using Crontab?

Jul 26, 2010

I have a problem using crontab. I have a C file which invokes a linux command. I want to execute the file using crontab. Its like whenever the system boots up and contents gets loads i want to execute this script. The problem is I don't know how to run the script using crontab. For eg if the file is present under /home/user/first.c . In order to execute this script whenever system starts wat wil be my command

View 7 Replies View Related

Red Hat / Fedora :: Shutdown System Through Crontab?

Jun 11, 2009

I am practicing on "crontab" and am able to get system status in time but I want to shut my system through crontab.#15 12 11 06 thu init 0

View 1 Replies View Related

Red Hat / Fedora :: Get Mail From The Crontab Log File?

May 6, 2010

I want to get mail from the crontab log file....

How to set log file in crontab and the second and how can i get mail from the crontablog file.

View 1 Replies View Related

Fedora :: Crontab To Set A File Playing At A Certain Time?

Jun 6, 2010

I used crontab to set a file playing at a certain time, this works fine; however I want this to run even if no-one is logged in (but the computer is on). I can't get it to do this

Line is: 30 06 * * * env DISPLAY=:0.0 /usr/bin/totem /home/adunaic/Playlist.pls

Okay I think the problem was with needing a GUI.

Using this instead works, but i only hear the sound when I log in. I think something needs to be doen to start the audio perhaps?

14 17 * * * export DISPLAY=:0.0 && /usr/bin/mpg123 /home/adunaic/alarm.mp3

View 8 Replies View Related

Fedora :: Editing F-prot Entry On Crontab?

Jun 14, 2010

I just install F-prot software on my Fedora 13. The following entry was added to /etc/crontab16 * * * * <user> /home/<user>/Desktop/f-prot/fpupdate > /dev/null.I tried to use "crontab -e" or "-l" but unable to edit the crontab.

View 7 Replies View Related

Fedora :: Unable To Use Crontab As User On System?

Mar 31, 2011

I am unable to use crontab as a user on my system.

Code:
The error is: You (user) are not allowed to access to (crontab) because of pam configuration. I did just recently do an update but I am not sure why this is acting up. I also tried it as root and it also failed with a similar message. I had several crons that ran daily and they are not currently working also. I have selinux Disabled and it has been that way for some time.

View 5 Replies View Related

Fedora :: Setting Crontab Or Equivalent On Network?

Aug 14, 2011

I have been using a private computer on my departmental network. I am now in the process of switching to the public system. This is a system of different computers, each of which mounts the same homeserver directories for users. One may login to any of these machines and see the same home directory. The department is running a clone of Red Hat Enterprise Linux called Scientific Linux. It is not a lot different from Fedora Linux.

I copied a crontab entry form my private machine and ran crontab -e on one of these computers. I suppose it will now do what needs doing, but what if I need to change the entry or add other entries. I will have to search around for the one computer on which crontab is running. Is there some global network way to do the same thing, i.e., so that I can edit the crontab entries from any machine in the public network?

View 3 Replies View Related

Server :: Crontab 'command Not Found' In Fedora

Jan 13, 2010

For some reason crontab does not work on my system.

Fedora Core 11

I am running from a Virtual Private Server.

Code:

Code:

View 2 Replies View Related

General :: Difference Between /etc/crontab And "crontab -e"

May 29, 2011

What is the difference between the crontab located in /etc/crontab and the crontab that can be edited using crontab -e?

View 2 Replies View Related

Ubuntu :: Two Pop-ups For 1 Alarm

Sep 18, 2010

I'm using Alarm-clock, not the alarm-clock-applet, and when i set Schedulle > AllWekdays an AllMonths the alarm gives me two pop-ups

View 1 Replies View Related

Red Hat / Fedora :: Set A Crontab For Automatic Downloading Of Files From Internet By Using Wget

Feb 5, 2010

I am vijaya, glad to meet you all via this forum and my question is I set a crontab for automatic downloading of files from internet by using wget but when I kept it for execution several process are running for the same at the back ground. My concern is to get only one copy, not many copies of the same file and not abled to find out where it's actually downloading.

View 1 Replies View Related

Fedora Servers :: Crontab Backup Job Works / But Gives Chown / Chgrp Errors

Jul 3, 2010

As root, I use crontab to run mirrordir to backup directories. Everything gets copied over properly, but owner information isn't preserved and root is the owner of all the backed up files. I can deal with that, but crontab reports tons and tons of chown/chgrp errors for mirrordir every time I do back ups--which is every day--and the multiple emails to root of thousands of chown/chgrp errors is very annoying. The error is "Operation not permitted," but that doesn't make sense to me because the job runs as root (right?) and clearly the job is permitted to create the backup files, so why would it fail to chown and chgrp?

I've had the exact same setup on another server for years, and crontab has always run mirrordir without error. Any suggestions how to clear the errors on my new server?

View 14 Replies View Related

Ubuntu Multimedia :: How To Setup 5.1 Sound In Fresh 10.10

Apr 2, 2011

'm trying to set up at least 5.1 sound in my fresh ubuntu 10.10. I have stereo sound but failed when trying to set up the rest. I've googled it, read through couple of pages and tried the following:

- I've installed alsa 1.0.24

- I've added the following lines to /etc/pulse/daemon.conf

Code:

default-sample-channels = 6
default-channel-map = front-left,front-right,rear-left,rear-right,center,lfe

- I've added

Code:

options snd-hda-intel model=3stack-digout
to /etc/modprobe.d/alsa-base.conf

There is no 'Profile' button/menu in Sounds preferences/Hardware.

Code:

$speaker-test -Dplug:surround51 -c6
speaker-test 1.0.24.2
Playback device is plug:surround51
Stream parameters are 48000Hz, S16_LE, 6 channels

[code].....

View 8 Replies View Related

Ubuntu :: Alarm Clock Program Goes Off?

Sep 24, 2010

I'm looking for an easy to use alarm clock program that I can suggest to new users. The two I have tried so far have fallen short of my expectations. "Alarm Clock" from the Ubuntu software repository starts out okay, but when the alarm actually goes off, getting it to stop seems pretty unintuitive. Click on the Alarm Clock icon, then click a Stop button in the new window that pops up. Sounds easy enough except that the icon used for "Stop" is just this grey square, so for users who are not familiar with linux or this program, it isn't even obvious that it is a button. I had one user actually uninstall the thing in order to get it to shut up. Preferably one should be able to silence the alarm by click on the alarm icon (or right clicking, if a 'doze' behavior is preferred) The other one I tried was alarm-clock-applet, which wants me to locate an alarm sound on my filesystem. Uh, no.

Does anyone know of a simple, basic alarm clock system that anyone can just sit down and immediately use without having to 'get in to the head' of the developer? Are the KDE alarms better? Am I missing something about either of these programs which would make them easier to use?

View 4 Replies View Related

Slackware :: Low Battery Alarm Fluxbox

Apr 19, 2010

I'm using fluxbox on my eee pc 1000h and use conky to display % battery charge but (unlike my previous laptop) I don't get a hardware-triggered beep warning me of low battery.I've done a bit of searching but haven't yet found a neat software solution for either a beep or toolbar notification. Any suggestions?(I'm not wanting to switch back to KDE right now.)

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved