Re: [CentOS] [CentOS-announce] Release for CentOS Linux 6.9 i386 and x86_64

2017-04-05 Thread Sorin Srbu
> -Original Message-
> From: CentOS [mailto:centos-boun...@centos.org] On Behalf Of Leon Fauster
> Sent: den 5 april 2017 17:01
> To: centos@centos.org
> Subject: Re: [CentOS] [CentOS-announce] Release for CentOS Linux 6.9 i386
> and x86_64
> 
> > We are pleased to announce the immediate availability of CentOS Linux
> > 6.9 and install media for i386 and x86_64 Architectures. Release Notes
> > for 6.9 are available at:
> >
> > http://wiki.centos.org/Manuals/ReleaseNotes/CentOS6.9
> >
> > CentOS Linux 6.9 is derived from source code released by Red Hat, Inc.
> > for Red Hat Enterprise Linux 6.9. All upstream variants have been placed
> > into one combined repository to make it easier for end users.
> > Workstation, server, and minimal installs can all be done from our
> > combined repository. All of our testing is only done against this
> > combined distribution.
> 
> Thank you very much!

+1!

Thanks guys, this is much appreciated!

-- 
//Sorin
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Withdraw - Re: Roundcubemail 1.1.8 possible bug?

2017-04-05 Thread Alice Wonder

Leaving it off is a bad recommendation. Many have pointed that out.

The problem is that sometimes it results in content being sent after the 
php sends the content, when there is white space after the closing ?>


However the proper thing to do is make sure that you do not have white 
space after the closing ?>


Leaving the ?> off is sloppy coding and a sloppy solution.

On 04/05/2017 04:36 PM, Robert Moskowitz wrote:

I do not code php, I only use it in things like Roundcubemail, so I was
at first surprised that the config file was missing the closing ?> tag.
Then I noticed that ALL of the various php config files where missing
it.  So I did some googling and found out it is actually recommended to
leave it off.

Humph.

On 04/05/2017 12:09 PM, Robert Moskowitz wrote:

I am installing Roundcubemail on Centos7-arm

roundcubemail-1.1.8-1.el7.noarch

The installer web app creates a config.inc.php to save within the
/etc/roundcubemail/ directory.  It warns that:

"Make sure that there are no characters outside the  brackets
when saving the file."

Thing is  there is no ?> at the end of this.  It is left out. So I got
to add that myself.  I should be able to just copy the content of the
text box, and paste it into a cat > /etc/roundcubemail/config.inc.php,
but I am left having to at least having to add the ending ?>


___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos



___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] Withdraw - Re: Roundcubemail 1.1.8 possible bug?

2017-04-05 Thread Robert Moskowitz
I do not code php, I only use it in things like Roundcubemail, so I was 
at first surprised that the config file was missing the closing ?> tag.  
Then I noticed that ALL of the various php config files where missing 
it.  So I did some googling and found out it is actually recommended to 
leave it off.


Humph.

On 04/05/2017 12:09 PM, Robert Moskowitz wrote:

I am installing Roundcubemail on Centos7-arm

roundcubemail-1.1.8-1.el7.noarch

The installer web app creates a config.inc.php to save within the 
/etc/roundcubemail/ directory.  It warns that:


"Make sure that there are no characters outside the  brackets 
when saving the file."


Thing is  there is no ?> at the end of this.  It is left out. So I got 
to add that myself.  I should be able to just copy the content of the 
text box, and paste it into a cat > /etc/roundcubemail/config.inc.php, 
but I am left having to at least having to add the ending ?>



___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos



___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] CentOS 7, systemd,, and message floods

2017-04-05 Thread m . roth
Chris Adams wrote:
> Once upon a time, Brian Mathis  said:
>> if grep -q debug /proc/cmdline; then
>> echo "Kernel and systemd debugging was enabled as part of an errant
>> script during the yum update"
>> echo "See https://bugs.centos.org/view.php?id=12425 and
>> https://wiki.centos.org/HowTos/Grub2";
>> fi
>
> Assuming your GRUB entries are in the usual order (newest kernel first),
> you can do:
>
> grub2-set-default "$(grep '^menuentry' /boot/grub2/grub.cfg | grep -v
> debug | head -n 1 | cut -d\' -f2)"
>
> and then reboot.

Thanks to both of you - that's the issue.

 mark


___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Timezone and date

2017-04-05 Thread Brian Mathis
On Wed, Apr 5, 2017 at 1:47 PM, Richard 
wrote:

