Re: [CentOS] for loop example

2016-06-07 Thread Indunil Jayasooriya
On Tue, Jun 7, 2016 at 5:33 PM, Kenneth Porter 
wrote:

> On 6/3/2016 10:41 PM, Indunil Jayasooriya wrote:
>
>> I need a OUTPUT like this
>>
>>
>> *firstname1 lastname1firstname2 lastname2*
>>
>
> An obvious solution is to use Perl. I suggest searching Stackoverflow for
> a solution using that language.
>

  yeah, you are right.


http://stackoverflow.com/questions/18909957/how-to-use-bash-script-to-loop-through-two-files

#!/bin/bash

paste file_in.txt file_out.txt | while read if of; do
  echo "-in $if -out $of"
done


my example.

[root@centos67 loop]# cat file1
firstname1
firstname2

[root@centos67 loop]# cat file2
lastname1
lastname2

[root@centos67 loop]# paste file1 file2 | while read if of; do echo "$
i...@example.com $o...@example.com"; done
firstna...@example.com lastna...@example.com
firstna...@example.com lastna...@example.com


thanks for your mail.
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] HFSPlus Question

2016-06-07 Thread Albert McCann
> -Original Message-
> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
> Behalf Of Chris Murphy
> Sent: Tuesday, June 07, 2016 5:01 PM
> To: CentOS mailing list 
> Subject: Re: [CentOS] HFSPlus Question
> 
> Fedora 24
> [root@f24m mnt]# grep HFSPLUS /boot/config-4.5.6-300.fc24.x86_64
> CONFIG_HFSPLUS_FS=m
> # CONFIG_HFSPLUS_FS_POSIX_ACL is not set
> 
> CentOS 7
> [root@localhost ~]# grep HFSPLUS /boot/config-3.10.0-123.20.1.el7.x86_64
> # CONFIG_HFSPLUS_FS is not set
> 
> [root@localhost ~]# grep HFSPLUS /boot/config-4.6.1-1.el7.elrepo.x86_64
> CONFIG_HFSPLUS_FS=m
> # CONFIG_HFSPLUS_FS_POSIX_ACL is not set
> 
> 
> So it looks like it's not created in the CentOS kernels, but is in the
> elrepo and Fedora kernels.

