Re: [CentOS] Virtualization Networking

2016-10-03 Thread Richard


> Date: Monday, October 03, 2016 22:00:07 -0400
> From: TE Dukes 
>
>> From: Gordon Messmer
>> Sent: Monday, October 3, 2016 4:25 PM
>> 
>> On 10/03/2016 04:54 AM, TE Dukes wrote:
>> > I can get the guest to access the internet but have tried every
>> > was possible to be able to access the guest from the LAN or even
>> > the host. Nothing I have tried works.
>> > 
>> > The only thing all documentation leaves out is how to set up the
>> > guest networking during the install.
>> 
>> 
>> "All documentation" doesn't leave out this information.  The links
>> I sent earlier clearly and specifically document the process for
>> setting up a network bridge, which you need to do if you want
>> to access your VM from the LAN.
>> 
>> If you need help, you need to provide more information than "I
>> can't get this to work" and "I've tried everything."  Those
>> don't tell us anything about the state of your system. 
>> Useful information would include: your configuration
>> files (/etc/sysconfig/network-scripts/ifcfg-*), the output
>> of "ip link show" and "ip addr show", the output of "brctl 
>> show", and maybe the output of "virsh iface-list".
>> 
> 
> I posted some files previously but that was like 20 or so installs
> ago. I don't know the files you need.
> 
> For this installation:
> 
> /etc/sysconfig/ifcfg-eth0
> 
> NAME="eth0"
> BOOTPROTO=none
> GATEWAY=192.168.1.1
> NM_CONTROLLED=no
> HWADDR=44:37:E6:53:1E:E2
> MACADDR=""
> IPV6INIT=no
> DEVICE=eth0
> NETMASK=255.255.255.0
> MTU=""
> BROADCAST=192.168.1.255
> IPADDR=192.168.1.110
> NETWORK=192.168.1.0
> ONBOOT=yes
> TYPE=Ethernet
> 
> /etc/sysconfig/ifcfg-eth1
> 
> GATEWAY=192.168.1.1
> NAME=""
> BOOTPROTO=none
> NM_CONTROLLED=no
> MACADDR=""
> IPV6INIT=no
> DEVICE=eth1
> NETMASK=255.255.255.0
> MTU=""
> BROADCAST=255.255.255.255
> IPADDR=192.168.0.111
> NETWORK=192.168.0.0
> ONBOOT=yes
> 
> /etc/sysconfig/ifcfg-lo
> 
> GATEWAY=192.168.1.1
> NAME=loopback
> BOOTPROTO=none
> MACADDR=""
> IPV6INIT=no
> DEVICE=lo
> NETMASK=255.0.0.0
> MTU=""
> BROADCAST=127.255.255.255
> IPADDR=127.0.0.1
> NETWORK=127.0.0.0
> ONBOOT=yes
> 

Some of the things in your ifcfg files look odd to me. Rather than
enumerating them, here are my files from a centos-6 host system.

This is a 2-NIC machine where the "host" uses eth1 and the guest(s)
use eth0.

One specific point -- lo is the localhost, so I don't think it should
have a gateway entry, as you are showing.

ifcfg-br0
::
DEVICE="br0"
BOOTPROTO="static"
BROADCAST="192.168.1.255"
DNS1="192.168.1.36"
GATEWAY="192.168.1.1"
NETMASK="255.255.255.0"
IPV6INIT="no"
IPV6_AUTOCONF="no"
NM_CONTROLLED="no"
ONBOOT="yes"
TYPE="Bridge"
DELAY="0"
::
ifcfg-eth0
::
DEVICE="eth0"
BOOTPROTO="static"
BROADCAST="192.168.1.255"
DNS1="192.168.1.36"
GATEWAY="192.168.1.1"
HWADDR="78:2B:CB:38:73:BD"
NETMASK="255.255.255.0"
NM_CONTROLLED="no"
BRIDGE="br0"
ONBOOT="yes"
::
ifcfg-eth1
::
DEVICE="eth1"
BOOTPROTO="static"
BROADCAST="192.168.1.255"
DNS1="192.168.1.36"
GATEWAY="192.168.1.1"
HWADDR="78:2B:CB:38:73:BE"
IPADDR="192.168.1.52"
NETMASK="255.255.255.0"
NM_CONTROLLED="yes"
ONBOOT="yes"
::
ifcfg-lo
::
DEVICE=lo
IPADDR=127.0.0.1
NETMASK=255.0.0.0
NETWORK=127.0.0.0
ONBOOT=yes
NAME=loopback

  


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


Re: [CentOS] Virtualization Networking

2016-10-03 Thread John R Pierce

On 10/3/2016 7:00 PM, TE Dukes wrote:

4: vboxnet0:  mtu 1500 qdisc pfifo_fast state
UNKNOWN qlen 1000
 link/ether 0a:00:27:00:00:00 brd ff:ff:ff:ff:ff:ff


are there any other /etc/sysconfig/network-scripts/ifcfg- files 
beyond the ones you listed?




--
john r pierce, recycling bits in santa cruz

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


Re: [CentOS] Virtualization Networking

2016-10-03 Thread TE Dukes


> -Original Message-
> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
> Behalf Of Gordon Messmer
> Sent: Monday, October 3, 2016 4:25 PM
> To: CentOS mailing list
> Subject: Re: [CentOS] Virtualization Networking
> 
> On 10/03/2016 04:54 AM, TE Dukes wrote:
> > I can get the guest to access the internet but have tried every was
> > possible to be able to access the guest from the LAN or even the host.
> > Nothing I have tried works.
> >
> > The only thing all documentation leaves out is how to set up the guest
> > networking during the install.
> 
> 
> "All documentation" doesn't leave out this information.  The links I sent
> earlier clearly and specifically document the process for setting up a
network
> bridge, which you need to do if you want to access your VM from the LAN.
> 
> If you need help, you need to provide more information than "I can't get
this
> to work" and "I've tried everything."  Those don't tell us anything about
the
> state of your system.  Useful information would include: your
configuration
> files (/etc/sysconfig/network-scripts/ifcfg-*), the output of "ip link
show"
> and "ip addr show", the output of "brctl show", and maybe the output of
> "virsh iface-list".
> 

I posted some files previously but that was like 20 or so installs ago. I
don't know the files you need.

For this installation:

/etc/sysconfig/ifcfg-eth0

NAME="eth0"
BOOTPROTO=none
GATEWAY=192.168.1.1
NM_CONTROLLED=no
HWADDR=44:37:E6:53:1E:E2
MACADDR=""
IPV6INIT=no
DEVICE=eth0
NETMASK=255.255.255.0
MTU=""
BROADCAST=192.168.1.255
IPADDR=192.168.1.110
NETWORK=192.168.1.0
ONBOOT=yes
TYPE=Ethernet

/etc/sysconfig/ifcfg-eth1

GATEWAY=192.168.1.1
NAME=""
BOOTPROTO=none
NM_CONTROLLED=no
MACADDR=""
IPV6INIT=no
DEVICE=eth1
NETMASK=255.255.255.0
MTU=""
BROADCAST=255.255.255.255
IPADDR=192.168.0.111
NETWORK=192.168.0.0
ONBOOT=yes

/etc/sysconfig/ifcfg-lo

GATEWAY=192.168.1.1
NAME=loopback
BOOTPROTO=none
MACADDR=""
IPV6INIT=no
DEVICE=lo
NETMASK=255.0.0.0
MTU=""
BROADCAST=127.255.255.255
IPADDR=127.0.0.1
NETWORK=127.0.0.0
ONBOOT=yes

# ip link show

1: lo:  mtu 65536 qdisc noqueue state UNKNOWN 
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0:  mtu 1500 qdisc pfifo_fast state
UP qlen 1000
link/ether 44:37:e6:53:1e:e2 brd ff:ff:ff:ff:ff:ff
3: eth1:  mtu 1500 qdisc pfifo_fast state
UP qlen 1000
link/ether 00:1b:21:af:6d:22 brd ff:ff:ff:ff:ff:ff
4: vboxnet0:  mtu 1500 qdisc pfifo_fast state
UNKNOWN qlen 1000
link/ether 0a:00:27:00:00:00 brd ff:ff:ff:ff:ff:ff

Absolutely no clue on that!!

# ip addr show

1: lo:  mtu 65536 qdisc noqueue state UNKNOWN 
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host 
   valid_lft forever preferred_lft forever
2: eth0:  mtu 1500 qdisc pfifo_fast state
UP qlen 1000
link/ether 44:37:e6:53:1e:e2 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.110/24 brd 192.168.1.255 scope global eth0
inet6 fe80::4637:e6ff:fe53:1ee2/64 scope link 
   valid_lft forever preferred_lft forever
3: eth1:  mtu 1500 qdisc pfifo_fast state
UP qlen 1000
link/ether 00:1b:21:af:6d:22 brd ff:ff:ff:ff:ff:ff
inet 192.168.0.111/24 brd 255.255.255.255 scope global eth1
inet6 fe80::21b:21ff:feaf:6d22/64 scope link 
   valid_lft forever preferred_lft forever
4: vboxnet0:  mtu 1500 qdisc pfifo_fast state
UNKNOWN qlen 1000
link/ether 0a:00:27:00:00:00 brd ff:ff:ff:ff:ff:ff
inet 192.168.56.1/24 brd 192.168.56.255 scope global vboxnet0

No clue on that one either

# brctl show

bridge name bridge id   STP enabled interfaces

# virsh iface-list

I have uninstalled all Centos kvm/virtualization packages and trying
Vitualbox.

Got home late this evening. I can un-install VB and re-install Centos
virtualization

TIA





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


Re: [CentOS] Alternative GUI

2016-10-03 Thread Mark LaPierre
On 09/28/16 19:25, Mark LaPierre wrote:
> Hey All,
> 
> I'm considering moving from CentOS 6 to CentOS 7.  I'm not interested in
> dealing with Gnome 3.  I've heard good things about Mate, a fork of
> Gnome 2.  it appears that Mate is available in the EPEL repository
> associated with CentOS 7.
> 
> Have any of you tried Mate on CentOS 7?  In your experienced opinion
> what would I be giving up by abandoning Gnome 3 and installing Mate instead?
> 

You know, after I posted the original question I thought, Oh No! I've
just started a flame war, but I'm glad to see that was not the case.  It
appears that everyone who responded is in general agreement on the
subject.  Greg Bailey even came up with a helpful hint on improving the
font rendering on the desktop.

Thank you all for your input.

-- 
_
   °v°
  /(_)\
   ^ ^  Mark LaPierre
Registered Linux user No #267004
https://linuxcounter.net/

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


[CentOS-announce] CESA-2016:1985 Important CentOS 7 thunderbird Security Update

2016-10-03 Thread Johnny Hughes

CentOS Errata and Security Advisory 2016:1985 Important

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

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

x86_64:
41b3e1b5237659bf4393463855d949ef6616a007bb2a2d93c4bd880aa2c05a1d  
thunderbird-45.4.0-1.el7.centos.x86_64.rpm

Source:
da01e24e9c16a1bd2b94117f84b66cf158c9b9b0e2802fc3d3f27c7e1c6f8325  
thunderbird-45.4.0-1.el7.centos.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


[CentOS-announce] CESA-2016:1985 Important CentOS 5 thunderbird Security Update

2016-10-03 Thread Johnny Hughes

CentOS Errata and Security Advisory 2016:1985 Important

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

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

i386:
ca033ccd5ee9481912176ed85e89550e6eb8dd1a69d7114d4551d693bf712c64  
thunderbird-45.4.0-1.el5.centos.i386.rpm

x86_64:
fa88d0b434c19b32328932486956885d9c3e9a33887d920b72766aa2f13d2eb4  
thunderbird-45.4.0-1.el5.centos.x86_64.rpm

Source:
828a8cf2f6237a9069002e51d55639df5adb7d1a2483decea83d02b9bc4a16e2  
thunderbird-45.4.0-1.el5.centos.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


[CentOS-announce] CESA-2016:1985 Important CentOS 6 thunderbird Security Update

2016-10-03 Thread Johnny Hughes

CentOS Errata and Security Advisory 2016:1985 Important

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

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

i386:
ccc6667913354f615a25b8d6054f25a0812768610144ae83427bb05c8c5865bd  
thunderbird-45.4.0-1.el6.centos.i686.rpm

x86_64:
ca8edbed30392c408ea585f72829f07d0158efe79a08cbe83afd917f6fe2340a  
thunderbird-45.4.0-1.el6.centos.x86_64.rpm

Source:
549ab1e597ef65e586984fe20636ab34034fff220d29030b798cabe66dc238e4  
thunderbird-45.4.0-1.el6.centos.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] mount.nfs: an incorrect mount option was specified

2016-10-03 Thread Jon LaBadie
On Mon, Oct 03, 2016 at 12:27:10PM -0700, Keith Keller wrote:
> On 2016-10-03, Jon LaBadie  wrote:
> > IIRC, for mount.nfs, the "r" option is read only while the "w"
> > option is read+write.  They may be mutually exclusive.
> 
> I don't believe this is accurate.  ro and rw are mutually exclusive, but
> there is no "w" option.  (Which doesn't help the OP, unfortunately, but
> at least he knows.)

Ahh, just checked.  I was remembering the mount.nfs options, not fstab.
Thanks for the correction.

-- 
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] Virtualization Networking

2016-10-03 Thread Gordon Messmer

On 10/03/2016 04:54 AM, TE Dukes wrote:

I can get the guest to access the internet but have tried every was possible
to be able to access the guest from the LAN or even the host. Nothing I have
tried works.

The only thing all documentation leaves out is how to set up the guest
networking during the install.



"All documentation" doesn't leave out this information.  The links I 
sent earlier clearly and specifically document the process for setting 
up a network bridge, which you need to do if you want to access your VM 
from the LAN.


If you need help, you need to provide more information than "I can't get 
this to work" and "I've tried everything."  Those don't tell us anything 
about the state of your system.  Useful information would include: your 
configuration files (/etc/sysconfig/network-scripts/ifcfg-*), the output 
of "ip link show" and "ip addr show", the output of "brctl show", and 
maybe the output of "virsh iface-list".


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


Re: [CentOS] mount.nfs: an incorrect mount option was specified

2016-10-03 Thread Keith Keller
On 2016-10-03, Jon LaBadie  wrote:
> IIRC, for mount.nfs, the "r" option is read only while the "w"
> option is read+write.  They may be mutually exclusive.

I don't believe this is accurate.  ro and rw are mutually exclusive, but
there is no "w" option.  (Which doesn't help the OP, unfortunately, but
at least he knows.)

For the OP, you should check the system logs on both the client and the
server.  There may be clues as to what the real error is; sometimes
mount.nfs reports a misleading error when the actual problem is
somewhere else.

--keith

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


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


[CentOS-build-reports] Build Done: thunderbird 45.4.0-1.el7.centos.x86_64 on c7.1511.u

2016-10-03 Thread buildsys
logs/c7.1511.u/thunderbird/20161003172932/45.4.0-1.el7.centos.x86_64
logs/c7.1511.u/thunderbird/20161003172932/45.4.0-1.el7.centos.x86_64/build.log
logs/c7.1511.u/thunderbird/20161003172932/45.4.0-1.el7.centos.x86_64/mock.cfg
logs/c7.1511.u/thunderbird/20161003172932/45.4.0-1.el7.centos.x86_64/mock.exitcode
logs/c7.1511.u/thunderbird/20161003172932/45.4.0-1.el7.centos.x86_64/root.log
logs/c7.1511.u/thunderbird/20161003172932/45.4.0-1.el7.centos.x86_64/state.log
logs/c7.1511.u/thunderbird/20161003172932/45.4.0-1.el7.centos.x86_64/stderr
logs/c7.1511.u/thunderbird/20161003172932/45.4.0-1.el7.centos.x86_64/stdout
logs/c7.1511.u/thunderbird/20161003172932/45.4.0-1.el7.centos.x86_64/thunderbird-45.4.0-1.el7.centos.src.rpm
logs/c7.1511.u/thunderbird/20161003172932/45.4.0-1.el7.centos.x86_64/thunderbird-45.4.0-1.el7.centos.x86_64.rpm
logs/c7.1511.u/thunderbird/20161003172932/45.4.0-1.el7.centos.x86_64/thunderbird-debuginfo-45.4.0-1.el7.centos.x86_64.rpm
___
CentOS-build-reports mailing list
CentOS-build-reports@centos.org
https://lists.centos.org/mailman/listinfo/centos-build-reports


Re: [CentOS] Virtualization Networking

2016-10-03 Thread Jon LaBadie
On Mon, Oct 03, 2016 at 07:54:36AM -0400, TE Dukes wrote:
> 
> OK, I'm about done trying to get this to work. I have spent HOURS reading,
> installing, re-installing, etc.
> 
> I can get the guest to access the internet but have tried every was possible
> to be able to access the guest from the LAN or even the host. Nothing I have
> tried works.
> 
> The only thing all documentation leaves out is how to set up the guest
> networking during the install. Seems if I don't set anything up or just set
> it to DHCP it has internet connectivity, but that is all.
> 
> I have gone back in after the guest has been installed and changed the
> networking configuration to match my LAN, that doesn't work either. I lose
> internet accessibility when I do that.
> 
> I have tried to install CentOS 7 and Debian 8, the same problems with each.
> I have tried CentOS the built in Virt-Manager and VirtualBox. with same
> results.  Can't seem to find the free version of VMware but I suspect I
> would have the same results as well.
> 
> Again, any help would be greatly appreciated.

Don't know about the other VM software, but I have several VM guests
under VirtualBox.  Each of them has their networking set up as "bridged
adapter".  Although they could use DHCP then, I've used each virtual
guest's network software to set them up with static address configs.

No problems reaching other lan hosts in either direction nor in
reaching the internet.

Jon
-- 
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] mount.nfs: an incorrect mount option was specified

2016-10-03 Thread Jon LaBadie
On Sun, Oct 02, 2016 at 11:42:41PM -0400, Tim Dunphy wrote:
> Hey guys,
> 
>  My NFS server has been working really well for a long time now. Both
> client and server run CentOS 7.2.
> 
>  However when I just had to remount one of my home directories on an NFS
> client, I'm now getting the error when I run mount -a
> 
> mount.nfs: an incorrect mount option was specified
> 
> 
> This is the corresponding line I have in my fstab file on the client:
> 
> nfs1.example.com:/var/nfs/home/home  nfs
>  rw   0 0
> 
> 
> I get the same error if I try to run the mount command explicitly:

IIRC, for mount.nfs, the "r" option is read only while the "w"
option is read+write.  They may be mutually exclusive.

jl
> 
> mount -t nfs nfs1.example.com:/var/nfs/home /home
> mount.nfs: an incorrect mount option was specified
> 
> This is the verbose output of that same command:
> 
> mount -vvv -t nfs nfs1.example.com:/var/nfs/home /home
> mount.nfs: timeout set for Sun Oct  2 23:17:03 2016
> mount.nfs: trying text-based options
> 'vers=4,addr=162.xx.xx.xx.xx,clientaddr=107.xxx.xx.xx'
> mount.nfs: mount(2): Invalid argument
> mount.nfs: an incorrect mount option was specified
> 
> This is the entry I have in my /etc/exports file on the nfs server
> 
> /var/nfs/home web2.jokefire.com(rw,sync,no_root_squash,no_all_squash)
> 
> I get this same result if the firewall is up or down (for very microscopic
> slivers of time for testing purposes).
> 
> With the firewall down (for testing again very quickly) I get this result
> from the showmount -e command:
> 
> [root@web2:~] #showmount -e nfs1.example.com
> 
> Export list for nfs1.example.com:
> 
> /var/nfs/varnish varnish1.example.com
> 
> /var/nfs/es  es3.example.com,es2.example.com,logs.example.com
> 
> /var/nfs/www web2.example.com,puppet.example.com,ops3.example.com,
> ops2.example.com,web1.example.com
> 
> /var/nfs/homeansible.example.com,chef.example.com,logs3.example.com,
> logs2.example.com,logs1.example.com,ops.example.com,lb1.example.com,
> ldap1.example.com,web2.example.com,web1.lyricgem.com,nginx1.example.com,
> salt.example.com,puppet.example.com,nfs1.example.com,db4.example.com,
> db3.example.com,db2.example.com,db1.example.com,varnish2.example.com,
> varnish1.example.com,es3.example.com,es2.example.com,es1.example.com,
> repo.example.com,ops3.example.com,ops2.example.com,solr1.example.com,
> time1.example.com,mcollective.example.com,logs.example.com,
> hadoop04.example.com,hadoop03.example.com,hadoop02.example.com,
> hadoop01.example.com,monitor3.example.com,monitor2.example.com,
> monitor1.example.com,web1.example.com,activemq1.example.com
> 
> With the firewall on the nfs server up (as it is all the time other than
> this short test), I get back this result:
> 
> showmount -e nfs1.example.com
> 
> clnt_create: RPC: Port mapper failure - Unable to receive: errno 113 (No
> route to host)
> 
> This is a list of ports I have open on the NFS server:
> 
> [root@nfs1:~] #firewall-cmd --list-all
> 
> public (default, active)
> 
>   interfaces: eth0
> 
>   sources:
> 
>   services: dhcpv6-client ssh
> 
>   ports: 2719/tcp 9102/tcp 52926/tcp 111/tcp 25/tcp 875/tcp 54302/tcp
> 4/tcp 20048/tcp 2692/tcp 55982/tcp 2049/tcp 17123/tcp 42955/tcp
> 
>   masquerade: no
> 
>   forward-ports:
> 
>   icmp-blocks:
> 
>   rich rules:
> 
> rule family="ipv4" source address="xx.xx.xx.x/32" port port="5666"
> protocol="tcp" accept
> 
> So I have two problems I need to solve. 1) How do I open the firewall ports
> on the nfs server so that clients can contact it? I'm using firewalld on
> the nfs server. And 2) why am I getting an error saying that "an incorrect
> mount option was specified"?
> 
> Thanks,
> 
> Tim
> 
> 
> 
> 
> 
> -- 
> GPG me!!
> 
> gpg --keyserver pool.sks-keyservers.net --recv-keys F186197B
> ___
> CentOS mailing list
> CentOS@centos.org
> https://lists.centos.org/mailman/listinfo/centos
>>> End of included message <<<

-- 
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


[CentOS] mount.nfs: an incorrect mount option was specified

2016-10-03 Thread Tim Dunphy
Hey guys,

 My NFS server has been working really well for a long time now. Both
client and server run CentOS 7.2.

 However when I just had to remount one of my home directories on an NFS
client, I'm now getting the error when I run mount -a

mount.nfs: an incorrect mount option was specified


This is the corresponding line I have in my fstab file on the client:

nfs1.example.com:/var/nfs/home/home  nfs
 rw   0 0


I get the same error if I try to run the mount command explicitly:

mount -t nfs nfs1.example.com:/var/nfs/home /home
mount.nfs: an incorrect mount option was specified

This is the verbose output of that same command:

mount -vvv -t nfs nfs1.example.com:/var/nfs/home /home
mount.nfs: timeout set for Sun Oct  2 23:17:03 2016
mount.nfs: trying text-based options
'vers=4,addr=162.xx.xx.xx.xx,clientaddr=107.xxx.xx.xx'
mount.nfs: mount(2): Invalid argument
mount.nfs: an incorrect mount option was specified

This is the entry I have in my /etc/exports file on the nfs server

/var/nfs/home web2.jokefire.com(rw,sync,no_root_squash,no_all_squash)

I get this same result if the firewall is up or down (for very microscopic
slivers of time for testing purposes).

With the firewall down (for testing again very quickly) I get this result
from the showmount -e command:

[root@web2:~] #showmount -e nfs1.example.com

Export list for nfs1.example.com:

/var/nfs/varnish varnish1.example.com

/var/nfs/es  es3.example.com,es2.example.com,logs.example.com

/var/nfs/www web2.example.com,puppet.example.com,ops3.example.com,
ops2.example.com,web1.example.com

/var/nfs/homeansible.example.com,chef.example.com,logs3.example.com,
logs2.example.com,logs1.example.com,ops.example.com,lb1.example.com,
ldap1.example.com,web2.example.com,web1.lyricgem.com,nginx1.example.com,
salt.example.com,puppet.example.com,nfs1.example.com,db4.example.com,
db3.example.com,db2.example.com,db1.example.com,varnish2.example.com,
varnish1.example.com,es3.example.com,es2.example.com,es1.example.com,
repo.example.com,ops3.example.com,ops2.example.com,solr1.example.com,
time1.example.com,mcollective.example.com,logs.example.com,
hadoop04.example.com,hadoop03.example.com,hadoop02.example.com,
hadoop01.example.com,monitor3.example.com,monitor2.example.com,
monitor1.example.com,web1.example.com,activemq1.example.com

With the firewall on the nfs server up (as it is all the time other than
this short test), I get back this result:

showmount -e nfs1.example.com

clnt_create: RPC: Port mapper failure - Unable to receive: errno 113 (No
route to host)

This is a list of ports I have open on the NFS server:

[root@nfs1:~] #firewall-cmd --list-all

public (default, active)

  interfaces: eth0

  sources:

  services: dhcpv6-client ssh

  ports: 2719/tcp 9102/tcp 52926/tcp 111/tcp 25/tcp 875/tcp 54302/tcp
4/tcp 20048/tcp 2692/tcp 55982/tcp 2049/tcp 17123/tcp 42955/tcp

  masquerade: no

  forward-ports:

  icmp-blocks:

  rich rules:

rule family="ipv4" source address="xx.xx.xx.x/32" port port="5666"
protocol="tcp" accept

So I have two problems I need to solve. 1) How do I open the firewall ports
on the nfs server so that clients can contact it? I'm using firewalld on
the nfs server. And 2) why am I getting an error saying that "an incorrect
mount option was specified"?

Thanks,

Tim





-- 
GPG me!!

gpg --keyserver pool.sks-keyservers.net --recv-keys F186197B
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] Unbound, dns64 and CentOS 7

2016-10-03 Thread Jason Bailey

Hi all,

Is anyone using unbound to do dns64 on CentOS 7? A quick 'unbound -h' 
shows both 'validator' and 'iterator' modules, but no dns64. Was it just 
not included or is there a supplementary or alternative package I need 
to install?


I had it working on CentOS 6 and don't recall any special setup, so when 
I realized the dns64 module was missing from unbound in CentOS 7, it 
kinda caught me off guard.


jb

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


[CentOS-announce] CEEA-2016:1982 CentOS 7 tzdata Enhancement Update

2016-10-03 Thread Johnny Hughes

CentOS Errata and Enhancement Advisory 2016:1982 

Upstream details at : https://rhn.redhat.com/errata/RHEA-2016-1982.html

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

x86_64:
7762ff6147da85f50d4b1cd9f55bab53c3ec2d2c8b05dba4d4a10803d7b36af4  
tzdata-2016g-2.el7.noarch.rpm
6ed58cf899ff8f57c619e9361edaf1878413e95561d4b163f82505b6349ebb1e  
tzdata-java-2016g-2.el7.noarch.rpm

Source:
4536dcd6b004ea9d6d64b68106489cb70f80b6eda8dffc1cd1db8c3323f9e960  
tzdata-2016g-2.el7.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


[CentOS-announce] CEEA-2016:1982 CentOS 6 tzdata Enhancement Update

2016-10-03 Thread Johnny Hughes

CentOS Errata and Enhancement Advisory 2016:1982 

Upstream details at : https://rhn.redhat.com/errata/RHEA-2016-1982.html

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

i386:
2379e728e087b59dbccce433fbf98f7ba0e77ce4b8bcae5f31d18983567436f4  
tzdata-2016g-2.el6.noarch.rpm
48ea1f5e84415c8d28f72b48f609f6ad52f4c959737776172acb3a6c7a2a  
tzdata-java-2016g-2.el6.noarch.rpm

x86_64:
2379e728e087b59dbccce433fbf98f7ba0e77ce4b8bcae5f31d18983567436f4  
tzdata-2016g-2.el6.noarch.rpm
48ea1f5e84415c8d28f72b48f609f6ad52f4c959737776172acb3a6c7a2a  
tzdata-java-2016g-2.el6.noarch.rpm

Source:
50bf16e3c0fcf85b3ca029ef052ddc202a5a39ea4e559e30c51506e75cc374e2  
tzdata-2016g-2.el6.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


[CentOS-announce] CEEA-2016:1982 CentOS 5 tzdata Enhancement Update

2016-10-03 Thread Johnny Hughes

CentOS Errata and Enhancement Advisory 2016:1982 

Upstream details at : https://rhn.redhat.com/errata/RHEA-2016-1982.html

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

i386:
7d0644c0162a3df1948f40927882f0fad8d52ed5f5453e51cde12cf2c125a486  
tzdata-2016g-2.el5.i386.rpm
0d42fd29b2c0928150d2c93df6cc77d9702d3c60328fe3ed377b8c82dab769cb  
tzdata-java-2016g-2.el5.i386.rpm

x86_64:
70aa83a0651d72a3a27d71a38b0373a6669d5e7530649415caba3dee9ad168ea  
tzdata-2016g-2.el5.x86_64.rpm
2305fcca0a4b75d26a78b8cade0f72181cbd47ada43ff1bda537eb765174d45e  
tzdata-java-2016g-2.el5.x86_64.rpm

Source:
35b6a553ba1b9e07da088716f236a61f518c425eaa539a83f1e990775289e326  
tzdata-2016g-2.el5.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] Virtualization Networking

2016-10-03 Thread TE Dukes


-Original Message-
From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf
Of Liam O'Toole
Sent: Monday, October 3, 2016 10:28 AM
To: centos@centos.org
Subject: Re: [CentOS] Virtualization Networking

On 2016-10-03, TE Dukes
 wrote:
>
>
>> -Original Message- From:
>> centos-boun...@centos.org
>> [mailto:centos-boun...@centos.org] On Behalf Of Liam O'Toole Sent: 
>> Monday, October 3, 2016 9:19 AM To:
>> centos@centos.org Subject: Re: [CentOS] Virtualization Networking
>> 
>> On 2016-10-03, TE Dukes
>>  wrote:
>> >
>> >
>> >> -Original Message- From:
>> >> centos-boun...@centos.org
>> >> [mailto:centos-boun...@centos.org] On Behalf Of Michael Cole Sent: 
>> >> Friday, September 30, 2016 9:41 PM
>> >> To: centos@centos.org Subject: Re:
>> >> [CentOS] Virtualization Networking
>> >>
>> >> Deletion does not remove all, Try a erase if that did not work.
>> >>
>> >> Configuration files are not always where you expect then to be.
>> >>
>> >> Regards Michael Cole
>> >>
>> >> On Friday, September 30, 2016 9:16:44 PM TE Dukes wrote:
>> >> > I deleted all virtualization packages and re-installed.
>> >> >
>> >> > Something must have been hosed up.
>> >> >
>> >> > Installing a VM and it didn't even ask to setup the network.
>> >> > Hopefully that's a good sign.
>> >> >
>> >> > Will know shortly
>> >> >
>> >> > TIA
>> >
>> >
>> > OK, I'm about done trying to get this to work. I have spent HOURS 
>> > reading, installing, re-installing, etc.
>> >
>> > I can get the guest to access the internet but have tried every was 
>> > possible to be able to access the guest from the LAN or even the 
>> > host.  Nothing I have tried works.
>> >
>> > The only thing all documentation leaves out is how to set up the 
>> > guest networking during the install. Seems if I don't set anything 
>> > up or just set it to DHCP it has internet connectivity, but that is 
>> > all.
>> >
>> > I have gone back in after the guest has been installed and changed 
>> > the networking configuration to match my LAN, that doesn't work 
>> > either. I lose internet accessibility when I do that.
>> >
>> > I have tried to install CentOS 7 and Debian 8, the same problems 
>> > with each.  I have tried CentOS the built in Virt-Manager and 
>> > VirtualBox.  with same results.  Can't seem to find the free 
>> > version of VMware but I suspect I would have the same results as 
>> > well.
>> >
>> > Again, any help would be greatly appreciated.
>> >
>> > TI!
>> 
>> VirtualBox gives you a GUI for setting up port forwarding from the 
>> host to the guest. It's under Machine -> Settings -> Network -> 
>> Advanced. Did you try it?
>> 
>> --
>> 
>> Liam
> [Thomas E Dukes] Hi!
>
> Thanks, I did
>
> I portwared 80 to 8080 and 22 to .

What happens when you issue the command 'ssh -p  localhost' on the host?
I'm assuming that an ssh server is running on the guest and that there are
no firewalls getting in the way.


I haven't tried that on the latest install. I tried on a previous install
and it failed, maybe because I was logging as root. 

I 've thinking it maybe be a firewall issue as well. Don't think it DNS as I
set the guest hostname and IP address PTR in my local zone file on the host.
>
> I also tried the NAT networking, changing the default 10.0.5.0/24 to
> 192.168.1.0/24

Never tried that.

-- 

Liam

___
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] Virtualization Networking

2016-10-03 Thread Liam O'Toole
On 2016-10-03, TE Dukes
 wrote:
>
>
>> -Original Message- From:
>> centos-boun...@centos.org
>> [mailto:centos-boun...@centos.org] On
>> Behalf Of Liam O'Toole Sent: Monday, October 3, 2016 9:19 AM To:
>> centos@centos.org Subject: Re: [CentOS]
>> Virtualization Networking
>> 
>> On 2016-10-03, TE Dukes
>>  wrote:
>> >
>> >
>> >> -Original Message- From:
>> >> centos-boun...@centos.org
>> >> [mailto:centos-boun...@centos.org] On
>> >> Behalf Of Michael Cole Sent: Friday, September 30, 2016 9:41 PM
>> >> To: centos@centos.org Subject: Re:
>> >> [CentOS] Virtualization Networking
>> >>
>> >> Deletion does not remove all, Try a erase if that did not work.
>> >>
>> >> Configuration files are not always where you expect then to be.
>> >>
>> >> Regards Michael Cole
>> >>
>> >> On Friday, September 30, 2016 9:16:44 PM TE Dukes wrote:
>> >> > I deleted all virtualization packages and re-installed.
>> >> >
>> >> > Something must have been hosed up.
>> >> >
>> >> > Installing a VM and it didn't even ask to setup the network.
>> >> > Hopefully that's a good sign.
>> >> >
>> >> > Will know shortly
>> >> >
>> >> > TIA
>> >
>> >
>> > OK, I'm about done trying to get this to work. I have spent HOURS
>> > reading, installing, re-installing, etc.
>> >
>> > I can get the guest to access the internet but have tried every was
>> > possible to be able to access the guest from the LAN or even the
>> > host.  Nothing I have tried works.
>> >
>> > The only thing all documentation leaves out is how to set up the
>> > guest networking during the install. Seems if I don't set anything
>> > up or just set it to DHCP it has internet connectivity, but that is
>> > all.
>> >
>> > I have gone back in after the guest has been installed and changed
>> > the networking configuration to match my LAN, that doesn't work
>> > either. I lose internet accessibility when I do that.
>> >
>> > I have tried to install CentOS 7 and Debian 8, the same problems
>> > with each.  I have tried CentOS the built in Virt-Manager and
>> > VirtualBox.  with same results.  Can't seem to find the free
>> > version of VMware but I suspect I would have the same results as
>> > well.
>> >
>> > Again, any help would be greatly appreciated.
>> >
>> > TI!
>> 
>> VirtualBox gives you a GUI for setting up port forwarding from the
>> host to the guest. It's under Machine -> Settings -> Network ->
>> Advanced. Did you try it?
>> 
>> --
>> 
>> Liam
> [Thomas E Dukes] Hi!
>
> Thanks, I did
>
> I portwared 80 to 8080 and 22 to .

What happens when you issue the command 'ssh -p  localhost' on the
host? I'm assuming that an ssh server is running on the guest and that
there are no firewalls getting in the way.

>
> I also tried the NAT networking, changing the default 10.0.5.0/24 to
> 192.168.1.0/24

Never tried that.

-- 

Liam

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


Re: [CentOS] Virtualization Networking

2016-10-03 Thread TE Dukes


> -Original Message-
> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
> Behalf Of Liam O'Toole
> Sent: Monday, October 3, 2016 9:19 AM
> To: centos@centos.org
> Subject: Re: [CentOS] Virtualization Networking
> 
> On 2016-10-03, TE Dukes
>  wrote:
> >
> >
> >> -Original Message- From:
> >> centos-boun...@centos.org
> >> [mailto:centos-boun...@centos.org] On Behalf Of Michael Cole Sent:
> >> Friday, September 30, 2016 9:41 PM To:
> >> centos@centos.org Subject: Re: [CentOS] Virtualization Networking
> >>
> >> Deletion does not remove all, Try a erase if that did not work.
> >>
> >> Configuration files are not always where you expect then to be.
> >>
> >> Regards Michael Cole
> >>
> >> On Friday, September 30, 2016 9:16:44 PM TE Dukes wrote:
> >> > I deleted all virtualization packages and re-installed.
> >> >
> >> > Something must have been hosed up.
> >> >
> >> > Installing a VM and it didn't even ask to setup the network.
> >> > Hopefully that's a good sign.
> >> >
> >> > Will know shortly
> >> >
> >> > TIA
> >
> >
> > OK, I'm about done trying to get this to work. I have spent HOURS
> > reading, installing, re-installing, etc.
> >
> > I can get the guest to access the internet but have tried every was
> > possible to be able to access the guest from the LAN or even the host.
> > Nothing I have tried works.
> >
> > The only thing all documentation leaves out is how to set up the guest
> > networking during the install. Seems if I don't set anything up or
> > just set it to DHCP it has internet connectivity, but that is all.
> >
> > I have gone back in after the guest has been installed and changed the
> > networking configuration to match my LAN, that doesn't work either. I
> > lose internet accessibility when I do that.
> >
> > I have tried to install CentOS 7 and Debian 8, the same problems with
> > each.  I have tried CentOS the built in Virt-Manager and VirtualBox.
> > with same results.  Can't seem to find the free version of VMware but
> > I suspect I would have the same results as well.
> >
> > Again, any help would be greatly appreciated.
> >
> > TI!
> 
> VirtualBox gives you a GUI for setting up port forwarding from the host to
> the guest. It's under Machine -> Settings -> Network -> Advanced. Did you
> try it?
> 
> --
> 
> Liam
[Thomas E Dukes] 
Hi!

Thanks, I did

I portwared 80 to 8080 and 22 to .

I also tried the NAT networking, changing the default 10.0.5.0/24 to
192.168.1.0/24

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


[CentOS-build-reports] Build Fail: tzdata 2016g-2.el7.i386 on c7.1511.u

2016-10-03 Thread buildsys
ROOT log: -( last 500 lines )-\n\n
INFO buildroot.py:307:  Mock Version: 1.2.14
DEBUG util.py:96:  ensuring that dir exists: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/dev/pts
DEBUG util.py:99:  creating dir: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/dev/pts
DEBUG util.py:96:  ensuring that dir exists: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/dev/shm
DEBUG util.py:99:  creating dir: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/dev/shm
DEBUG buildroot.py:445:  kernel version == 2.6.32-573.18.1.el6.x86_64
DEBUG util.py:108:  touching file: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/etc/fstab
DEBUG util.py:108:  touching file: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/etc/yum.conf
DEBUG util.py:108:  touching file: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/etc/dnf.conf
DEBUG util.py:108:  touching file: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/var/log/yum.log
DEBUG util.py:541:  child environment: None
DEBUG util.py:474:  Executing command: ['/bin/mount', '-n', '-t', 'proc', 
'proc', '/srv/build/7/D/mock-root/c7.01.u-i686/root/proc'] with env {'LANG': 
'en_GB', 'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOSTNAME': 'mock', 'HOME': 
'/builddir', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin'} and shell False
DEBUG util.py:521:  Child return code was: 0
DEBUG util.py:541:  child environment: None
DEBUG util.py:474:  Executing command: ['/bin/mount', '-n', '-t', 'sysfs', 
'sysfs', '/srv/build/7/D/mock-root/c7.01.u-i686/root/sys'] with env {'LANG': 
'en_GB', 'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOSTNAME': 'mock', 'HOME': 
'/builddir', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin'} and shell False
DEBUG util.py:521:  Child return code was: 0
DEBUG util.py:541:  child environment: None
DEBUG util.py:474:  Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', 
'tmpfs', '/srv/build/7/D/mock-root/c7.01.u-i686/root/dev/shm'] with env 
{'LANG': 'en_GB', 'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOSTNAME': 'mock', 
'HOME': '/builddir', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin'} and shell False
DEBUG util.py:521:  Child return code was: 0
DEBUG util.py:541:  child environment: None
DEBUG util.py:474:  Executing command: ['/bin/mount', '-n', '-t', 'devpts', 
'-o', 'gid=5,mode=0620,ptmxmode=0666,newinstance', 'devpts', 
'/srv/build/7/D/mock-root/c7.01.u-i686/root/dev/pts'] with env {'LANG': 
'en_GB', 'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOSTNAME': 'mock', 'HOME': 
'/builddir', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin'} and shell False
DEBUG util.py:521:  Child return code was: 0
DEBUG util.py:541:  child environment: None
DEBUG util.py:474:  Executing command: ['/bin/mount', '-n', '--bind', 
'/tmp/mock-selinux-plugin.GmUSyx', 
'/srv/build/7/D/mock-root/c7.01.u-i686/root/proc/filesystems'] with env 
{'LANG': 'en_GB', 'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOSTNAME': 'mock', 
'HOME': '/builddir', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin'} and shell False
DEBUG util.py:521:  Child return code was: 0
DEBUG buildroot.py:133:  rootdir = /srv/build/7/D/mock-root/c7.01.u-i686/root
DEBUG buildroot.py:134:  resultdir = 
logs/c7.1511.u/tzdata/20161003133328/2016g-2.el7.i386
DEBUG util.py:96:  ensuring that dir exists: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/etc/pki/mock
DEBUG util.py:99:  creating dir: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/etc/pki/mock
DEBUG util.py:96:  ensuring that dir exists: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/etc/yum/pluginconf.d
DEBUG util.py:99:  creating dir: 
/srv/build/7/D/mock-root/c7.01.u-i686/root/etc/yum/pluginconf.d
DEBUG package_manager.py:194:  configure yum
DEBUG package_manager.py:200:  configure yum priorities
DEBUG package_manager.py:202:  configure yum rhnplugin
DEBUG package_manager.py:92:  ['/usr/bin/yum', '--installroot', 
'/srv/build/7/D/mock-root/c7.01.u-i686/root/', 'install', 'bash', 'bzip2', 
'coreutils', 'cpio', 'diffutils', 'system-release', 'findutils', 'gawk', 'gcc', 
'gcc-c++', 'grep', 'gzip', 'info', 'make', 'patch', 'redhat-rpm-config', 
'rpm-build', 'sed', 'shadow-utils', 'tar', 'unzip', 'util-linux', 'which', 'xz']
DEBUG util.py:541:  child environment: None
DEBUG util.py:474:  Executing command: ['/usr/bin/yum', '--installroot', 
'/srv/build/7/D/mock-root/c7.01.u-i686/root/', 'install', 'bash', 'bzip2', 
'coreutils', 'cpio', 'diffutils', 'system-release', 'findutils', 'gawk', 'gcc', 
'gcc-c++', 'grep', 'gzip', 'info', 'make', 'patch', 'redhat-rpm-config', 
'rpm-build', 'sed', 'shadow-utils', 'tar', 'unzip', 'util-linux', 'which', 
'xz', '--setopt=tsflags=nocontexts'] with env {'LANG': 'en_GB', 'TERM': 
'vt100', 'SHELL': '/bin/bash', 'LC_MESSAGES': 'C', 'PROMPT_COMMAND': 'printf 
"\x1b]0;\x07"', 'PATH': 
'/usr/bin:/bin:/usr/sbin:/sbin', 'HOME': '/builddir', 'HOSTNAME': 'mock'} and 
shell False
DEBUG util.py:399:  

DEBUG util.py:399:   Package  Arch Version  
 RepositorySize
DEBUG util.py:399:  

Re: [CentOS] Virtualization Networking

2016-10-03 Thread Liam O'Toole
On 2016-10-03, TE Dukes
 wrote:
>
>
>> -Original Message- From:
>> centos-boun...@centos.org
>> [mailto:centos-boun...@centos.org] On
>> Behalf Of Michael Cole Sent: Friday, September 30, 2016 9:41 PM To:
>> centos@centos.org Subject: Re: [CentOS]
>> Virtualization Networking
>> 
>> Deletion does not remove all, Try a erase if that did not work.
>> 
>> Configuration files are not always where you expect then to be.
>> 
>> Regards Michael Cole
>> 
>> On Friday, September 30, 2016 9:16:44 PM TE Dukes wrote:
>> > I deleted all virtualization packages and re-installed.
>> >
>> > Something must have been hosed up.
>> >
>> > Installing a VM and it didn't even ask to setup the network.
>> > Hopefully that's a good sign.
>> >
>> > Will know shortly
>> >
>> > TIA
>
>
> OK, I'm about done trying to get this to work. I have spent HOURS
> reading, installing, re-installing, etc.
>
> I can get the guest to access the internet but have tried every was
> possible to be able to access the guest from the LAN or even the host.
> Nothing I have tried works.
>
> The only thing all documentation leaves out is how to set up the guest
> networking during the install. Seems if I don't set anything up or
> just set it to DHCP it has internet connectivity, but that is all.
>
> I have gone back in after the guest has been installed and changed the
> networking configuration to match my LAN, that doesn't work either. I
> lose internet accessibility when I do that.
>
> I have tried to install CentOS 7 and Debian 8, the same problems with
> each.  I have tried CentOS the built in Virt-Manager and VirtualBox.
> with same results.  Can't seem to find the free version of VMware but
> I suspect I would have the same results as well.
>
> Again, any help would be greatly appreciated.
>
> TI!

VirtualBox gives you a GUI for setting up port forwarding from the host
to the guest. It's under Machine -> Settings -> Network -> Advanced. Did
you try it?

-- 

Liam

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


[CentOS-build-reports] Build Done: tzdata 2016g-2.el7.x86_64 on c7.1511.u

2016-10-03 Thread buildsys
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.x86_64
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.x86_64/build.log
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.x86_64/mock.cfg
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.x86_64/mock.exitcode
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.x86_64/root.log
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.x86_64/state.log
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.x86_64/stderr
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.x86_64/stdout
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.x86_64/tzdata-2016g-2.el7_2.noarch.rpm
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.x86_64/tzdata-2016g-2.el7_2.src.rpm
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.x86_64/tzdata-java-2016g-2.el7_2.noarch.rpm
___
CentOS-build-reports mailing list
CentOS-build-reports@centos.org
https://lists.centos.org/mailman/listinfo/centos-build-reports


[CentOS-build-reports] Build Done: tzdata 2016g-2.el7.i386 on c7.1511.u

2016-10-03 Thread buildsys
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.i386
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.i386/build.log
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.i386/mock.cfg
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.i386/mock.exitcode
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.i386/root.log
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.i386/state.log
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.i386/stderr
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.i386/stdout
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.i386/tzdata-2016g-2.el7_2.noarch.rpm
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.i386/tzdata-2016g-2.el7_2.src.rpm
logs/c7.1511.u/tzdata/20161003123423/2016g-2.el7.i386/tzdata-java-2016g-2.el7_2.noarch.rpm
___
CentOS-build-reports mailing list
CentOS-build-reports@centos.org
https://lists.centos.org/mailman/listinfo/centos-build-reports


Re: [CentOS] Virtualization Networking

2016-10-03 Thread Gianluca Cecchi
On Mon, Oct 3, 2016 at 1:54 PM, TE Dukes  wrote:

>
>
> > -Original Message-
> > From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
> > Behalf Of Michael Cole
> > Sent: Friday, September 30, 2016 9:41 PM
> > To: centos@centos.org
> > Subject: Re: [CentOS] Virtualization Networking
> >
> > Deletion does not remove all, Try a erase if that did not work.
> >
> > Configuration files are not always where you expect then to be.
> >
> > Regards Michael Cole
> >
> > On Friday, September 30, 2016 9:16:44 PM TE Dukes wrote:
> > > I deleted all virtualization packages and re-installed.
> > >
> > > Something must have been hosed up.
> > >
> > > Installing a VM and it didn't even ask to setup the network. Hopefully
> > > that's a good sign.
> > >
> > > Will know shortly
> > >
> > > TIA
>
>
> OK, I'm about done trying to get this to work. I have spent HOURS reading,
> installing, re-installing, etc.
>
> I can get the guest to access the internet but have tried every was
> possible
> to be able to access the guest from the LAN or even the host. Nothing I
> have
> tried works.
>
> The only thing all documentation leaves out is how to set up the guest
> networking during the install. Seems if I don't set anything up or just set
> it to DHCP it has internet connectivity, but that is all.
>
> I have gone back in after the guest has been installed and changed the
> networking configuration to match my LAN, that doesn't work either. I lose
> internet accessibility when I do that.
>
> I have tried to install CentOS 7 and Debian 8, the same problems with each.
> I have tried CentOS the built in Virt-Manager and VirtualBox. with same
> results.  Can't seem to find the free version of VMware but I suspect I
> would have the same results as well.
>
> Again, any help would be greatly appreciated.
>
> TI!
>
>
>
If you still have in place environment with virt-manager, can you send the
output of

virsh net-list

Then for every network-name you get into the output of the command above in
column "Name"

virsh net-dumpxml network-name

Then
brctl show

Feel free to transform any ip you think could be sensible.

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


Re: [CentOS] Virtualization Networking

2016-10-03 Thread TE Dukes


> -Original Message-
> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
> Behalf Of Michael Cole
> Sent: Friday, September 30, 2016 9:41 PM
> To: centos@centos.org
> Subject: Re: [CentOS] Virtualization Networking
> 
> Deletion does not remove all, Try a erase if that did not work.
> 
> Configuration files are not always where you expect then to be.
> 
> Regards Michael Cole
> 
> On Friday, September 30, 2016 9:16:44 PM TE Dukes wrote:
> > I deleted all virtualization packages and re-installed.
> >
> > Something must have been hosed up.
> >
> > Installing a VM and it didn't even ask to setup the network. Hopefully
> > that's a good sign.
> >
> > Will know shortly
> >
> > TIA


OK, I'm about done trying to get this to work. I have spent HOURS reading,
installing, re-installing, etc.

I can get the guest to access the internet but have tried every was possible
to be able to access the guest from the LAN or even the host. Nothing I have
tried works.

The only thing all documentation leaves out is how to set up the guest
networking during the install. Seems if I don't set anything up or just set
it to DHCP it has internet connectivity, but that is all.

I have gone back in after the guest has been installed and changed the
networking configuration to match my LAN, that doesn't work either. I lose
internet accessibility when I do that.

I have tried to install CentOS 7 and Debian 8, the same problems with each.
I have tried CentOS the built in Virt-Manager and VirtualBox. with same
results.  Can't seem to find the free version of VMware but I suspect I
would have the same results as well.

Again, any help would be greatly appreciated.

TI!

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


[CentOS] CentOS ISO contents

2016-10-03 Thread Harry Mallon
On the download page https://wiki.centos.org/Download it lists: DVD, Minimal, 
Everything, LiveGNOME, LiveKDE.

Where can I find the lists of packages contained in each one without 
downloading and extracting them? Is there a repo with the scripts that make 
them maybe?

Harry

Harry Mallon

CODEX | Software Engineer

60 Poland Street | London | England | W1F 7NT

E ha...@codexdigital.com | T +44 203 7000 
989

Website | Facebook 
| Twitter

[http://www.codexdigital.com/?action=asset=E55D8A6F-AF62-4978-8FF1-435A85AFADBF]
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Desktop for newbies

2016-10-03 Thread Sorin Srbu
> -Original Message-
> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
> Behalf Of Valeri Galtsev
> Sent: den 30 september 2016 18:14
> To: CentOS mailing list 
> Subject: Re: [CentOS] Desktop for newbies
>
> >> > I'm about to set up a non-root user on a Centos=7 server that I
control
> >> > for a friend.  It is in his home, so access is local.  He's a refugee
> >> > from the latest Windows 10 Upgrade.  I'd like a suggestion as to
which of
> >> > the several possible graphical desktops to suggest to him and set up
for
> >> > him as his default.
> >> >
> >> > My aim is:
> >> > - Allow him to try out Linux as an end-user
> >> > - Let him start to feel comfortable with the desktop
> >> > - Learn the new idioms for familiar programs and functions
> >> >
> >> > And later
> >> > - Give him his own system with root privileges.

IMHO whatever DE (eg Gnome2, Mate or KDE) should work except for the
thinnest ones (eg xfce), which are are likely to be scary for a former
Windows refugee.

The most important thing to not forget though, is to add and apply the
Redmond theme!

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