>
> > Date: Wednesday, April 05, 2017 13:15:19 -0400
> > From: Brian Mathis 
> >
> > On Tue, Apr 4, 2017 at 9:22 PM, Jerry Geis 
> > wrote:
> >
> >> When I do the date +%Z I get the timezone. Which currently is EDT.
> >>
> >> I am sending information to another system, that says EDT is not a
> >> valid timezone. I have no way to modify the other system.
> >>
> >> My question is - is there a way to get the non-day-lite savings
> >> time zone ? For example EST is valid - EDT is not.
> >>
> >> Just curious if there is an easy way already present to get a
> >> standard time zone.
> >>
> >> Thanks, - I know weird situation the other end not supported EDT.
> >>
> >> Jerry
> >
> > Communication of time values should use UTC, not a specific time
> > zone, unless the remote side needs to know the time zone for a
> > specific reason.
> >
> > To get the time in a different zone, use the TZ environment var:
> > TZ=UTC date
> >
> > ~ Brian Mathis
> > @orev
>
> Or, if for some reason you want to pass the timezone, use the GMT
> offset (e.g., -0400) rather than the three-letter abbreviations that,
> as noted earlier, aren't unique.
>
> A better description of the context for this might also result in
> more focused responses.
>


It may not be what you want if you need to know the actual time zone for
some reason.  Different places switch to Daylight Saving or Summer time on
different schedules, and you might also need to know if that location was
actually in DST at the time.  Using just the offset does not convey that
information.

I agree that more context is needed.


~ Brian Mathis
@orev
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] CentOS 7, systemd,, and message floods

2017-04-05 Thread Chris Adams
Once upon a time, Brian Mathis  said:
> if grep -q debug /proc/cmdline; then
> echo "Kernel and systemd debugging was enabled as part of an errant
> script during the yum update"
> echo "See https://bugs.centos.org/view.php?id=12425 and
> https://wiki.centos.org/HowTos/Grub2";
> fi

Assuming your GRUB entries are in the usual order (newest kernel first),
you can do:

grub2-set-default "$(grep '^menuentry' /boot/grub2/grub.cfg | grep -v debug | 
head -n 1 | cut -d\' -f2)"

and then reboot.
-- 
Chris Adams 
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] CentOS 7, systemd,, and message floods

2017-04-05 Thread Brian Mathis
On Wed, Apr 5, 2017 at 3:18 PM,  wrote:

> I've just updated a couple of servers, latest 7.3, and systemd is flooding
> dmesg, journalctl with info level messages... or maybe debug level 1.
>
> Examples:
> [  478.258571] systemd[1]: Sent message type=signal sender=n/a
> destination=n/a object=/org/freedesktop/systemd1/unit/httpd_2eservice
> interface=org.freedesktop.DBus.Properties member=PropertiesChanged
> cookie=436 reply_cookie=0 error=n/a
>
> [  478.258971] systemd[1]: Got notification message for unit
> systemd-logind.service
> [  478.258980] systemd[1]: systemd-logind.service: Got notification
> message from PID 821 (WATCHDOG=1)
> [  478.258985] systemd[1]: systemd-logind.service: got WATCHDOG=1
>
> What *is* all that garbage, and is there some way to turn it down to WARN
> and ERR messages?
>
> mark
>


if grep -q debug /proc/cmdline; then
echo "Kernel and systemd debugging was enabled as part of an errant
script during the yum update"
echo "See https://bugs.centos.org/view.php?id=12425 and
https://wiki.centos.org/HowTos/Grub2";
fi


~ Brian Mathis
@orev
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Timezone and date

2017-04-05 Thread James B. Byrne

On Tue, April 4, 2017 21:22, Jerry Geis wrote:
> When I do the date +%Z I get the timezone. Which currently is EDT.
>
> I am sending information to another system, that says EDT is not a
> valid
> timezone. I have no way to modify the other system.
>
> My question is - is there a way to get the non-day-lite savings time
> zone ?
> For example EST is valid - EDT is not.
>

date -u
Wed Apr  5 20:18:45 UTC 2017

-- 
***  e-Mail is NOT a SECURE channel  ***
Do NOT transmit sensitive data via e-Mail
 Do NOT open attachments nor follow links sent by e-Mail

James B. Byrnemailto:byrn...@harte-lyne.ca
Harte & Lyne Limited  http://www.harte-lyne.ca
9 Brockley Drive  vox: +1 905 561 1241
Hamilton, Ontario fax: +1 905 561 0757
Canada  L8E 3C3

___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] CentOS 7, systemd,, and message floods