Thanks for the clues from yourself and other's. I haven't had a chance to
check things out yet, I'm still dealing with food poisoning I came down with
after sending my question. :-( 

Maybe later this week.

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


Re: [CentOS] firewall-config not functional

2016-06-07 Thread Emmett Culley

On 06/07/2016 01:46 PM, Jonathan Billings wrote:
> On Jun 7, 2016, at 13:03, Emmett Culley  wrote:
>>
>> I can see no use case for NetwortManager on our systems.  All network 
>> connections are static.
> 
> There are a couple reasons I still use NetworkManager on servers, but one big 
> one is that the 'network' service runs once, on boot.  If there is no network 
> connection, your server's network connection will never come up until you log 
> in at a console to fix it or reboot. With the speed of computers these days, 
> our servers often boot up faster than the networking equipment after a power 
> cut. 
> 
> --
> Jonathan Billings

As far as I know the network service, in most cases started by systemd, will 
not fail simply because the network an interface is connected to is not up.  
Unless, of course, the interface is set up to use DHCP.


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


Re: [CentOS] Need advice with a "hot running" graphics card

2016-06-07 Thread Kay Schenk
Please ignore this. After further research, it is likely a fan problem 
with my old card. :(

Time for an upgrade!

The proprietary radeon driver is not available for the current version 
of X.org distributed with 6.8.



On 06/06/2016 01:42 PM, Kay Schenk wrote:

Hello all--

I have a old Radeon HD 2400 graphics card in my desktop connected by DVI
to my monitor.

It may be my imagination but it seems that since upgrading to 6.8
recently, after about 4 hours of use, my system seems to run "hot". I
don't think its the man power until but maybe the graphics card? I found
references to odd/high power consumption with radeons an particular
kernel/radeon versions.

And, now I find this old post:
http://crunchbang.org/forums/viewtopic.php?id=17948

So 6.8 is 2.6.32-642.1.1.el6.i686

Has anyone else experienced this? Suggestions?




--

MzK

"Time spent with cats is never wasted."
   -- Sigmund Freud
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] CentOS 6, gdb

2016-06-07 Thread cpolish
On 2016-06-07 17:21, m.r...@5-cent.us wrote:
> Got a user who claims he was running this program, then it broke recently.
> Almost no updates in a while, and none relevant. I'm guessing the
> program's compiled from fortran to c Anyway, the issue's on two
> servers. On one, I installed a couple of compat libs, and it runs. The
> other still fails (but it doesn't have some of the i686 libs. When it
> fails, it's immediate, and reports dying with a SIGKILL. ldd claims it's
> not a dynamic executable, but file tells me it's a 32 bit ELF Running
> it under strace gives me no more. So, as one last resort (Confess! You
> have three last resorts!), I'm trying to run it under gdb. On the system
> it runs on, I can b main, and it gets there when I tell it run. On the
> other... the address appears to be the same, it's in his NFS-mounted home
> directory - it never gets to main, it just reports the sigkill.
> 
> So, what I'd *really* like to do is not tell it run, but next, or step,
> but I can't.
> 
> Anyone heavy enough into gdb to be able to suggest where I can tell it to
> break during the program initialization phase, before it gets to main?

Possibly something still not right in the execution environment.
Try "export LD_DEBUG=all" then run the program. ("unset
LD_DEBUG" to reverse.) Did you edit ld.so.conf and run ldconfig
on the second machine?  Also check "sudo ausearch --success no
--interpret -ts today"

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


Re: [CentOS] firewall-config not functional

2016-06-07 Thread m . roth
Frank Cox wrote:
> On Tue, 7 Jun 2016 17:20:23 -0400
> m.r...@5-cent.us wrote:
>
>> Um, huh? ssh server;service network restart is certainly faster than a
>> reboot.
>
> By what magical incantation will you ssh into a server with no current
> network connection?
>
Plugging in my monitor-on-a-stick. It's still faster than rebooting.

  mark

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


Re: [CentOS] firewall-config not functional

2016-06-07 Thread Frank Cox
On Tue, 7 Jun 2016 17:20:23 -0400
m.r...@5-cent.us wrote:

> Um, huh? ssh server;service network restart is certainly faster than a
> reboot.

By what magical incantation will you ssh into a server with no current network 
connection?

-- 
MELVILLE THEATRE ~ Real D 3D Digital Cinema ~ www.melvilletheatre.com
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] CentOS 6, gdb

2016-06-07 Thread m . roth
Got a user who claims he was running this program, then it broke recently.
Almost no updates in a while, and none relevant. I'm guessing the
program's compiled from fortran to c Anyway, the issue's on two
servers. On one, I installed a couple of compat libs, and it runs. The
other still fails (but it doesn't have some of the i686 libs. When it
fails, it's immediate, and reports dying with a SIGKILL. ldd claims it's
not a dynamic executable, but file tells me it's a 32 bit ELF Running
it under strace gives me no more. So, as one last resort (Confess! You
have three last resorts!), I'm trying to run it under gdb. On the system
it runs on, I can b main, and it gets there when I tell it run. On the
other... the address appears to be the same, it's in his NFS-mounted home
directory - it never gets to main, it just reports the sigkill.

So, what I'd *really* like to do is not tell it run, but next, or step,
but I can't.

Anyone heavy enough into gdb to be able to suggest where I can tell it to
break during the program initialization phase, before it gets to main?

mark



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


Re: [CentOS] firewall-config not functional

2016-06-07 Thread m . roth
Jonathan Billings wrote:
> On Jun 7, 2016, at 13:03, Emmett Culley 
> wrote:
>>
>> I can see no use case for NetwortManager on our systems.  All network
>> connections are static.
>
> There are a couple reasons I still use NetworkManager on servers, but one
> big one is that the 'network' service runs once, on boot.  If there is no
> network connection, your server's network connection will never come up
> until you log in at a console to fix it or reboot. With the speed of
> computers these days, our servers often boot up faster than the networking
> equipment after a power cut.
>
Um, huh? ssh server;service network restart is certainly faster than a
reboot.

 mark

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


Re: [CentOS] HFSPlus Question

2016-06-07 Thread Chris Murphy
On Fri, Jun 3, 2016 at 12:24 AM, Ned Slider  wrote:
>
>
> On 03/06/16 04:45, Chris Murphy wrote:
>>
>> On Tue, May 31, 2016, 7:59 PM Albert McCann 
>> wrote:
>>
>>> In CentOS 7.2.1511 does the 3.10.0-327.18.2.el7.centos.plus.x86_64 (Plus)
>>> kernel read HFSPlus iMac drives? I don't see any hfsplus modules
>>> installed
>>> anywhere, so I suspect not.
>>
>>
>>
>> It's in mainline so I don't know why it would not be built. It certainly
>> exists on Fedora. You could get Fedora live image, dd to a USB stick and
>> it
>> will boot the Mac.
>>
>
> There are a lot of modules in the equivalent mainline kernel that are not
> enabled / built in the RHEL kernel, reason being RH don't want the extra
> workload of maintaining (backporting fixes) those drivers for the 10 year
> lifespan of the product, long after upstream support at kernel.org has
> ended.
>
> In this case they probably determined it unlikely that a user would want to
> hook an HFSPlus volume up to a RHEL server. They also disabled a whole bunch
> of 100Mbit ethernet drivers commonly found on older desktop motherboards in
> RHEL7 for the same reason.

Fedora 24
[root@f24m mnt]# grep HFSPLUS /boot/config-4.5.6-300.fc24.x86_64
CONFIG_HFSPLUS_FS=m
# CONFIG_HFSPLUS_FS_POSIX_ACL is not set

CentOS 7
[root@localhost ~]# grep HFSPLUS /boot/config-3.10.0-123.20.1.el7.x86_64
# CONFIG_HFSPLUS_FS is not set

[root@localhost ~]# grep HFSPLUS /boot/config-4.6.1-1.el7.elrepo.x86_64
CONFIG_HFSPLUS_FS=m
# CONFIG_HFSPLUS_FS_POSIX_ACL is not set


So it looks like it's not created in the CentOS kernels, but is in the
elrepo and Fedora kernels.


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


Re: [CentOS] firewall-config not functional

2016-06-07 Thread Jonathan Billings
On Jun 7, 2016, at 13:03, Emmett Culley  wrote:
> 
> I can see no use case for NetwortManager on our systems.  All network 
> connections are static.

There are a couple reasons I still use NetworkManager on servers, but one big 
one is that the 'network' service runs once, on boot.  If there is no network 
connection, your server's network connection will never come up until you log 
in at a console to fix it or reboot. With the speed of computers these days, 
our servers often boot up faster than the networking equipment after a power 
cut. 

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


Re: [CentOS] for loop example

2016-06-07 Thread Jon LaBadie
On Sat, Jun 04, 2016 at 11:11:21AM +0530, Indunil Jayasooriya wrote:
> Hi list,
> 
> Can you look in to this?
> 
> 
> [root@centos67 loop]# cat file1
> firstname1
> firstname2
> 
> [root@centos67 loop]# cat file2
> lastname1
> lastname2
> 
> I need a OUTPUT like this
> 
> 
> *firstname1 lastname1firstname2 lastname2*
> 
Assuming your files 1&2 will be longer than 2 lines,
consider this:


paste -d' ' file1 file2 |
awk '(NR%2) == 1 {l1 = $0; getline ; print l1 $0}'

-- 
Jon H. LaBadie j...@jgcomp.com
 11226 South Shore Rd.  (703) 787-0688 (H)
 Reston, VA  20190  (703) 935-6720 (C)
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] remote backup

2016-06-07 Thread Keith Keller
On 2016-06-04, Alessandro Baggi  wrote:
> i've need to backup a partition of ~200GB with a local connection of 8/2 
> mbps.
>
> Tool like bacula, amanda can't help me due to low bandwidth in local server.
>
> I'm thinking rsync will be a good choice.

If you want pseudo-snapshots (not real point-in-time snapshots) you can
use rsnapshot or backuppc, both of which use rsync under the hood.  You
get the advantages of rsync along with having an archive of previous
backups.

--keith

-- 
kkel...@wombat.san-francisco.ca.us


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


Re: [CentOS-docs] request for access to https://wiki.centos.org/SpecialInterestGroup/Atomic/Download/

2016-06-07 Thread Alan Bartlett
On 7 June 2016 at 18:00, Colin Walters  wrote:
> Hi,
>
> I'd like to start documenting the "CentOS Atomic Host Continuous" stream 
> (https://ci.centos.org/job/atomic-rdgo-centos7/)
>
> I plan to create a new /SpecialInterestGroup/Atomic/Devel page.
>
> May I please have access to do that?
> My wiki username is ColinWalters.  Thanks!

I have initialised a wiki HomePage for you and you now should have
edit access to pages under /SpecialInterestGroup/Atomic/.

If you have any problems, please let either Akemi or myself know via
this mailing list.

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


Re: [CentOS] firewall-config not functional

2016-06-07 Thread cpolish
On 2016-06-07 10:03, Emmett Culley wrote:
> On 06/07/2016 05:05 AM, James Hogarth wrote:
> > On 7 Jun 2016 12:44, "Emmett Culley"  wrote:
> >>
> >> I have a number of machines (hardware and VMs) running CentOS 7.  I all
> > cases firewall-config is not functional.

Just a thought - CentOS7 _minimal_ install doesn't install 
a firewall. There were attempts to get Red Hat to reconsider
this, but they fixed it with documentation. 

If this is your problem, then "yum install firewall-config firewalld" 
might fix it.

HTH, HAND,
-- 
Charles Polisherr

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


[CentOS-announce] CESA-2016:1205 Important CentOS 7 spice Security Update

2016-06-07 Thread Johnny Hughes

CentOS Errata and Security Advisory 2016:1205 Important

Upstream details at : https://rhn.redhat.com/errata/RHSA-2016-1205.html

The following updated files have been uploaded and are currently 
syncing to the mirrors: ( sha256sum Filename ) 

x86_64:
6373aaf37d9487127df5fb1afed95d2629f63ca38209b0e550758558798ce7c5  
spice-server-0.12.4-15.el7_2.1.x86_64.rpm
5cb372ceb2fdf595c7eba34b8938ad8db7e87a61bfb77c73a5afb57e559e28a4  
spice-server-devel-0.12.4-15.el7_2.1.x86_64.rpm

Source:
98a5551264ccbd5d1e686783186d6d36a63d375ff90f87f2b8d779b9320e9481  
spice-0.12.4-15.el7_2.1.src.rpm



-- 
Johnny Hughes
CentOS Project { http://www.centos.org/ }
irc: hughesjr, #cen...@irc.freenode.net
Twitter: @JohnnyCentOS

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


Re: [CentOS] firewall-config not functional

2016-06-07 Thread Emmett Culley
On 06/07/2016 05:05 AM, James Hogarth wrote:
> On 7 Jun 2016 12:44, "Emmett Culley"  wrote:
>>
>> I have a number of machines (hardware and VMs) running CentOS 7.  I all
> cases firewall-config is not functional.
>>
>> First, the service check boxes are not functional.  When you click on
> one, it  don't change to "checked", and nothing changes on the firewall.
> However you do see a "Changes applied"
>>
>> Sometimes, f you go to permanent mode and attempt to edit a zone, the
> whole desktop locks up as soon as you click on the default target dropdown.
>>
>> When I run firewall-config from the command line I see the following:
>>
>> --
>>
>> org.freedesktop.DBus.Error.ServiceUnknown: The name
> org.freedesktop.NetworkManager was not provided by any .service files
>>
>> (firewall-config:5079): Gtk-CRITICAL **: gtk_tree_view_get_path_at_pos:
> assertion 'tree_view != NULL' failed
>>
>> --
>> with the second line repeating many times and often while attempting to
> interact with the GUI.
>>
>> We don't use NetworkManager except on laptops, and so do not install it.
> Though we do install NetworkManager-glib, if only because some packages
> require it.
>>
>> After seeing a similar bug on the RHEL I also installed
> NetworkManager-libnm, but that did not make a difference.  That RHEL bug
> also mentioned this problem only occurs on KDE, and not Gnome.  And we only
> install KDE when a GUI is required, or desired.
>>
> 
> I'd suggest you install and test with NetworkManager
> 
> Do note that the EL7 NM is a far cry from the one that shipped with EL6 and
> unless you specifically need a facility not exposed by NM it is strongly
> recommended you use it.
> 
> Take a look at my article on nmcli - it's rather lovely to use now:
> 
> https://www.hogarthuk.com/?q=node/8
> 
> As for the firewall tool... don't use it ... it's horrible
> 
> Either use firewall-cmd to configure at the CLI or switch to iptables and
> configure that as you did EL6

I actually like the firewall config tool as it provides easy, out of the box, 
management of servers that don't require complicated iptables rules.  At least 
it was easy when it worked.  For more complicated servers, like gateways, we 
use shorewall.

I can see no use case for NetwortManager on our systems.  All network 
connections are static.

The exception to that is a couple of laptops, and I agree that NetworkManager 
has gotten very handy in that single use case.

Making any application dependent on NetworkManager is just plain silly.  Even 
requiring installation of the NetworkManager libs should not be required.

I suspect that this should probably be brought with the KDE group as it seems 
to be a problem with how some GTK apps are working within the KDE environment.

Emmett


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


[CentOS-docs] request for access to https://wiki.centos.org/SpecialInterestGroup/Atomic/Download/

2016-06-07 Thread Colin Walters
Hi,

I'd like to start documenting the "CentOS Atomic Host Continuous" stream 
(https://ci.centos.org/job/atomic-rdgo-centos7/)

I plan to create a new /SpecialInterestGroup/Atomic/Devel page.

May I please have access to do that?
My wiki username is ColinWalters.  Thanks!
___
CentOS-docs mailing list
CentOS-docs@centos.org
https://lists.centos.org/mailman/listinfo/centos-docs


[CentOS-virt] Xen 4.7rc4 packages available for testing

2016-06-07 Thread George Dunlap
As per our policy, the next officially supported Virt SIG Xen version
will be 4.8.  However, with 4.7 coming soon, I've ported the
patchqueue over to 4.7rc4 and given it a spin.  If you want to help
testing for the upstream 4.7 release, do give it a spin and report any
regressions.

Please note that this version WILL NOT SUPPORTED.  4.6 is still the
officially-supported version until 4.8 comes out (probably in around 6
month's time).

Thanks,
 -George
___
CentOS-virt mailing list
CentOS-virt@centos.org
https://lists.centos.org/mailman/listinfo/centos-virt


[CentOS-docs] Wiki unscheduled outage yesterday

2016-06-07 Thread Fabian Arrotin
Hi,

Some of you probably noticed the fact that we had an issue with the
wiki. Nothing was updated on that node (from a pkg PoV) but we already
had strange issue when a page was edited with some content that would
lead to a traceback.
We so restored the last backup (from June 6th) and it was back to normal.
If you edited one or more pages on the wiki yesterday, you should have a
look and try to edit those again. But verify that wiki is working fine,
as we'd like to know which was the last edit that made moinmoin going
crazy 

If you directly see an issue, contact us (the centos infra team) if possible

-- 
Fabian Arrotin
The CentOS Project | http://www.centos.org
gpg key: 56BEC54E | twitter: @arrfab



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


Re: [CentOS-es] Ayuda Fedora 22 OT

2016-06-07 Thread César Martinez

Gracias no me da error es mas lo tengo corriendo mira

systemctl status smb
● smb.service - Samba SMB Daemon
   Loaded: loaded (/usr/lib/systemd/system/smb.service; enabled; vendor 
preset: disabled)

   Active: active (running) since mar 2016-06-07 07:21:17 ECT; 1h 15min ago
 Main PID: 1281 (smbd)
   Status: "smbd: ready to serve connections..."
   CGroup: /system.slice/smb.service
   ├─1281 /usr/sbin/smbd
   └─1284 /usr/sbin/smbd

jun 07 07:21:15 cesar systemd[1]: Starting Samba SMB Daemon...
jun 07 07:21:16 cesar systemd[1]: smb.service: Supervising process 1281 
which is not our child. We'll most likely ...exits.
jun 07 07:21:17 cesar smbd[1281]: [2016/06/07 07:21:17.382212,  0] 
../lib/util/become_daemon.c:124(daemon_ready)
jun 07 07:21:17 cesar smbd[1281]:   STATUS=daemon 'smbd' finished 
starting up and ready to serve connections

jun 07 07:21:17 cesar systemd[1]: Started Samba SMB Daemon.
Hint: Some lines were ellipsized, use -l to show in full.
[root@cesar ~]# systemctl status nmb
● nmb.service - Samba NMB Daemon
   Loaded: loaded (/usr/lib/systemd/system/nmb.service; enabled; vendor 
preset: disabled)

   Active: active (running) since mar 2016-06-07 07:21:15 ECT; 1h 15min ago
 Main PID: 1030 (nmbd)
   Status: "nmbd: ready to serve connections..."
   CGroup: /system.slice/nmb.service
   └─1030 /usr/sbin/nmbd

jun 07 07:21:38 cesar nmbd[1030]:
jun 07 07:21:38 cesar nmbd[1030]:   Samba name server CESAR is now a 
local master browser for workgroup MYGROUP on122.1

jun 07 07:21:38 cesar nmbd[1030]:
jun 07 07:21:38 cesar nmbd[1030]:   *
jun 07 07:26:52 cesar nmbd[1030]: [2016/06/07 07:26:52.357696,  0] 
../source3/nmbd/nmbd_become_lmb.c:397(become_lo...tage2)

jun 07 07:26:52 cesar nmbd[1030]:   *
jun 07 07:26:52 cesar nmbd[1030]:
jun 07 07:26:52 cesar nmbd[1030]:   Samba name server CESAR is now a 
local master browser for workgroup MYGROUP on1.101

jun 07 07:26:52 cesar nmbd[1030]:
jun 07 07:26:52 cesar nmbd[1030]:   *
Hint: Some lines were ellipsized, use -l to show in full.

--
Saludos Cordiales

|César Martínez M. | Ingeniero de Sistemas | SERVICOM
|Tel: (593-2)554-271 2221-386 | Ext 4501
|Celular: 0999374317 |Skype servicomecuador
|Web www.servicomecuador.com Síguenos en:
|Twitter: @servicomecuador |Facebook: servicomec
|Zona Clientes: www.servicomecuador.com/billing
|Blog: http://servicomecuador.com/blog
|Dir. Av. 10 de Agosto N29-140 Entre
|Acuña y  Cuero y Caicedo
|Quito - Ecuador - Sudamérica

El 07/06/16 a las 07:43, Roberto Bermúdez escribió:

Al iniciar samba no te da algún mensaje de error?
El jun 7, 2016 6:40 AM, "Ricardo"  escribió:


comprueba la versión de windows q estás utilizando.

y googlea para ver si hay problemas conocidos.

comprueba los puertos de tu linux ( nmap etc )

y comprueba tb los puertos de tus servidores.

revisa que todos los servicios necesarios están funcionando en windows y
linux

y comprueba los firewall que puedas tener en medio

saludos!

Enviado desde mi iPhone


El 3 jun 2016, a las 14:38, César Martinez <

cmarti...@servicomecuador.com> escribió:

Gracias, me olvide de comentar que inicialmente estaba funcionando bien,

pero la verdad no recuerdo en que momento dejo de funcionar, debe haber
sido en una actualización pero no se cuál fue.

--
Saludos Cordiales

|César Martínez M. | Ingeniero de Sistemas | SERVICOM
|Tel: (593-2)554-271 2221-386 | Ext 4501
|Celular: 0999374317 |Skype servicomecuador
|Web www.servicomecuador.com Síguenos en:
|Twitter: @servicomecuador |Facebook: servicomec
|Zona Clientes: www.servicomecuador.com/billing
|Blog: http://servicomecuador.com/blog
|Dir. Av. 10 de Agosto N29-140 Entre
|Acuña y  Cuero y Caicedo
|Quito - Ecuador - Sudamérica


El 02/06/16 a las 23:21, Ricardo escribió:
a veces influye la versión de windows y la versión de samba.

Enviado desde mi iPhone


El 2 jun 2016, a las 21:06, César Martinez <

cmarti...@servicomecuador.com> escribió:

Gracias por responder Ricardo la versión que tengo instalada es esta

samba-4.2.12-0.fc22.x86_64

Cuando trato de conectarme a una pc windows de esta forma

smb://192.168.6.4

Me aparece esto

Cabe recalcar que no tengo ningún dominio funcionando de forma local

es una red común y silvestre con grupo de trabajo, para equipos windows

--

Saludos Cordiales

|César Martínez M. | Ingeniero de Sistemas | SERVICOM
|Tel: (593-2)554-271 2221-386 | Ext 4501
|Celular: 0999374317 |Skype servicomecuador
|Web www.servicomecuador.com Síguenos en:
|Twitter: @servicomecuador |Facebook: servicomec
|Zona Clientes: www.servicomecuador.com/billing
|Blog: http://servicomecuador.com/blog
|Dir. Av. 10 de Agosto N29-140 Entre
|Acuña y  Cuero y Caicedo
|Quito - Ecuador - Sudamérica


El 02/06/16 a las 13:56, Ricardo escribió:
buenas!

das pocos datos sobre a que te quieres conectar.

es importante comprobar la versión de smb q tienes instalada como

cliente y las versiones de lo q te quieres conectar.

saludos!




El 2 jun 2016, a las 

Re: [CentOS-es] Ayuda Fedora 22 OT

2016-06-07 Thread Roberto Bermúdez
Al iniciar samba no te da algún mensaje de error?
El jun 7, 2016 6:40 AM, "Ricardo"  escribió:

> comprueba la versión de windows q estás utilizando.
>
> y googlea para ver si hay problemas conocidos.
>
> comprueba los puertos de tu linux ( nmap etc )
>
> y comprueba tb los puertos de tus servidores.
>
> revisa que todos los servicios necesarios están funcionando en windows y
> linux
>
> y comprueba los firewall que puedas tener en medio
>
> saludos!
>
> Enviado desde mi iPhone
>
> > El 3 jun 2016, a las 14:38, César Martinez <
> cmarti...@servicomecuador.com> escribió:
> >
> > Gracias, me olvide de comentar que inicialmente estaba funcionando bien,
> pero la verdad no recuerdo en que momento dejo de funcionar, debe haber
> sido en una actualización pero no se cuál fue.
> >
> > --
> > Saludos Cordiales
> >
> > |César Martínez M. | Ingeniero de Sistemas | SERVICOM
> > |Tel: (593-2)554-271 2221-386 | Ext 4501
> > |Celular: 0999374317 |Skype servicomecuador
> > |Web www.servicomecuador.com Síguenos en:
> > |Twitter: @servicomecuador |Facebook: servicomec
> > |Zona Clientes: www.servicomecuador.com/billing
> > |Blog: http://servicomecuador.com/blog
> > |Dir. Av. 10 de Agosto N29-140 Entre
> > |Acuña y  Cuero y Caicedo
> > |Quito - Ecuador - Sudamérica
> >
> >> El 02/06/16 a las 23:21, Ricardo escribió:
> >> a veces influye la versión de windows y la versión de samba.
> >>
> >> Enviado desde mi iPhone
> >>
> >>> El 2 jun 2016, a las 21:06, César Martinez <
> cmarti...@servicomecuador.com> escribió:
> >>>
> >>> Gracias por responder Ricardo la versión que tengo instalada es esta
> >>>
> >>> samba-4.2.12-0.fc22.x86_64
> >>>
> >>> Cuando trato de conectarme a una pc windows de esta forma
> >>>
> >>> smb://192.168.6.4
> >>>
> >>> Me aparece esto
> >>>
> >>> Cabe recalcar que no tengo ningún dominio funcionando de forma local
> es una red común y silvestre con grupo de trabajo, para equipos windows
> >>>
> >>> --
> >>>
> >>> Saludos Cordiales
> >>>
> >>> |César Martínez M. | Ingeniero de Sistemas | SERVICOM
> >>> |Tel: (593-2)554-271 2221-386 | Ext 4501
> >>> |Celular: 0999374317 |Skype servicomecuador
> >>> |Web www.servicomecuador.com Síguenos en:
> >>> |Twitter: @servicomecuador |Facebook: servicomec
> >>> |Zona Clientes: www.servicomecuador.com/billing
> >>> |Blog: http://servicomecuador.com/blog
> >>> |Dir. Av. 10 de Agosto N29-140 Entre
> >>> |Acuña y  Cuero y Caicedo
> >>> |Quito - Ecuador - Sudamérica
> >>>
>  El 02/06/16 a las 13:56, Ricardo escribió:
>  buenas!
> 
>  das pocos datos sobre a que te quieres conectar.
> 
>  es importante comprobar la versión de smb q tienes instalada como
> cliente y las versiones de lo q te quieres conectar.
> 
>  saludos!
> 
> 
> 
> > El 2 jun 2016, a las 20:31, César Martinez <
> cmarti...@servicomecuador.com> escribió:
> >
> > Saludos amigos aquí con una consulta fuera de centos pero como es un
> clon haber si alguien me puede echar una mano.
> >
> > Para mi uso diario en mi trabajo uso Fedora 22 en mi laptop no tengo
> ni firewall ni tampoco activado selinux, pero por algún motivo que no no
> logró resolver mi equipo no puede conectarse a ningún equipo windows, es
> más no ve a nadie en al red, ni puedo ver las impresoras de red, solo puedo
> conectarme al servidor que es un Linux Centos 6.8, en los equipos con
> windows tengo carpetas compartidas sin clave y accesibles por todos.
> >
> > Podría alguien darme una luz de pronto que pueda estar pasando,
> gracias y saludos a todos
> >
> >
> > --
> > Saludos Cordiales
> >
> > |César Martínez M. | Ingeniero de Sistemas | SERVICOM
> > |Tel: (593-2)554-271 2221-386 | Ext 4501
> > |Celular: 0999374317 |Skype servicomecuador
> > |Web www.servicomecuador.com Síguenos en:
> > |Twitter: @servicomecuador |Facebook: servicomec
> > |Zona Clientes: www.servicomecuador.com/billing
> > |Blog: http://servicomecuador.com/blog
> > |Dir. Av. 10 de Agosto N29-140 Entre
> > |Acuña y  Cuero y Caicedo
> > |Quito - Ecuador - Sudamérica
> >
> > ___
> > CentOS-es mailing list
> > CentOS-es@centos.org
> > https://lists.centos.org/mailman/listinfo/centos-es
>  ___
>  CentOS-es mailing list
>  CentOS-es@centos.org
>  https://lists.centos.org/mailman/listinfo/centos-es
> >>> ___
> >>> CentOS-es mailing list
> >>> CentOS-es@centos.org
> >>> https://lists.centos.org/mailman/listinfo/centos-es
> >> ___
> >> CentOS-es mailing list
> >> CentOS-es@centos.org
> >> https://lists.centos.org/mailman/listinfo/centos-es
> >
> > ___
> > CentOS-es mailing list
> > CentOS-es@centos.org
> > https://lists.centos.org/mailman/listinfo/centos-es
> 

[CentOS] for loop example

2016-06-07 Thread Diego
Maybe this don't to be the best form to solve your problem, but worked,rs.

#!/bin/bash
#power by Diego Rodrigues

totalFileOne=$(wc -l file1 | cut -d" " -f1)
totalFileTwo=$(wc -l file2 | cut -d" " -f1)

count=0

if [ ! "${totalFileOne}" -eq "${totalFileTwo}" ];then
echo "The two files need of same number of lines"
exit 1
fi


for ((i=0;$i<${totalFileOne};i++));
do
#add more one to some
NumberLine=$(( $i+1 ))
echo -en $(sed ${NumberLine}'!d' file1 ;sed ${NumberLine}'!d' file2)"\n"
done


Em ter, 7 de jun de 2016 às 08:42,  escreveu:

> Send CentOS mailing list submissions to
> centos@centos.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://lists.centos.org/mailman/listinfo/centos
> or, via email, send a message with subject or body 'help' to
> centos-requ...@centos.org
>
> You can reach the person managing the list at
> centos-ow...@centos.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of CentOS digest..."
>
>
> Today's Topics:
>
>1. for loop example (Indunil Jayasooriya)
>2. remote backup (Alessandro Baggi)
>
>
> --
>
> Message: 1
> Date: Sat, 4 Jun 2016 11:11:21 +0530
> From: Indunil Jayasooriya 
> To: CentOS mailing list 
> Subject: [CentOS] for loop example
> Message-ID:
>  3...@mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> Hi list,
>
> Can you look in to this?
>
>
> [root@centos67 loop]# cat file1
> firstname1
> firstname2
>
> [root@centos67 loop]# cat file2
> lastname1
> lastname2
>
> I need a OUTPUT like this
>
>
> *firstname1 lastname1firstname2 lastname2*
>
>
> But I try the below command , i get below output.  what is the real command
> to get the above output
>
> [root@centos67 loop]# for line1 in $(cat file1 ); do for line2 in $(cat
> file2 ); do echo "$line1" "$line2";done;done;
> firstname1 lastname1
> firstname1 lastname2
> firstname2 lastname1
> firstname2 lastname2
>
>
> And also, I created a file3 like this
>
> [root@centos67 loop]# cat file3
> firstname1 lastname1
> firstname2 lastname2
>
> How can I get the same OUTPUT ?
>
>
> *firstname1 lastname1firstname2 lastname2*
>
>
> if I try below command, i get the below output.
>
> [root@centos67 loop]# for i in $(cat file3);do echo $i;done;
> firstname1
> lastname1
> firstname2
> lastname2
>
>
> Could you pls help me to solve this ? THIS is very important to me.
>
>
>
>
>
>
>
>
>
> --
> cat /etc/motd
>
> Thank you
> Indunil Jayasooriya
> http://www.theravadanet.net/
> http://www.siyabas.lk/sinhala_how_to_install.html   -  Download Sinhala
> Fonts
>
>
> --
>
> Message: 2
> Date: Sat, 4 Jun 2016 12:34:40 +0200
> From: Alessandro Baggi 
> To: CentOS 
> Subject: [CentOS] remote backup
> Message-ID: <5752aec0.4010...@gmail.com>
> Content-Type: text/plain; charset=iso-8859-15; format=flowed
>
> Hi list,
> i've need to backup a partition of ~200GB with a local connection of 8/2
> mbps.
>
> Tool like bacula, amanda can't help me due to low bandwidth in local
> server.
>
> I'm thinking rsync will be a good choice.
>
> What do you think about?
>
> Thanks in advance.
>
>
> --
>
> ___
> CentOS mailing list
> CentOS@centos.org
> https://lists.centos.org/mailman/listinfo/centos
>
>
> End of CentOS Digest, Vol 137, Issue 5
> **
>
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] firewall-config not functional

2016-06-07 Thread James Hogarth
On 7 Jun 2016 12:44, "Emmett Culley"  wrote:
>
> I have a number of machines (hardware and VMs) running CentOS 7.  I all
cases firewall-config is not functional.
>
> First, the service check boxes are not functional.  When you click on
one, it  don't change to "checked", and nothing changes on the firewall.
However you do see a "Changes applied"
>
> Sometimes, f you go to permanent mode and attempt to edit a zone, the
whole desktop locks up as soon as you click on the default target dropdown.
>
> When I run firewall-config from the command line I see the following:
>
> --
>
> org.freedesktop.DBus.Error.ServiceUnknown: The name
org.freedesktop.NetworkManager was not provided by any .service files
>
> (firewall-config:5079): Gtk-CRITICAL **: gtk_tree_view_get_path_at_pos:
assertion 'tree_view != NULL' failed
>
> --
> with the second line repeating many times and often while attempting to
interact with the GUI.
>
> We don't use NetworkManager except on laptops, and so do not install it.
Though we do install NetworkManager-glib, if only because some packages
require it.
>
> After seeing a similar bug on the RHEL I also installed
NetworkManager-libnm, but that did not make a difference.  That RHEL bug
also mentioned this problem only occurs on KDE, and not Gnome.  And we only
install KDE when a GUI is required, or desired.
>

I'd suggest you install and test with NetworkManager

Do note that the EL7 NM is a far cry from the one that shipped with EL6 and
unless you specifically need a facility not exposed by NM it is strongly
recommended you use it.

Take a look at my article on nmcli - it's rather lovely to use now:

https://www.hogarthuk.com/?q=node/8

As for the firewall tool... don't use it ... it's horrible

Either use firewall-cmd to configure at the CLI or switch to iptables and
configure that as you did EL6
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] for loop example

2016-06-07 Thread Kenneth Porter

On 6/3/2016 10:41 PM, Indunil Jayasooriya wrote:

I need a OUTPUT like this


*firstname1 lastname1firstname2 lastname2*


An obvious solution is to use Perl. I suggest searching Stackoverflow 
for a solution using that language.


While checking, I discovered the paste program does just what you want. 
So try "man paste".


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


Re: [CentOS] Testing - Is the CentOS Mailing list still working?

2016-06-07 Thread William A. Mahaffey III

On 06/05/16 19:46, Anthony K wrote:
I haven't received a single message since 3rd June and was wondering 
whether the mailing list is down.



Cheers,
ak.

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



I have been receiving a dribble of messages dated 6/4/16 this A.M. 

--

William A. Mahaffey III

 --

"The M1 Garand is without doubt the finest implement of war
 ever devised by man."
   -- Gen. George S. Patton Jr.

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


Re: [CentOS] remote backup

2016-06-07 Thread Alexandru Roibu
I have used in the past rsync for periodic backup, either with only cron or in 
scripts (when i had to dump some mysql db's too). it's a good choice I would 
recommend it.

alexandrualexandru.ro...@live.com

> To: centos@centos.org
> From: alessandro.ba...@gmail.com
> Date: Sat, 4 Jun 2016 12:34:40 +0200
> Subject: [CentOS] remote backup
> 
> Hi list,
> i've need to backup a partition of ~200GB with a local connection of 8/2 
> mbps.
> 
> Tool like bacula, amanda can't help me due to low bandwidth in local server.
> 
> I'm thinking rsync will be a good choice.
> 
> What do you think about?
> 
> Thanks in advance.
> ___
> 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-es] Coerreos

2016-06-07 Thread Ing . Ernesto Pérez Estévez , Mg .
On 03/06/16 13:15, VICTOR MANUEL VARGAS GONZALEZ wrote:
> From: Mail Delivery System 
> To: 

el mensaje de error te lo envía kundenserver.de

> Cc: 
> Date: Fri, 3 Jun 2016 08:22:27 -0500
> Subject: Mail delivery failed: returning message to sender
> This message was created automatically by mail delivery software.
> 
> A message that you sent could not be delivered to one or more of
> its recipients. This is a permanent error. The following address(es)
> failed:
> 
> guill...@grecargo.com.mx:
> SMTP error from remote server for MAIL FROM command, host: 
> mail.grecargo.com.mx (189.254.21.3) reason: 550 5.7.1 Access denied

hay una restricción puesta que impide el acceso de estos correos desde
grecargo.com.mx hacia ellos.

Si eres el administrador de kundserver.de como aparentemente indicas
(dices que es algunos correos que les envían) revisa las restricciones o
bloqueos que tienes puesto. Si eres el administrador de grecargo.com.mx
(como me imagino por el idioma que hablas) debes contactar a kundserver
o a tecniflex.biz para que ellos revisen en qué lugar han puesto un bloqueo.

saludos
epe

> 
> 
> lo raro es que es nada mas en algunos correos que nos envian


-- 
CEDIA
La principal herramienta de Investigación en el Ecuador.

Calle La Condamine 12-109 "Casa Rivera".
Cuenca -  Ecuador
Telf: (593) 7405 1000 Ext. 4220/4223
i...@cedia.org.ec
www.cedia.org.ec

Email secured by Check Point
___
CentOS-es mailing list
CentOS-es@centos.org
https://lists.centos.org/mailman/listinfo/centos-es


Re: [CentOS-es] Correos

2016-06-07 Thread Roger Pena Escobio
esta rato esto:1- el error viene de un server en el dominio kundenserver.de2- 
el correo va con destino @tecniflex.biz3- y pasa por @grecargo.com.mx ?
supongo que el Access Denied tenga que ver con algun acceso a Relay . tienes 
algun problema con Alias ? .procmail ?
no hay nada en /var/log/maillog o en messages ?
curoger

 
  From: VICTOR MANUEL VARGAS GONZALEZ 
 To: "centos-es@centos.org"  
 Sent: Friday, June 3, 2016 2:19 PM
 Subject: Re: [CentOS-es] Correos
   

buenas tardes
me pueden apoyar en decirme como soluciono este error que esta marcando cuando 
me envian un correo


From: Mail Delivery System 
To: 
Cc:
Date: Fri, 3 Jun 2016 08:22:27 -0500
Subject: Mail delivery failed: returning message to sender
This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of
its recipients. This is a permanent error. The following address(es)
failed:

guill...@grecargo.com.mx:
SMTP error from remote server for MAIL FROM command, host: mail.grecargo.com.mx 
(189.254.21.3) reason: 550 5.7.1 Access denied


lo raro es que es nada mas en algunos correos que nos envian

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

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


[CentOS] Testing - Is the CentOS Mailing list still working?

2016-06-07 Thread Anthony K
I haven't received a single message since 3rd June and was wondering 
whether the mailing list is down.



Cheers,
ak.

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


[CentOS] Trace back related to nouveau with 6.8

2016-06-07 Thread David G . Miller
Hi All -

Ever since I upgraded to 6.8 I have usually been getting a trace back report
for some bits related to Nouveau whenever the screensaver has been running
and I get back into the system.  Along the lines of:

:Pid: 31, comm: events/4 Tainted: GW  --    
2.6.32-642.el6.x86_64 #1
:Call Trace:
:[] ? warn_slowpath_common+0x91/0xe0
:[] ? warn_slowpath_null+0x1a/0x20
:[] ? drm_helper_choose_crtc_dpms+0xa6/0xb0 [drm_kms_helper]
:[] ? drm_helper_connector_dpms+0xe6/0x1a0 [drm_kms_helper]
:[] ? nv50_crtc_dpms+0x0/0x10 [nouveau]
:[] ? nvif_notify_init+0x121/0x160 [nouveau]
:[] ? nouveau_connector_hotplug+0x92/0xd0 [nouveau]
:[] ? nvif_notify_work+0x0/0xc0 [nouveau]
:[] ? nvif_notify_work+0x2e/0xc0 [nouveau]
:[] ? nouveau_fence_work_handler+0x0/0x30 [nouveau]
:[] ? worker_thread+0x170/0x2a0
:[] ? autoremove_wake_function+0x0/0x40
:[] ? worker_thread+0x0/0x2a0
:[] ? kthread+0x9e/0xc0
:[] ? child_rip+0xa/0x20
:[] ? kthread+0x0/0xc0
:[] ? child_rip+0x0/0x20

PID 31 is:
root31  0.9  0.0  0 0 ?SJun03  12:44 [events/4]

It seems to be innocuous (everything seems to still work) but things that
seem to be innocuous have a habit of coming back and biting me.  Anyone else
experiencing this?  Anyone know how to fix it?  Both kernel and
xorg-x11-drv-nouveau are current as is the rest of the system.  Not finding
anything with Google.

Cheers,
Dave

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


[CentOS] Need advice with a "hot running" graphics card

2016-06-07 Thread Kay Schenk

Hello all--

I have a old Radeon HD 2400 graphics card in my desktop connected by DVI 
to my monitor.


It may be my imagination but it seems that since upgrading to 6.8 
recently, after about 4 hours of use, my system seems to run "hot". I 
don't think its the man power until but maybe the graphics card? I found 
references to odd/high power consumption with radeons an particular 
kernel/radeon versions.


And, now I find this old post:
http://crunchbang.org/forums/viewtopic.php?id=17948

So 6.8 is 2.6.32-642.1.1.el6.i686

Has anyone else experienced this? Suggestions?


--

MzK

"Time spent with cats is never wasted."
   -- Sigmund Freud
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS-virt] [x-post] Upstream possible patches to libvirt to enable building upstream libvirt packages with libxl

2016-06-07 Thread Jean-Marc Liger



Le 19/05/2016 16:51, Jean-Marc Liger a écrit :

Le 18/05/2016 22:11, Le Nucksi a écrit :

Jean-Marc Liger  writes:


Le 15/05/2016 à 20:42, Le Nucksi a écrit :


On 05/14/2016 07:16 AM, Le Nucksi wrote:

Hello list,

is there a way to get more recent libvirt builds for CentOS 7 that 
include

support for the xl (modern Xen) toolstack?

Hy,

I am maintening the firt mentionned repo. I personnaly don't use xen 
but

I planned to include xen support for the next libvirt release and I had
already rebuilt the last xen packages from Virt SIG for this purpose. I
have just rebuilt the current libvirt with xen and libxsl enabled.

Hello Jean-Marc,

good to have found you here and thank you very much for your work!
I've just installed them and up to now they appear to work flawlessly.
I'ld come back to you if I find something unflawless if that is ok 
for you.


Hello Le,

Even if I can't offer full and strong support, I should try to 
investigate if something was going wrong.


Hi Le,

I've just rebuild libvirt 1.3.5.

JML


Best regards,
Jean-Marc Liger

Best regards,
Le
___
CentOS-virt mailing list
CentOS-virt@centos.org
https://lists.centos.org/mailman/listinfo/centos-virt


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


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


[CentOS] test please ignore

2016-06-07 Thread Alexandru Chiscan

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


Re: [CentOS] CenOS 6.8 and libGL failures

2016-06-07 Thread John Hodrien

On Tue, 31 May 2016, Thomas Eriksson wrote:


The solution would be to add +iglx to Xorg command line, but gdm is
hardcoding the Xorg parameters, so if you use gdm/gnome you are out
of luck.

https://elrepo.org/bugs/bug_view_advanced_page.php?bug_id=610
https://bugzilla.redhat.com/show_bug.cgi?id=1336014


Not out of luck, but certainly in a bit of a pickle.  Xorg wrapper script as
suggested in the second link certainly works.

I'm assuming given the tickets lurking that they're planning on reverting the
default behaviour in future versions, which would certainly be welcomed here.

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


[CentOS] firewall-config not functional

2016-06-07 Thread Emmett Culley
I have a number of machines (hardware and VMs) running CentOS 7.  I all cases 
firewall-config is not functional.

First, the service check boxes are not functional.  When you click on one, it  
don't change to "checked", and nothing changes on the firewall.  However you do 
see a "Changes applied"

Sometimes, f you go to permanent mode and attempt to edit a zone, the whole 
desktop locks up as soon as you click on the default target dropdown.

When I run firewall-config from the command line I see the following:

--

org.freedesktop.DBus.Error.ServiceUnknown: The name 
org.freedesktop.NetworkManager was not provided by any .service files

(firewall-config:5079): Gtk-CRITICAL **: gtk_tree_view_get_path_at_pos: 
assertion 'tree_view != NULL' failed

--
with the second line repeating many times and often while attempting to 
interact with the GUI.

We don't use NetworkManager except on laptops, and so do not install it.  
Though we do install NetworkManager-glib, if only because some packages require 
it.

After seeing a similar bug on the RHEL I also installed NetworkManager-libnm, 
but that did not make a difference.  That RHEL bug also mentioned this problem 
only occurs on KDE, and not Gnome.  And we only install KDE when a GUI is 
required, or desired.

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


[CentOS] remote backup

2016-06-07 Thread Alessandro Baggi

Hi list,
i've need to backup a partition of ~200GB with a local connection of 8/2 
mbps.


Tool like bacula, amanda can't help me due to low bandwidth in local server.

I'm thinking rsync will be a good choice.

What do you think about?

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


Re: [CentOS-es] Ayuda Fedora 22 OT

2016-06-07 Thread Ricardo
comprueba la versión de windows q estás utilizando.

y googlea para ver si hay problemas conocidos.

comprueba los puertos de tu linux ( nmap etc ) 

y comprueba tb los puertos de tus servidores.

revisa que todos los servicios necesarios están funcionando en windows y linux

y comprueba los firewall que puedas tener en medio

saludos!

Enviado desde mi iPhone

> El 3 jun 2016, a las 14:38, César Martinez  
> escribió:
> 
> Gracias, me olvide de comentar que inicialmente estaba funcionando bien, pero 
> la verdad no recuerdo en que momento dejo de funcionar, debe haber sido en 
> una actualización pero no se cuál fue.
> 
> -- 
> Saludos Cordiales
> 
> |César Martínez M. | Ingeniero de Sistemas | SERVICOM
> |Tel: (593-2)554-271 2221-386 | Ext 4501
> |Celular: 0999374317 |Skype servicomecuador
> |Web www.servicomecuador.com Síguenos en:
> |Twitter: @servicomecuador |Facebook: servicomec
> |Zona Clientes: www.servicomecuador.com/billing
> |Blog: http://servicomecuador.com/blog
> |Dir. Av. 10 de Agosto N29-140 Entre
> |Acuña y  Cuero y Caicedo
> |Quito - Ecuador - Sudamérica
> 
>> El 02/06/16 a las 23:21, Ricardo escribió:
>> a veces influye la versión de windows y la versión de samba.
>> 
>> Enviado desde mi iPhone
>> 
>>> El 2 jun 2016, a las 21:06, César Martinez  
>>> escribió:
>>> 
>>> Gracias por responder Ricardo la versión que tengo instalada es esta
>>> 
>>> samba-4.2.12-0.fc22.x86_64
>>> 
>>> Cuando trato de conectarme a una pc windows de esta forma
>>> 
>>> smb://192.168.6.4
>>> 
>>> Me aparece esto
>>> 
>>> Cabe recalcar que no tengo ningún dominio funcionando de forma local es una 
>>> red común y silvestre con grupo de trabajo, para equipos windows
>>> 
>>> -- 
>>> 
>>> Saludos Cordiales
>>> 
>>> |César Martínez M. | Ingeniero de Sistemas | SERVICOM
>>> |Tel: (593-2)554-271 2221-386 | Ext 4501
>>> |Celular: 0999374317 |Skype servicomecuador
>>> |Web www.servicomecuador.com Síguenos en:
>>> |Twitter: @servicomecuador |Facebook: servicomec
>>> |Zona Clientes: www.servicomecuador.com/billing
>>> |Blog: http://servicomecuador.com/blog
>>> |Dir. Av. 10 de Agosto N29-140 Entre
>>> |Acuña y  Cuero y Caicedo
>>> |Quito - Ecuador - Sudamérica
>>> 
 El 02/06/16 a las 13:56, Ricardo escribió:
 buenas!
 
 das pocos datos sobre a que te quieres conectar.
 
 es importante comprobar la versión de smb q tienes instalada como cliente 
 y las versiones de lo q te quieres conectar.
 
 saludos!
 
 
 
> El 2 jun 2016, a las 20:31, César Martinez 
>  escribió:
> 
> Saludos amigos aquí con una consulta fuera de centos pero como es un clon 
> haber si alguien me puede echar una mano.
> 
> Para mi uso diario en mi trabajo uso Fedora 22 en mi laptop no tengo ni 
> firewall ni tampoco activado selinux, pero por algún motivo que no no 
> logró resolver mi equipo no puede conectarse a ningún equipo windows, es 
> más no ve a nadie en al red, ni puedo ver las impresoras de red, solo 
> puedo conectarme al servidor que es un Linux Centos 6.8, en los equipos 
> con windows tengo carpetas compartidas sin clave y accesibles por todos.
> 
> Podría alguien darme una luz de pronto que pueda estar pasando, gracias y 
> saludos a todos
> 
> 
> -- 
> Saludos Cordiales
> 
> |César Martínez M. | Ingeniero de Sistemas | SERVICOM
> |Tel: (593-2)554-271 2221-386 | Ext 4501
> |Celular: 0999374317 |Skype servicomecuador
> |Web www.servicomecuador.com Síguenos en:
> |Twitter: @servicomecuador |Facebook: servicomec
> |Zona Clientes: www.servicomecuador.com/billing
> |Blog: http://servicomecuador.com/blog
> |Dir. Av. 10 de Agosto N29-140 Entre
> |Acuña y  Cuero y Caicedo
> |Quito - Ecuador - Sudamérica
> 
> ___
> CentOS-es mailing list
> CentOS-es@centos.org
> https://lists.centos.org/mailman/listinfo/centos-es
 ___
 CentOS-es mailing list
 CentOS-es@centos.org
 https://lists.centos.org/mailman/listinfo/centos-es
>>> ___
>>> CentOS-es mailing list
>>> CentOS-es@centos.org
>>> https://lists.centos.org/mailman/listinfo/centos-es
>> ___
>> CentOS-es mailing list
>> CentOS-es@centos.org
>> https://lists.centos.org/mailman/listinfo/centos-es
> 
> ___
> CentOS-es mailing list
> CentOS-es@centos.org
> https://lists.centos.org/mailman/listinfo/centos-es
___
CentOS-es mailing list
CentOS-es@centos.org
https://lists.centos.org/mailman/listinfo/centos-es


[CentOS] for loop example

2016-06-07 Thread Indunil Jayasooriya
Hi list,

Can you look in to this?


[root@centos67 loop]# cat file1
firstname1
firstname2

[root@centos67 loop]# cat file2
lastname1
lastname2

I need a OUTPUT like this


*firstname1 lastname1firstname2 lastname2*


But I try the below command , i get below output.  what is the real command
to get the above output

[root@centos67 loop]# for line1 in $(cat file1 ); do for line2 in $(cat
file2 ); do echo "$line1" "$line2";done;done;
firstname1 lastname1
firstname1 lastname2
firstname2 lastname1
firstname2 lastname2


And also, I created a file3 like this

[root@centos67 loop]# cat file3
firstname1 lastname1
firstname2 lastname2

How can I get the same OUTPUT ?


*firstname1 lastname1firstname2 lastname2*


if I try below command, i get the below output.

[root@centos67 loop]# for i in $(cat file3);do echo $i;done;
firstname1
lastname1
firstname2
lastname2


Could you pls help me to solve this ? THIS is very important to me.









-- 
cat /etc/motd

Thank you
Indunil Jayasooriya
http://www.theravadanet.net/
http://www.siyabas.lk/sinhala_how_to_install.html   -  Download Sinhala
Fonts
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS-es] Centos6 Samba3 No Acepta Usuarios con Letra Mayuscula en los compartidos.

2016-06-07 Thread Periko Support
Hola.

Tengo un problema con un centos 6 x64 que acabo de meter a mi red bajo
Dominio con Centos 5.x + LDAP el cual tiene 145 usuarios en su mayoria
equipos bajo windows, xp, 7, 8, 2008, 2012 y unos servidores Centos
tambien.

El problema se presenta con esta version de samba 3.6.23-35.el6_8.

Un caso rapido es que puedo agarra cualquier de mis otros 2 servidores
centos que estan registrados en el dominio para compartir recursos y
hacer pruebas en la consola, aqui va uno.

Servidor Bueno:

[root@mbx-vdba ~]# id test
uid=1062(test) gid=513(Domain Users) groups=513(Domain Users),10001(pvsw)
[root@mbx-vdba ~]# id Test
uid=1062(test) gid=513(Domain Users) groups=513(Domain Users)
[root@mbx-vdba ~]#

Comp podran observar, test oTest responde.

Que pasa en el servidor con el samba mas reciente(Por eso no he actualizado)

[root@mbx-server2 ~]# id test
uid=1062(test) gid=513(Domain Users) groups=513(Domain Users),10001(pvsw)
[root@mbx-server2 ~]# id Test
id: Test: No such user
[root@mbx-server2 ~]#

Ya no respondio igual.

Ahora vamos a un caso donde me afecta mas, tenemos usuarios que por
alguna razon misteriosa tiene una letra mayuscula al inicio, este
Centos les niega el acceso.

Got user=[Notadmin] domain=[MYDOMAIN] workstation=[MBX-WIN8R1PM]
len1=24 len2=288
[2016/05/31 09:24:48.856641,  3] auth/auth.c:219(check_ntlm_password)
  check_ntlm_password:  Checking password for unmapped user
[MYDOMAIN]\[Notadmin]@[MBX-WIN8R1PM] with the new password interface
[2016/05/31 09:24:48.856751,  3] auth/auth.c:222(check_ntlm_password)
  check_ntlm_password:  mapped user is: [MYDOMAIN]\[Notadmin]@[MBX-WIN8R1PM]
[2016/05/31 09:24:48.864733,  3] auth/auth_util.c:1087(check_account)
  Failed to find authenticated user MYDOMAIN\Notadmin via getpwnam(),
denying access.
[2016/05/31 09:24:48.864888,  2] auth/auth.c:330(check_ntlm_password)
  check_ntlm_password:  Authentication for user [Notadmin] ->
[Notadmin] FAILED with error NT_STATUS_NO_SUCH_USER

Cuales son mis parametros para este compartido el cual es similar a el
resto de los servidores pero en este no funciona.

[nasa]
path = /opt/it
writeable = Yes
public = No
guest ok = No
valid users = test, Notadmin
create mode = 0770
directory mode = 0770
force group = itmbx
force create mode = 0770
force directory mode = 0770
admin users = root Notadmin

Usuario Notadmin no puede accesar el compartido.

Mis pametros en samba son:

[global]
workgroup = MYDOMAIN
server string = File Server
netbios name = mbx-server2
hosts allow = 192.168.
hosts deny = 0.0.0.0
smb ports = 139 445
lanman auth = Yes
client lanman auth = Yes
security = DOMAIN
encrypt passwords = yes
syslog = 1
log level = 1
log file = /var/log/samba/%m.%U.log
max log size = 2048
socket options = TCP_NODELAY SO_SNDBUF=16384 SO_RCVBUF=16384
name resolve order = wins bcast hosts lmhost
username map = /etc/samba/usermap
domain logons = No
domain master = No
local master = No
preferred master = No
wins server = 192.168.2.24
idmap config * : backend = ldap
idmap config * : range = 1-2
logon path =
logon home =
display charset = LOCALE
unix charset = UTF-8
dos charset = CP850
client ipc signing = auto
map to guest = Bad User
load printers = No
show add printer wizard = No
use sendfile = Yes
map readonly = no
case sensitive = No
dns proxy = No
winbind separator = +

Cualquier consejo bienvenido, saludos.
___
CentOS-es mailing list
CentOS-es@centos.org
https://lists.centos.org/mailman/listinfo/centos-es


[CentOS] Fwd: Re: EPEL-ANNOUNCE Re: Upcoming OwnCloud changes in EPEL

2016-06-07 Thread James Hogarth
Please see the below if you are a CentOS user of the EPEL OwnCloud packages.

-- Forwarded message --
From: "James Hogarth" 
Date: 3 Jun 2016 23:43
Subject: Re: EPEL-ANNOUNCE Re: Upcoming OwnCloud changes in EPEL
To: "EPEL Development List" 
Cc: 

>
> On 22 Apr 2016 16:21, "James Hogarth"  wrote:
> >
> >
> >
> > On 5 April 2016 at 09:22, James Hogarth  wrote:
> >>
> >> Hi all,
> >>
> >> Following on the process of bringing OwnCloud up to date in Fedora
we're turning our attention to the EPEL users.
> >>
> >> Unfortunately EL6's use of php53 means we cannot update any further
there given the minimum requirement of php54.
> >>
> >> As such the maintenance update of 7.0.13 that is in epel-testing now
for EPEL6 will be the final one there to be followed by the retiring of the
package.
> >>
> >> If you wish to update from that please either migrate to an EL7 base
system or switch to the OwnCloud upstream packages which make use of SCL to
satisfy the php54+ requirement.
> >>
> >> On the EPEL7 side of things 8.1.6 is due to hit testing very shortly.
This is a mandatory update as a precursor to the 8.2.3 update in due
course. Once this reaches live please ensure that updates are carried out
and your OwnCloud installation is fully tested prior to the 8.2.3 update.
> >>
> >> This is due to a requirement from upstream that updates follow the
path 8.0 -> 8.1 -> 8.2 -> 9.0.
> >>
> >> Related to this when updating the EL6 install from the 7.0 version to
an EL7 or upstream SCL version please do make sure you follow the upgrade
chain correctly - it is not possible to skip a step.
> >>
> >> Once the 8.2 goal is reached a discussion will be had then for EPEL as
to whether to provide owncloud82 and owncloud90 packages or to just stay on
the current major update - but that discussion is some time away as of yet.
> >>
> >> The reason for picking owncloud82 as the possible base for this is
that this is the first version that has no php libraries bundled so will be
the easiest to provide the long term maintained base from in a clean
fashion complying to guidelines as closely as possible.
> >>
> >> Kind regards,
> >>
> >> James
> >>
> >>
> >
> > Following on from the previous message EPEL6 has it's final update with
the EOL message. Please arrange to move to the upstream SCL packages or to
migrate to EL7 if you are using owncloud on EPEL6 - be aware when you do
migrate off of this that it is important to follow the chain through
8.0->8.1->8.2 checking your installation at each step.
> >
> > EPEL7 has had some time in testing and received a positive test so the
8.1.6 update there is being pushed today.
> >
> > When that has gone stable an 8.2.3 update will be pushed to
epel-testing. Please ensure that your installation is updated to 8.1.6 and
fully tested before applying the 8.2.3 update.
> >
>
> OwnCloud 9.0.2 had been submitted to EPEL7 testing.
>
> Beyond the usual warning of ensuring your system is updated to 8.2 and
fully tested before applying the 9.0 update there is an additional caveat
for nginx users of OwnCloud.
>
> It became quickly apparent in testing recently that the nginx config
snippet shipped was broken out the box and couldn't possibly work.
>
> There is a new nginx snippet configuration being shipped as part of this
update so that nginx behaves like httpd for the path (ie it's under the
/owncloud namespace and not root) and so that an install of owncloud-nginx
will have working configuration without the need to craft an additional
custom config, removing the shipped one in the process.
>
> We have also moved the php-fpm configuration to its own pool to avoid any
conflicts of options.
>
> If using nginx for OwnCloud please carefully validate your config when
updating.
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Fwd: EPEL-ANNOUNCE Re: Upcoming OwnCloud changes in EPEL

2016-06-07 Thread James Hogarth
On 22 May 2016 07:01, "John R Pierce"  wrote:
>
> On 5/21/2016 6:03 PM, John R Pierce wrote:
>>
>> i started to look at SCL and got lost pretty quickly.   I'm not running
OwnCloud but I've got some other php stuff thats getting increasingly
unhappy about the stock c6 php...
>
>
> ok, I've installed php54-1.1-5.el6.centos.alt.x86_64 ...if I run
`scl enable php54`, will that connect it up to my existing apache, so it
just works, or will that blow the heck out of everything on my host, or
something else?  I'm currently using php-5.3.3-46.el6_7.1.x86_64
>
>
>

Since this is becoming a recurring topic as EL6, and now EL7, begin to show
their age I did a write up on the options and how to use them today:

https://www.hogarthuk.com/?q=node/15
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Realtek 8111GR on C7

2016-06-07 Thread Ned Slider
It should be supported by the unified R8169 kernel driver, but the only 
way to know for sure is to check the Device ID against the C7 kernel.



On 03/06/16 11:11, Alessandro Baggi wrote:

Hi list,
I'm planning to buy a mobo (z170-K) that has Realtek 8111GR (nic).

I've tried to search on google about support on C7 but can't fine anything.

There is a way to check if supported?
Is the Realtek 8111GR supported or I must change mobo?

Thanks in advance.

___
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] Realtek 8111GR on C7

2016-06-07 Thread Johnny Hughes
On 06/03/2016 07:28 AM, Mike McCarthy, W1NR wrote:
> Realtek is "real" good about getting drivers for their chips into the
> kernels as soon as possible. They are one of the few vendors that I have
> never had a problem with built in support...
> 

That has to be backported and rolled into the Red Hat kernels for EL
however, which can take longer.

We do have an experimental kernel that currently may require manual
intervention to install here:

http://mirror.centos.org/altarch/7/experimental/x86_64/

We are using that for some IoT images on x86_64 and there is also one
for i686 in that tree.

http://mirror.centos.org/altarch/7/experimental/i386/

Like I said, you may have to manually remove some conflicts with
ivtv-firmware and some iwl*-firmware drivers .. it requires a new
xfsprogs and you might have to manually remove xorg-x11-drv-vmmouse (it
is now in the kernel as a module and no longer part of xorg-x11-drivers)

Anyway, I have installed that kernel on several machines and it seems to
work well.  It is based on the latest 4.4.12 LTS kernel and we will be
maintaining it work IoT things.

There is also kernel-ml and kerel-lt from elrepo that may get updated at
some point.  You will likely still ne xfsprogs with kernels newer than
4.4.x though, regardless if they come from our experimental repo or elrepo.

Here are the links to the elrepo kernels:
http://elrepo.org/linux/kernel/el7/

xfsprogs issues:
https://bugzilla.redhat.com/show_bug.cgi?id=1314605

https://bugzilla.redhat.com/show_bug.cgi?id=1314795

Thanks,
Johnny Hughes



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


Re: [CentOS] CentOS 7, nfsdcltrack

2016-06-07 Thread cpolish
On 2016-06-02 16:40, m.r...@5-cent.us wrote:
> Frank Cox wrote:
> > On Thu, 2 Jun 2016 16:17:28 -0400
> > m.r...@5-cent.us wrote:
> >
> >>   nfsdcltrack[39406]: sqlite_insert_client: insert
> >> statement prepare failed: table clients has 2 columns but 3 values were
> >> supplied
> >>
> >> Anyone got any ideas as to a) why this is happening, and b) what I can
> >> do about it?
> >
> > https://www.svennd.be/nfsdcltrack-sqlite_insert_client-insert-statement-prepare-failed-table-clients-has-2-columns-but-3-values-were-supplied/
> >
> Yeah, after I posted, I went googling, and found the same post. Thanks
> muchly, though.
> 
> Did they fire the regression testing dept?


Workaround:
https://www.svennd.be/nfsdcltrack-sqlite_insert_client-insert-statement-prepare-failed-table-clients-has-2-columns-but-3-values-were-supplied/
 

# sqlite3 /var/lib/nfs/nfsdcltrack/main.sqlite
clients parameters
sqlite> alter table clients add column has_session TINYINT;
sqlite> .exit


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


Re: [CentOS] Realtek 8111GR on C7

2016-06-07 Thread Alessandro Baggi

Thank you for you reply.


Il 03/06/2016 14:28, Mike McCarthy, W1NR ha scritto:

Realtek is "real" good about getting drivers for their chips into the
kernels as soon as possible. They are one of the few vendors that I have
never had a problem with built in support...

Mike McCarthy

On 06/03/2016 08:03 AM, Phil Manuel wrote:

You can get the Linux driver from
http://www.realtek.com/downloads/downloadsView.aspx?Langid=1=5=5=5=4=3=false#RTL8111B/RTL8168B/RTL8111/RTL8168%3Cbr%3ERTL8111C/RTL8111CP/RTL8111D%28L%29%3Cbr%3ERTL8168C/RTL8111DP

if you can't find it under C7

Regards


On Fri, Jun 3, 2016 at 8:11 PM, Alessandro Baggi


Re: [CentOS] FYI: http

2016-06-07 Thread cpolish
On 2016-06-02 15:44, David Nelson wrote:
> On Jun 2, 2016, at 3:39 PM, Always Learning  wrote:
> > 
> > When the Internet is working, I never had a problem. So perhaps you are
> > correct, Firefox is sending local domain names and everything typed into
> > Firefox's URL slot to Google for people monitoring purposes ;-)
> > 
> > How can one disable this latest privacy abusing tactic ?
> 
> 
> Go to Settings > Search and uncheck “Provide search suggestions”.
> 
> Or alternately just make sure that “Show search suggestions in location bar 
> results” is turned off. (Not sure whether it is on by default...) 

Browse to about:config, filter on "http", see the long list of
sites Firefox needs to contact in order to better serve you. In
some cases I serve the sites locally, for others I replaced the
protocol string with hxxp. Don't need all the excess traffic and
extra eyes on my browsing habits, boring as they may be.

The greatest pain with Firefox came from trying to build from
source. They've got very strange ideas of how complex and
customized a build system needs to be. Apparently they couldn't
figure out autotools and make.

-- 
Charles

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


Re: [CentOS] Realtek 8111GR on C7

2016-06-07 Thread Miguel Medalha



I'm planning to buy a mobo (z170-K) that has Realtek 8111GR (nic).

Is the Realtek 8111GR supported or I must change mobo?


I have been using a small server with a Realtek 8111E under CentOS 7 
without any problem.


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


[CentOS-es] Coerreos

2016-06-07 Thread VICTOR MANUEL VARGAS GONZALEZ

buenas tardes
me pueden apoyar en decirme como soluciono este error que esta marcando cuando 
me envian un correo 


From: Mail Delivery System 
To: 
Cc: 
Date: Fri, 3 Jun 2016 08:22:27 -0500
Subject: Mail delivery failed: returning message to sender
This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of
its recipients. This is a permanent error. The following address(es)
failed:

guill...@grecargo.com.mx:
SMTP error from remote server for MAIL FROM command, host: mail.grecargo.com.mx 
(189.254.21.3) reason: 550 5.7.1 Access denied


lo raro es que es nada mas en algunos correos que nos envian

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