LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 07-27-2009, 01:27 PM   #31
micxz
Senior Member
 
Registered: Sep 2002
Location: CA
Distribution: openSuSE, Cent OS, Slackware
Posts: 1,131

Rep: Reputation: 75

Quote:
Originally Posted by soupnsandwich View Post
I'm getting the results of the debugging code that you guys gave me. I was going to set up a very minimum script and crontab file...but the one I have finally works...where as before it didn't. So do you guys think I should still, for now put aside my script and go with the one that Catkin?
Yes. You should run the debug script to prove cron is working as expected. Additionally you should add echo $DISPLAY to the debug code to check your values there.
 
Old 07-27-2009, 03:19 PM   #32
soupnsandwich
Member
 
Registered: Jul 2009
Location: State of Rhode Island
Distribution: TBA
Posts: 34

Original Poster
Rep: Reputation: 15
Ok here is my new test script....it's having an issue with the 'DEBUG 20 (finished stuff) line. I'm a bit new at this stuff so please forgive my ignorance.
Just to make sure it still works for root only I did:

"crontab -e
i
* * * * * /root/Desktop/Notify > /dev/null
ESC
:wq"

I tested it. It works as long as 'DEABUG 20 (finished stuff) is commented out. I'm getting a syntax error in that line.

Once I get this debugging script working I'll move on to testing it again in the /etc/cron. folders for global cron jobs.

What do ya think?

"#!/bin/sh
export DISPLAY=:0.0
file="wget --spider http://www.websitehere.com/Notify/Notify.txt"
if $file; then
echo $DISPLAY
echo 'DEBUG 10 (just started)' 2>/tmp/DEBUG.$$ >&2

echo "file exists"
notify-send --urgency=normal -i /usr/share/icons/notify48.png -t 0 "Notification Alert" "Please click on the Notification Alert icon"



echo 'DEBUG 20 (finished stuff)' 2>/tmp/DEBUG.$$ >>&2




else
echo "file doesn't exist"
exit 0
fi"

Here is the syntax error I get when running that script in a terminal:

"Notify: line 25: syntax error near unexpected token `&'
Notify: line 25: `echo 'DEBUG 20 (finished stuff)' 2>/tmp/DEBUG.$$ >>&2'
"

Hey how do you do a "Code" section when I write code for you to see?

Last edited by soupnsandwich; 07-27-2009 at 03:39 PM.
 
Old 07-27-2009, 03:38 PM   #33
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
Launching a graphical program on a user's screen in a cron job, seems to me to be an odd choice for notification. Normally a log file is created, and the admin user or root is sent an email.

You need to test out your script as root from a virtual terminal, with the regular user logged into X. You may also need to use xauth to save root's cookie in the recipients home directory, and check that it is the expected user who owns the display before trying to send the notification.

Also use a logfile and email as backup notification.
Sometimes the same message is piped through "tee" for the log file and finally piped into nail or another program to send an email as well (all on the same line).
 
Old 07-27-2009, 03:50 PM   #34
soupnsandwich
Member
 
Registered: Jul 2009
Location: State of Rhode Island
Distribution: TBA
Posts: 34

Original Poster
Rep: Reputation: 15
micxz:

Ok well even though the debugging script didn't work 100 percent at least it does something. So I took the crontab line out of the root and added it to the /etc/crontab file and commented out everything else and it doesn't run....after it just did run when it was in the root's contab (see below). So NOTHING is working out of the /etc/crontab it looks like.

Code:
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/

# run-parts

* * * * * /root/Desktop/Notify > /dev/null
#01 * * * * root nice -n 19 run-parts --report /etc/cron.hourly
#02 4 * * * root nice -n 19 run-parts --report /etc/cron.daily
#22 4 * * 0 root nice -n 19 run-parts --report /etc/cron.weekly
#42 4 1 * * root nice -n 19 run-parts --report /etc/cron.monthly
 
Old 07-27-2009, 04:07 PM   #35
micxz
Senior Member
 
Registered: Sep 2002
Location: CA
Distribution: openSuSE, Cent OS, Slackware
Posts: 1,131

Rep: Reputation: 75
I would listen to jschiwal he has a very good point these graphical notifications are not standard practice. And using a log and email should be incorporated.

post results:

ls -l /root/Desktop/Notify
cat /root/Desktop/Notify
whoami
crontab -l
cat /etc/crontab

Why root has a Desktop I don't understand as this is a risky running X as root! Again as jschiwal mentioned you need to be testing this logged in as a regular user and use sudo or su to edit for root.
 
Old 07-27-2009, 04:12 PM   #36
soupnsandwich
Member
 
Registered: Jul 2009
Location: State of Rhode Island
Distribution: TBA
Posts: 34

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by jschiwal View Post
Launching a graphical program on a user's screen in a cron job, seems to me to be an odd choice for notification. Normally a log file is created, and the admin user or root is sent an email.

You need to test out your script as root from a virtual terminal, with the regular user logged into X. You may also need to use xauth to save root's cookie in the recipients home directory, and check that it is the expected user who owns the display before trying to send the notification.

Also use a logfile and email as backup notification.
Sometimes the same message is piped through "tee" for the log file and finally piped into nail or another program to send an email as well (all on the same line).
I don't think that you understand what this is for.

These 3 different notifications isn't for the system itself. It's for my company to notify customers of possible patches, added features and/or critical service notifications.

The cron job doesn't control the notification at all...it runs the script and the script checks the notification page on our site. If a particular file exists it notifies the user. The cron job is there only for people that never shut their computer off. These scripts run globally at start up but if the person leaves the machine on the script never gets ran, and that's what the cron job is for.

Good idea on the virtual terminal. I'll have to try that one.

Thanks
 
Old 07-27-2009, 04:14 PM   #37
soupnsandwich
Member
 
Registered: Jul 2009
Location: State of Rhode Island
Distribution: TBA
Posts: 34

Original Poster
Rep: Reputation: 15
But guys I'm just testing this stuff on the desktop of root. It's not staying there. It just to confirm it's actually running.
 
Old 07-27-2009, 04:17 PM   #38
micxz
Senior Member
 
Registered: Sep 2002
Location: CA
Distribution: openSuSE, Cent OS, Slackware
Posts: 1,131

Rep: Reputation: 75
Quote:
Originally Posted by soupnsandwich View Post
These 3 different notifications isn't for the system itself. It's for my company to notify customers of possible patches, added features and/or critical service notifications.
In this case you should only be using email and logging.

I'm starting to think I don't understand what this is for now.
 
Old 07-27-2009, 04:22 PM   #39
micxz
Senior Member
 
Registered: Sep 2002
Location: CA
Distribution: openSuSE, Cent OS, Slackware
Posts: 1,131

Rep: Reputation: 75
Quote:
Originally Posted by soupnsandwich View Post
But guys I'm just testing this stuff on the desktop of root. It's not staying there. It just to confirm it's actually running.
You can't confirm it's actually running as expected if it's job is to notify regular users via X windows when your looking at the root desktop.To confirm it's running you need to reread this post and use the debugging methods described earlier.

make it simple in your script add after you do stuff:
echo DISPLAY=$DISPLAY >> /tmp/log.$$
do something
echo "do something is done" >> /tmp/log.$$
...
 
Old 07-27-2009, 05:49 PM   #40
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
Quote:
Originally Posted by soupnsandwich View Post
I don't think that you understand what this is for.

These 3 different notifications isn't for the system itself. It's for my company to notify customers of possible patches, added features and/or critical service notifications.

The cron job doesn't control the notification at all...it runs the script and the script checks the notification page on our site. If a particular file exists it notifies the user. The cron job is there only for people that never shut their computer off. These scripts run globally at start up but if the person leaves the machine on the script never gets ran, and that's what the cron job is for.

Good idea on the virtual terminal. I'll have to try that one.

Thanks
Thanks for the explaination. It explains what you are trying to do. I was thinking this was for notifying an admin user at a server, the results of a cron job.

The reason for logging as root in a VT, eg vt/2, is to test sending the graphical message to the logged in user, while having root not be in X. Except for more variables being set in the environment, the conditions are similar to the script running in cron.

Since this is for customers, you might need to check if the user's distro uses ConsoleKit and PolicyKit, and which Desktop environment is being used, and use a different script depending on the results.

Quote:
ConsoleKit is a system daemon for tracking what users are logged into
the system and how they interact with the computer (e.g. which keyboard
and mouse they use).
Quote:
PolicyKit is a toolkit for defining and handling authorizations. It is
used for allowing unprivileged processes to speak to privileged
processes.
A policy kit rule might say something like a regular authorized user may mount a DVD disc if logged in locally but not remotely. ( It would say that in xml'ese)
The ConsoleKit daemon is what determines if the user matches the criterium of the rule.

This is an area that is rapidly evolving. Just one minor revision earlier on my system, the udev rules were prominent. Now most of them are gone, and permissions to write to devices are done by adding a facl on the device node instead of creating a device node with the users group ownership, and modifying the permissions. Look at "ls -l /dev". The permissions that have a "+" at the end are examples.

I'm not sure whether this could effect root -> user popup notifications. Maybe the last two paragraphs are irrelevent.

Another evolving area is how notifications are handled in desktop environments. KDE 4 and Gnome now use the dbus daemon for communications between daemons and the desktop. hald/KDE and hald/Gnome communications are handled this way. Also a user may come to expect a non-modal notification popup when using KDE 4 or the latest Gnome desktop.

What you are doing sounds similar to a distro's update notification. On my system, SuSE, a bubble dialog fades in with a message that there are updates available. There is an applet that sits in the notification area of the task bar. Looking at how a multi-desktop* distro, such as SuSE or Fedora, do the same could be instructive. Trying to put my myself in the shoes of a customer, a kde or gnome applet which catches signals and displays text messages from a cron job may be less intrusive than an Xauth cookie in the home directory.

In any event, you should test whatever you come up with, on different distro's & versions. Sounds like a job for Virtual box!

Good Luck!
* By a multi-desktop distro, I mean one where you can install the desktop of your choice from the DVD or CD, and have the same menu and notifications work in all of them.

Last edited by jschiwal; 07-27-2009 at 06:02 PM.
 
Old 07-27-2009, 10:37 PM   #41
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
micxz,

I ran into this later:
http://crunchbanglinux.org/forums/to...ty-notifysend/

Here is the manpage for notify-send:
http://manpages.ubuntu.com/manpages/...fy-send.1.html

This post deals with notifications for Gnome & KDE. The same issues of the SCREEN variable, and xauth came up.
As well as not assuming that the logged in user was using screen :0.0.

http://forums.opensuse.org/programmi...-gui-wise.html


Hope these might help a little.

Good Luck!

Last edited by jschiwal; 07-27-2009 at 10:49 PM.
 
Old 07-28-2009, 02:12 AM   #42
micxz
Senior Member
 
Registered: Sep 2002
Location: CA
Distribution: openSuSE, Cent OS, Slackware
Posts: 1,131

Rep: Reputation: 75
Great links! I hope it clears things up for the OP as it did for me.
 
Old 07-28-2009, 03:55 AM   #43
micxz
Senior Member
 
Registered: Sep 2002
Location: CA
Distribution: openSuSE, Cent OS, Slackware
Posts: 1,131

Rep: Reputation: 75
OK when I tested I can get a cron job to notify an x session only if the regular user allows it via:
Code:
xhost +local:root
Othe wise I got the error:
libnotify-Message: Unable to get session bus: dbus-launch failed to autolaunch D-Bus session: Invalid MIT-MAGIC-COOKIE-1 keyAutolaunch error: X11 initialization failed.

Here's what I have setup to test:
Code:
com:~ # crontab -l
* */3 * * * /root/bin/sendfortune > /dev/null

com:~ # cat /root/bin/sendfortune 
#!/bin/bash
export DISPLAY=:0.0
/root/bin/note /usr/bin/fortune

com:~ # cat /root/bin/note 
#!/bin/bash

info=$(eval "$*" 2>/dev/null)
notify-send -t $((1000+300*`echo -n $info | wc -w`)) -u low -i gtk-dialog-info "$*" "$info" || exit 2

Last edited by micxz; 07-28-2009 at 03:56 AM.
 
Old 07-28-2009, 03:31 PM   #44
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
Micxz. Please reread some of the links. Don't use xhost to allow anyone to write to the screen. Use xauth and drop a cookie in the home directory instead. xhost can be a security hole.
 
Old 07-28-2009, 03:35 PM   #45
micxz
Senior Member
 
Registered: Sep 2002
Location: CA
Distribution: openSuSE, Cent OS, Slackware
Posts: 1,131

Rep: Reputation: 75
I thought I was only allowing root to write to my screen from localhost with this command? I wasn't able to get the cookies to work correctly but I must have done it wrong. I will check again' Thanks for the heads up'
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
cron job doesnt work, it works manually scofiled83 Programming 8 05-30-2009 03:12 PM
Why my cron job doesn't work byng08 Linux - Newbie 7 11-26-2008 01:17 AM
adding a perl script to cron.daily / cron.d to setup a cron job CrontabNewBIE Linux - Software 6 01-14-2008 08:16 AM
How do I get a cron job to work? socceroos Linux - Software 2 03-23-2006 04:22 PM
Cron Job petenyce Linux - Newbie 5 10-11-2005 04:03 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

All times are GMT -5. The time now is 07:50 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration