Re: [campcaster-support] Request assistance removing orphaned transportCron.php
  • phorum@code.campware.org wrote:
    > Author: wyrless2002
    > Link: http://code.campware.org/phorum/read.php?20,6690,6690#msg-6690
    > --------------------------------------------------------------------------------
    >
    > I had previously downloaded and tried Campcaster out of curiosity, but un-installed it after the trial on Ubuntu 8.04. I've since upgrade to Ubuntu 8.10, and found in my system log that I still have a cron task running, as seen below:
    >
    > Nov 7 06:04:01 Ubuntudesktop /USR/SBIN/CRON[28243]: (www-data) CMD (/opt/campcaster/var/Campcaster/storageServer/var/cron/transportCron.php)
    >
    > I'm still learning linux, and have been unable to find a suitable answer to removing this task, or where it resides. Can you help me stop this orphaned process?
    >
    > Thank You for Your time and experience,
    >
    > Aaron


    Hi Aaron,

    The command you are looking for is "crontab". If you run it without
    arguments, it will tell you how to use it. For example:


    $ sudo crontab -u www-data -l
    */2 * * * *
    /opt/campcaster/var/Campcaster/storageServer/var/cron/transportCron.php

    $ sudo crontab -u www-data -r

    $ sudo crontab -u www-data -l
    no crontab for www-data


    Regards,
    Ferenc