[CentOS] Disable Kernel Screen Blanker

2013-08-04 Thread Mark LaPierre
Hey Y'all, I'm trying to turn off the kernel screen blanker that shuts off the video after about 10 minutes of inactivity at the keyboard. After extensive googling I've found two ways to *NOT* do it. In my home .xinitrc setterm -blank 0 -powersave off -powerdown 0 xset s off In /etc/rc.local

Re: [CentOS] Disable Kernel Screen Blanker

2013-08-04 Thread Nux!
On 04.08.2013 17:46, Mark LaPierre wrote: > Hey Y'all, > > I'm trying to turn off the kernel screen blanker that shuts off the > video after about 10 minutes of inactivity at the keyboard. After > extensive googling I've found two ways to *NOT* do it. Try gnome-power-preferences. -- Sent from

Re: [CentOS] run script on cron job only run on first Saturdat every month???

2013-08-04 Thread Mark LaPierre
On 07/30/2013 04:43 PM, mcclnx mcc wrote: > we have CENTOS 5.5 on DELL server. One of our script need run on first > Saturday every month. > > We have following setup on cron job but it run every Saturday. > > 15 04 1-7 * 6 /home/app/oracle/backup/monthlybk.sh > >Any one know how to fix it?

Re: [CentOS] run script on cron job only run on first Saturdat every month???

2013-08-04 Thread Darr247
On 2013-08-04 2:59 PM, Mark LaPierre wrote: > 15 4 1-7 * 7 /home/app/oracle/backup/monthlybk.sh Can you please point out what's wrong with 15 04 1-7 * 6 /home/app/oracle/backup/monthlybk.sh that makes it run every saturday instead of only the first saturday of the month? (Going by the break

Re: [CentOS] surveillance DVR

2013-08-04 Thread Brian Mathis
On Wed, Jul 31, 2013 at 11:59 AM, wrote: > Brian Mathis wrote: > > On Wed, Jul 31, 2013 at 10:33 AM, wrote: > >> Arun Khan wrote: > >> > On Wed, Jul 31, 2013 at 8:10 PM, wrote: > > >> >> Does anyone know of a DVR that runs Linux that does NOT USE > Active-X, and/or allows logging in directly?

[CentOS] ghostscript-8.70-14.el5_8.1.x86_64 & hylafax+ 5.5.3

2013-08-04 Thread Gregory P. Ennis
I am having some problems with hylafax+ on CentOS 5.9 converting files into appropriate tiff files that are faxable; the problem is apparently fixed in ghostscript 9.07. The CentOS repositories currently have ghostscript-8.70-14.el5_8.1.x86_64 I surely appreciate the maintainers of the reposit

Re: [CentOS] ghostscript-8.70-14.el5_8.1.x86_64 & hylafax+ 5.5.3

2013-08-04 Thread Frank Cox
On Sun, 04 Aug 2013 15:56:10 -0500 Gregory P. Ennis wrote: > I surely appreciate the maintainers of the repositories; can any of you > direct me to whom maintains ghostscript on the repository or when 9.07 > is planned to be included. I would also like to request that ghostpcl > be included, but

Re: [CentOS] ghostscript-8.70-14.el5_8.1.x86_64 & hylafax+ 5.5.3

2013-08-04 Thread Gregory P. Ennis
On Sun, 04 Aug 2013 15:56:10 -0500 Gregory P. Ennis wrote: > I surely appreciate the maintainers of the repositories; can any of you > direct me to whom maintains ghostscript on the repository or when 9.07 > is planned to be included. I would also like to request that ghostpcl > be included, but

Re: [CentOS] ghostscript-8.70-14.el5_8.1.x86_64 & hylafax+ 5.5.3

2013-08-04 Thread Frank Cox
On Sun, 04 Aug 2013 16:28:55 -0500 Gregory P. Ennis wrote: > Is there > a way to be able to compile the 9.07 in different directories so that I > do not destroy 8.70 or the libraries. Of course. You can simply compile the tarball or the rpm, assuming that your system has all of the required depe

Re: [CentOS] ghostscript-8.70-14.el5_8.1.x86_64 & hylafax+ 5.5.3

2013-08-04 Thread Ljubomir Ljubojevic
On 08/04/2013 11:38 PM, Frank Cox wrote: > On Sun, 04 Aug 2013 16:28:55 -0500 > Gregory P. Ennis wrote: > >> Is there >> a way to be able to compile the 9.07 in different directories so that I >> do not destroy 8.70 or the libraries. > > Of course. You can simply compile the tarball or the rpm, as

Re: [CentOS] ghostscript-8.70-14.el5_8.1.x86_64 & hylafax+ 5.5.3

2013-08-04 Thread John R Pierce
On 8/4/2013 3:09 PM, Ljubomir Ljubojevic wrote: > First try installing compiled rpm on a TEST system, and if that does not > work you can try recompiling the source rpm, or ask someone to help you, > maybe maintainer of ghostscript in Fedora. if you rebuild it via the RPM, it likely will overwrite

Re: [CentOS] run script on cron job only run on first Saturdat every month???

2013-08-04 Thread Keith Keller
On 2013-08-04, Darr247 wrote: > On 2013-08-04 2:59 PM, Mark LaPierre wrote: > > > 15 4 1-7 * 7 /home/app/oracle/backup/monthlybk.sh > > > Can you please point out what's wrong with > > 15 04 1-7 * 6 /home/app/oracle/backup/monthlybk.sh > > that makes it run every saturday instead of only the first

Re: [CentOS] run script on cron job only run on first Saturdat every month???

2013-08-04 Thread Darr247
On 2013-08-04 8:54 PM, Keith Keller wrote: > We have already gone over this. The days columns are effectively ORed. > So the above job runs every day from the 1st to the 7th, and every > Saturday of the month. Read man 5 crontab to see this documented. --keith Right, but the proposed command do

Re: [CentOS] run script on cron job only run on first Saturdat every month???

2013-08-04 Thread zGreenfelder
On Mon, Aug 5, 2013 at 12:45 AM, Darr247 wrote: > On 2013-08-04 8:54 PM, Keith Keller wrote: > > We have already gone over this. The days columns are effectively ORed. > > So the above job runs every day from the 1st to the 7th, and every > > Saturday of the month. Read man 5 crontab to see this