2017-04-05 Thread m . roth
I've just updated a couple of servers, latest 7.3, and systemd is flooding
dmesg, journalctl with info level messages... or maybe debug level 1.

Examples:
[  478.258571] systemd[1]: Sent message type=signal sender=n/a
destination=n/a object=/org/freedesktop/systemd1/unit/httpd_2eservice
interface=org.freedesktop.DBus.Properties member=PropertiesChanged
cookie=436 reply_cookie=0 error=n/a

[  478.258971] systemd[1]: Got notification message for unit
systemd-logind.service
[  478.258980] systemd[1]: systemd-logind.service: Got notification
message from PID 821 (WATCHDOG=1)
[  478.258985] systemd[1]: systemd-logind.service: got WATCHDOG=1

What *is* all that garbage, and is there some way to turn it down to WARN
and ERR messages?

mark

___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Xorg problem

2017-04-05 Thread m . roth
Rosenthal, Shoshana wrote:
> I was also successful with 7 computers, however they run version 6.7.
> For some reason this one computer upgraded to 6.8 and Xorg does not work.
> I also changed to 3 different terminals and it did not help.
>
> I am not giving up yet.



I may have missed a response - did you try init 3, then startx, and see
what it tells you?

 mark
> Thanks
> Shoshana
>
>
>
> On Wed, Apr 5, 2017 at 12:48 PM, Styma, Robert (Nokia - US/Phoenix) <
> robert.st...@nokia.com> wrote:
>
>>
>> > Thanks for responding. I really don't know why I have the problem
>> > my computer is a Dell computer with the standard parts.
>> > I am not sure that your fix will work for me.
>> > I am using the computer remotely and am still looking for a
>> > solution.
>>
>> > Thanks
>> > Shoshana
>>
>> I just upgraded to CentOS 6.9 and my problem went away.  Xorg now
>> started
>> on my machine with the MACH64 video chip.  Hooray for our side.
>>
>> Bob
>>
>> ___
>> CentOS mailing list
>> CentOS@centos.org
>> https://lists.centos.org/mailman/listinfo/centos
>>
> ___
> CentOS mailing list
> CentOS@centos.org
> https://lists.centos.org/mailman/listinfo/centos
>


___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Timezone and date

2017-04-05 Thread Richard

> Date: Wednesday, April 05, 2017 13:15:19 -0400
> From: Brian Mathis 
>
> On Tue, Apr 4, 2017 at 9:22 PM, Jerry Geis 
> wrote:
> 
>> When I do the date +%Z I get the timezone. Which currently is EDT.
>> 
>> I am sending information to another system, that says EDT is not a
>> valid timezone. I have no way to modify the other system.
>> 
>> My question is - is there a way to get the non-day-lite savings
>> time zone ? For example EST is valid - EDT is not.
>> 
>> Just curious if there is an easy way already present to get a
>> standard time zone.
>> 
>> Thanks, - I know weird situation the other end not supported EDT.
>> 
>> Jerry
>> 
> 
> 
> Communication of time values should use UTC, not a specific time
> zone, unless the remote side needs to know the time zone for a
> specific reason.
> 
> To get the time in a different zone, use the TZ environment var:
> TZ=UTC date
> 
> 
> ~ Brian Mathis
> @orev

Or, if for some reason you want to pass the timezone, use the GMT
offset (e.g., -0400) rather than the three-letter abbreviations that,
as noted earlier, aren't unique.

A better description of the context for this might also result in
more focused responses.


___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Xorg problem

2017-04-05 Thread Rosenthal, Shoshana
I was also successful with 7 computers, however they run version 6.7.
For some reason this one computer upgraded to 6.8 and Xorg does not work.
I also changed to 3 different terminals and it did not help.

I am not giving up yet.
Thanks
Shoshana



On Wed, Apr 5, 2017 at 12:48 PM, Styma, Robert (Nokia - US/Phoenix) <
robert.st...@nokia.com> wrote:

>
> > Thanks for responding. I really don't know why I have the problem
> > my computer is a Dell computer with the standard parts.
> > I am not sure that your fix will work for me.
> > I am using the computer remotely and am still looking for a
> > solution.
>
> > Thanks
> > Shoshana
>
> I just upgraded to CentOS 6.9 and my problem went away.  Xorg now started
> on my machine with the MACH64 video chip.  Hooray for our side.
>
> Bob
>
> ___
> CentOS mailing list
> CentOS@centos.org
> https://lists.centos.org/mailman/listinfo/centos
>
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Timezone and date

2017-04-05 Thread Brian Mathis
On Tue, Apr 4, 2017 at 9:22 PM, Jerry Geis  wrote:

> When I do the date +%Z I get the timezone. Which currently is EDT.
>
> I am sending information to another system, that says EDT is not a valid
> timezone. I have no way to modify the other system.
>
> My question is - is there a way to get the non-day-lite savings time zone ?
> For example EST is valid - EDT is not.
>
> Just curious if there is an easy way already present to get a standard time
> zone.
>
> Thanks, - I know weird situation the other end not supported EDT.
>
> Jerry
>


Communication of time values should use UTC, not a specific time zone,
unless the remote side needs to know the time zone for a specific reason.

To get the time in a different zone, use the TZ environment var:
TZ=UTC date


~ Brian Mathis
@orev
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] [CentOS-announce] Release for CentOS Linux 6.9 i386 and x86_64

2017-04-05 Thread Johnny Hughes
On 04/05/2017 10:00 AM, Leon Fauster wrote:
> Am 05.04.2017 um 15:02 schrieb Johnny Hughes :
>>
>> We are pleased to announce the immediate availability of CentOS Linux
>> 6.9 and install media for i386 and x86_64 Architectures. Release Notes
>> for 6.9 are available at:
>>
>> http://wiki.centos.org/Manuals/ReleaseNotes/CentOS6.9
>>
>> CentOS Linux 6.9 is derived from source code released by Red Hat, Inc.
>> for Red Hat Enterprise Linux 6.9. All upstream variants have been placed
>> into one combined repository to make it easier for end users.
>> Workstation, server, and minimal installs can all be done from our
>> combined repository. All of our testing is only done against this
>> combined distribution.
> 
> Thank you very much! 
> 
> Just a hint: the new /6/ repo tree misses a signed repomd.xml for the 
> cr/fasttrack subtrees.

Thanks Leon, cr, fasttrack, and even os now have signed metadata on the
master machine .. it will go out to the mirror network.





signature.asc
Description: OpenPGP digital signature
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Xorg problem

2017-04-05 Thread Styma, Robert (Nokia - US/Phoenix)

> Thanks for responding. I really don't know why I have the problem
> my computer is a Dell computer with the standard parts.
> I am not sure that your fix will work for me.
> I am using the computer remotely and am still looking for a
> solution.

> Thanks
> Shoshana

I just upgraded to CentOS 6.9 and my problem went away.  Xorg now started on my 
machine with the MACH64 video chip.  Hooray for our side.

Bob

___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] Roundcubemail 1.1.8 possible bug?

2017-04-05 Thread Robert Moskowitz

I am installing Roundcubemail on Centos7-arm

roundcubemail-1.1.8-1.el7.noarch

The installer web app creates a config.inc.php to save within the 
/etc/roundcubemail/ directory.  It warns that:


"Make sure that there are no characters outside the  brackets 
when saving the file."


Thing is  there is no ?> at the end of this.  It is left out.  So I got 
to add that myself.  I should be able to just copy the content of the 
text box, and paste it into a cat > /etc/roundcubemail/config.inc.php, 
but I am left having to at least having to add the ending ?>



___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] [CentOS-announce] Release for CentOS Linux 6.9 i386 and x86_64

2017-04-05 Thread Leon Fauster
Am 05.04.2017 um 15:02 schrieb Johnny Hughes :
> 
> We are pleased to announce the immediate availability of CentOS Linux
> 6.9 and install media for i386 and x86_64 Architectures. Release Notes
> for 6.9 are available at:
> 
> http://wiki.centos.org/Manuals/ReleaseNotes/CentOS6.9
> 
> CentOS Linux 6.9 is derived from source code released by Red Hat, Inc.
> for Red Hat Enterprise Linux 6.9. All upstream variants have been placed
> into one combined repository to make it easier for end users.
> Workstation, server, and minimal installs can all be done from our
> combined repository. All of our testing is only done against this
> combined distribution.

Thank you very much! 

Just a hint: the new /6/ repo tree misses a signed repomd.xml for the 
cr/fasttrack subtrees.

local config:

# grep -R repo_gpg /etc/yum.repos.d/
/etc/yum.repos.d/CentOS-CR.repo:repo_gpgcheck=1
/etc/yum.repos.d/CentOS-Base.repo:repo_gpgcheck=1
/etc/yum.repos.d/CentOS-Base.repo:repo_gpgcheck=1
/etc/yum.repos.d/CentOS-Base.repo:repo_gpgcheck=1
/etc/yum.repos.d/CentOS-fasttrack.repo:repo_gpgcheck=1


Again, thanks for your great effort! 

--
LF

___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos