Re: [CentOS] NIC recongized but cant ping

2015-06-16 Thread mechy2k2000
No, the way the server is planned be setup certain NICs go to different ip
subnets. I got it working though after making virtual bridges for each nic
and using only one for the host and the rest for VMs. Once it got working I
did not try to reproduce the issue.  I will in the future keep these things
in mind should the issue come up again.

Thanks

Rafeal
 On Jun 15, 2015 19:26, "Gordon Messmer"  wrote:

> On 06/13/2015 05:26 AM, Rafeal Stewart wrote:
>
>> The only card that works out of the box is my only PCIE intel dual 1000
>> nic. my PCIX based intel pro 1000 nor my realk r8169 nics work, yet
>> debian sees the NIC. I can bring them up and configure no errors. I just
>> cannot ping anything on my lan
>>
>
> Are you connecting all of the Ethernet adapters to the same LAN, with
> different addresses in the same IP subnet?  You might have a problem with
> arp flux...
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Two partitions with samd UUID??

2015-06-16 Thread Always Learning

On Mon, 2015-06-15 at 21:41 -0500, Robert Nichols wrote:

> Non-GPT partitions do not have a UUID. The _content_ (filesystem,
> LVM physical volume, non-encrypted swap space, etc.) of such a
> partition could have a UUID, but the partition itself does not.

ON Centos 5, using GPARTED I created partitions for filing systems ext3
and ext4. 4 primary and unlimited (except by space) extended partitions.
That suggests those partitions are not GPT but old fashioned M$DOS

I encrypted some of those partitions.

The 'blkid' command produces a list of UUIDs for those partitions.

A few examples:-


> /dev/sda5: LABEL="a5u" UUID="3cbc7570-30b8-4970-a0df-a9a9602770d0" 
> TYPE="ext4" 
> /dev/sda2: UUID="e954fbaa-dc51-46dc-a352-cceb439080e5" TYPE="crypt_LUKS" 
> /dev/ram0: UUID="49b98b86-116a-469b-b6de-a157bb0a12dd" TYPE="ext2" 
> /dev/sda1: LABEL="d6sys" UUID="cd632820-0701-4a6a-b329-6798b6a29966" 
> TYPE="ext3" SEC_TYPE="ext2" 


-- 
Regards,

Paul.
England, EU.  England's place is in the European Union.

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


Re: [CentOS] Two partitions with samd UUID??

2015-06-16 Thread John Hodrien

On Tue, 16 Jun 2015, Always Learning wrote:


ON Centos 5, using GPARTED I created partitions for filing systems ext3
and ext4. 4 primary and unlimited (except by space) extended partitions.
That suggests those partitions are not GPT but old fashioned M$DOS


If it is old fashioned MSDOS, you can have four total primary and extended,
not four primary plus extended.  An extended partition then provides a
container for further logical partitions.


I encrypted some of those partitions.

The 'blkid' command produces a list of UUIDs for those partitions.

A few examples:-


/dev/sda5: LABEL="a5u" UUID="3cbc7570-30b8-4970-a0df-a9a9602770d0" TYPE="ext4"
/dev/sda2: UUID="e954fbaa-dc51-46dc-a352-cceb439080e5" TYPE="crypt_LUKS"
/dev/ram0: UUID="49b98b86-116a-469b-b6de-a157bb0a12dd" TYPE="ext2"
/dev/sda1: LABEL="d6sys" UUID="cd632820-0701-4a6a-b329-6798b6a29966" TYPE="ext3" 
SEC_TYPE="ext2"


LUKS provides a UUID, so being encrypted isn't a barrier to having a UUID.

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


Re: [CentOS] Two partitions with samd UUID??

2015-06-16 Thread Always Learning

On Tue, 2015-06-16 at 11:30 +0100, John Hodrien wrote:
> On Tue, 16 Jun 2015, Always Learning wrote:
> 
> > ON Centos 5, using GPARTED I created partitions for filing systems ext3
> > and ext4. 4 primary and unlimited (except by space) extended partitions.
> > That suggests those partitions are not GPT but old fashioned M$DOS
> 
> If it is old fashioned MSDOS, you can have four total primary and extended,
> not four primary plus extended.  An extended partition then provides a
> container for further logical partitions.

Yes you are correct. Maximum 4 primary or maximum 3 primary and 1
extended which is then sub-divided into more partitions.

> LUKS provides a UUID, so being encrypted isn't a barrier to having a UUID.

But my point was M$ DOS partitions, not being GPT partitions, can have
UUIDs. The original poster appeared to suggest that was not possible. He
wrote

> > Non-GPT partitions do not have a UUID. The _content_ (filesystem,
> > LVM physical volume, non-encrypted swap space, etc.) of such a
> > partition could have a UUID, but the partition itself does not.

When I think I am mounting a M$ DOS partition, am I mounting a real
partition or merely 'the file system' within that partition ?  Some may
think one can't have one without the other.



-- 
Regards,

Paul.
England, EU.  England's place is in the European Union.

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


Re: [CentOS] Two partitions with samd UUID??

2015-06-16 Thread John Hodrien

On Tue, 16 Jun 2015, Always Learning wrote:


But my point was M$ DOS partitions, not being GPT partitions, can have
UUIDs. The original poster appeared to suggest that was not possible.


No, the partition there does not have a UUID.  Run fdisk, create a partition,
dd if=/dev/zero of=/dev/sda4

blkid

You'll see no UUID, as the partition does not provide a UUID, and there's
nothing on it to provide a UUID.  Format it, or make some swap space or
whatever, and you get a UUID.


When I think I am mounting a M$ DOS partition, am I mounting a real
partition or merely 'the file system' within that partition ?  Some may
think one can't have one without the other.


You never mount a partition, only a filesystem.  The partition merely points
you to where the filesystem is.

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


Re: [CentOS] Two partitions with samd UUID??

2015-06-16 Thread James Hogarth
On 16 Jun 2015 12:12, "Always Learning"  wrote:
>
>
> On Tue, 2015-06-16 at 11:30 +0100, John Hodrien wrote:
> > On Tue, 16 Jun 2015, Always Learning wrote:
> >
> > > ON Centos 5, using GPARTED I created partitions for filing systems
ext3
> > > and ext4. 4 primary and unlimited (except by space) extended
partitions.
> > > That suggests those partitions are not GPT but old fashioned M$DOS
> >
> > If it is old fashioned MSDOS, you can have four total primary and
extended,
> > not four primary plus extended.  An extended partition then provides a
> > container for further logical partitions.
>
> Yes you are correct. Maximum 4 primary or maximum 3 primary and 1
> extended which is then sub-divided into more partitions.
>
> > LUKS provides a UUID, so being encrypted isn't a barrier to having a
UUID.
>
> But my point was M$ DOS partitions, not being GPT partitions, can have
> UUIDs. The original poster appeared to suggest that was not possible. He
> wrote
>

Those were filesystem UUIDs not partition UUIDs ...

LUKS has its own header similar to ext4, lvm, etc headers which has a UUID
in it.

This UUID being associated with the LUKS header indicates it is not a
partition UUID.

A dd of this (or lvm snapshot) to another partition will keep the same UUID.

A partition UUID within a GPT table would not be persisted in this manner,
and msdos labeled disks have no concept of this to begin with.

> > > Non-GPT partitions do not have a UUID. The _content_ (filesystem,
> > > LVM physical volume, non-encrypted swap space, etc.) of such a
> > > partition could have a UUID, but the partition itself does not.
>
> When I think I am mounting a M$ DOS partition, am I mounting a real
> partition or merely 'the file system' within that partition ?  Some may
> think one can't have one without the other.
>
>

Of course you can have a partition or filesystem without the other. This is
how raw devices work and you can mkfs a block device with no partitions.

When you mount something you mount the filesystem.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Drive problem

2015-06-16 Thread Ashish Yadav
Hi,

On Tue, Jun 16, 2015 at 2:26 AM,  wrote:

> I was rsync'ing data from one system to another, and the recipient
> suddenly started throwing DRDY errors. Now, it's a fairly new WD Red 3TB,
> and I'd think it was just a bad drive... but I'm really confused by this,
> from the logs:
> Jun 15 15:34:43  kernel: ata3: SError: { Dispar }
>
> Dispar? And googling, every reference I find to that word always has
> something else there.
>
> System's running 5.11. Filesystem's xfs.
>
> Any thoughts?
>

Please check your SATA data cable first, I have similar experience where
something was
wrong with the cable and it started to give DRDY errors. When I put that
disk into another
machine then it was working fine without any problem.

--Regards
Ashishkumar S. Yadav
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] CentOS-announce Digest, Vol 124, Issue 7

2015-06-16 Thread centos-announce-request
Send CentOS-announce mailing list submissions to
centos-annou...@centos.org

To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-requ...@centos.org

You can reach the person managing the list at
centos-announce-ow...@centos.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of CentOS-announce digest..."


Today's Topics:

   1. CEBA-2015:1099  CentOS 5 nss_ldap BugFix Update (Johnny Hughes)
   2. CESA-2015:1083 Important CentOS 7 abrt Security   Update
  (Johnny Hughes)
   3. CESA-2015:1090 Important CentOS 7 wpa_supplicant  Security
  Update (Johnny Hughes)
   4. CESA-2015:1115 Moderate CentOS 7 openssl Security Update
  (Johnny Hughes)
   5. CESA-2015:1115 Moderate CentOS 6 openssl Security Update
  (Johnny Hughes)


--

Message: 1
Date: Mon, 15 Jun 2015 12:52:47 +
From: Johnny Hughes 
To: centos-annou...@centos.org
Subject: [CentOS-announce] CEBA-2015:1099  CentOS 5 nss_ldap BugFix
Update
Message-ID: <20150615125247.ga24...@chakra.karan.org>
Content-Type: text/plain; charset=us-ascii


CentOS Errata and Bugfix Advisory 2015:1099 

Upstream details at : https://rhn.redhat.com/errata/RHBA-2015-1099.html

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

i386:
b874bb191341b1943146a7535fa2f6785d7db275e210602aec73024612f6f625  
nss_ldap-253-52.el5_11.2.i386.rpm

x86_64:
b874bb191341b1943146a7535fa2f6785d7db275e210602aec73024612f6f625  
nss_ldap-253-52.el5_11.2.i386.rpm
bbcf34bb020af8572b121493a2934d4158fb0618f65943cd93c3bafeba910dd4  
nss_ldap-253-52.el5_11.2.x86_64.rpm

Source:
ca8e11bebd5ceff8c91c9169ba553f29a0e9e3eefddbb5b7b566a59316318417  
nss_ldap-253-52.el5_11.2.src.rpm



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



--

Message: 2
Date: Mon, 15 Jun 2015 19:59:49 +
From: Johnny Hughes 
To: centos-annou...@centos.org
Subject: [CentOS-announce] CESA-2015:1083 Important CentOS 7 abrt
SecurityUpdate
Message-ID: <20150615195949.ga45...@n04.lon1.karan.org>
Content-Type: text/plain; charset=us-ascii


CentOS Errata and Security Advisory 2015:1083 Important

Upstream details at : https://rhn.redhat.com/errata/RHSA-2015-1083.html

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

x86_64:
4b27d42a4ed792b8cc8729cc65e6d70a82225000bbad1aa0f002a05582679de2  
abrt-2.1.11-22.el7.centos.0.1.x86_64.rpm
8be3e042cec3dc2d68f19ea62d9b880442b33bf429b4f2325e80b0f19f133a9c  
abrt-addon-ccpp-2.1.11-22.el7.centos.0.1.x86_64.rpm
f12671c432bc97b704a331beed7a05477e66d72c2b95b56a33057799586a9d14  
abrt-addon-kerneloops-2.1.11-22.el7.centos.0.1.x86_64.rpm
139a22358ae24457a5cdde0f3b76f20afd8c76ee62903699ca66d3ef7cde907f  
abrt-addon-pstoreoops-2.1.11-22.el7.centos.0.1.x86_64.rpm
733cb4afaa8ed2396b0be1dec7a48d99071a5525389a5f93bc1f3cbdbdf6d109  
abrt-addon-python-2.1.11-22.el7.centos.0.1.x86_64.rpm
19a485fd3faa2490cbb03107e4cf04149845fa1a869f0bb757bbd9b5c280f11e  
abrt-addon-upload-watch-2.1.11-22.el7.centos.0.1.x86_64.rpm
a376aee50bef41d675f46674a6f2bc1122816686b7fce163ea3eab766a77076c  
abrt-addon-vmcore-2.1.11-22.el7.centos.0.1.x86_64.rpm
99d726e65c5c79be88801e5ae320d2ae1f31b6b53618a7e74fe7f5de5c4d7676  
abrt-addon-xorg-2.1.11-22.el7.centos.0.1.x86_64.rpm
b7123238ab0d18942244ec6f27ccaf08850516556d659225804406f2be875925  
abrt-cli-2.1.11-22.el7.centos.0.1.x86_64.rpm
d7543955cbc0e084e99096d89e53e81d54724fb86e6c0cb2d9e2b0a1369f1984  
abrt-console-notification-2.1.11-22.el7.centos.0.1.x86_64.rpm
d7a1c9aae575304814792a29bf06622478992c3f33449b0958233d67e9c6829d  
abrt-dbus-2.1.11-22.el7.centos.0.1.x86_64.rpm
960f3bcb0629b6b820b3d6de5307862872aec6d65c4b2e2d48cb366125004afa  
abrt-desktop-2.1.11-22.el7.centos.0.1.x86_64.rpm
c271cd09b5271ba844db9860603ad01844019fd67a3617b019e9ba63865052b6  
abrt-devel-2.1.11-22.el7.centos.0.1.i686.rpm
6deee7cb4d4da985f7358dc2aa1d1a66eb8d3687ce74311d81fb9e3f5b497055  
abrt-devel-2.1.11-22.el7.centos.0.1.x86_64.rpm
e233a7f7bf49b9fa8a08bc1edcf4a3c01dd6756d585ae39695591428c91e42d3  
abrt-gui-2.1.11-22.el7.centos.0.1.x86_64.rpm
9e28942878f7d1c4c71a173e5fa3261fbebc4b97de0c42b22b886d9f27c0eb43  
abrt-gui-devel-2.1.11-22.el7.centos.0.1.i686.rpm
7bf6fd743da7c4e9eee9b53e8188dbb73f08d3da8926488155e0f6621488e73d  
abrt-gui-devel-2.1.11-22.el7.centos.0.1.x86_64.rpm
6b7514f1d38dc4f2dfbfd27834856c2b3e174d3ca4b5de9ef1e8531f74fde0f1  
abrt-gui-libs-2.1.11-22.el7.centos.0.1.i686.rpm
ce17e648ec0a01501ca11a0c6977a03875fcb0363d0477993dbb175a857e92c0  
abrt-gui-libs-2.1.11-22.el7.centos.0.1.x86_64.rpm
e171b9232bd3d040b90a54a083560778c8987ced94be1650bfeccfc47ad94676  
abrt-libs-2.1.11-22.el7.cen

Re: [CentOS] Centos 6.6 not booting on Virtualbox on Windows host

2015-06-16 Thread Ashish Yadav
Hi,


On Mon, Jun 15, 2015 at 1:59 AM, Animesh Pandey <
animeshpandey.e...@gmail.com> wrote:

> Hi,
>
> I downloaded the QuickStart VM from Cloudera that has preinstalled
> Spark/Hadoop etc. I have been working on that for the last 4-5 weeks and it
> was running absolutely fine, but recently I had to restart my VM. Since,
> then the VM does not restart. It shows the loading bar but after that it
> seems as if it stopped responding. It only shows a small black screen
>  and does not go anywhere from there.
>
> The log  hangs at Setting up logical
> volume management : 3 logical volume(s) in volume group "vol group" now
> active.
>
> I tried logging in using the Single User Mode but still the system hangs at
> the point.
>
> I don't know what is going wrong?
>

Try to boot with SystemRescueCD and see that you can mount those LV's.
If that thing does not works then look for any File-System errors.

--Regards
Ashishkumar S. Yadav
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Two partitions with samd UUID??

2015-06-16 Thread Leon Fauster
Am 16.06.2015 um 12:23 schrieb Always Learning :
> On Mon, 2015-06-15 at 21:41 -0500, Robert Nichols wrote:
> 
>> Non-GPT partitions do not have a UUID. The _content_ (filesystem,
>> LVM physical volume, non-encrypted swap space, etc.) of such a
>> partition could have a UUID, but the partition itself does not.
> 
> ON Centos 5, using GPARTED I created partitions for filing systems ext3
> and ext4. 4 primary and unlimited (except by space) extended partitions.
> That suggests those partitions are not GPT but old fashioned M$DOS
> 
> I encrypted some of those partitions.
> 
> The 'blkid' command produces a list of UUIDs for those partitions.



these are the ids of the filesystems.

--
LF


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


Re: [CentOS] Drive problem

2015-06-16 Thread mark

On 06/16/15 07:59, Ashish Yadav wrote:

Hi,

On Tue, Jun 16, 2015 at 2:26 AM,  wrote:


I was rsync'ing data from one system to another, and the recipient
suddenly started throwing DRDY errors. Now, it's a fairly new WD Red 3TB,
and I'd think it was just a bad drive... but I'm really confused by this,
from the logs:
Jun 15 15:34:43  kernel: ata3: SError: { Dispar }

Dispar? And googling, every reference I find to that word always has
something else there.

System's running 5.11. Filesystem's xfs.

Any thoughts?



Please check your SATA data cable first, I have similar experience where
something was wrong with the cable and it started to give DRDY errors.

> When I put that disk into another machine then it was working fine
> without any problem.

It's something to consider... but I can't do that easily. This is a server 
that's been running for years, and is in use, and it's a hot-swap bay.


mark

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


Re: [CentOS] Drive problem

2015-06-16 Thread Valeri Galtsev

On Tue, June 16, 2015 7:11 am, mark wrote:
> On 06/16/15 07:59, Ashish Yadav wrote:
>> Hi,
>>
>> On Tue, Jun 16, 2015 at 2:26 AM,  wrote:
>>
>>> I was rsync'ing data from one system to another, and the recipient
>>> suddenly started throwing DRDY errors. Now, it's a fairly new WD Red
>>> 3TB,
>>> and I'd think it was just a bad drive... but I'm really confused by
>>> this,
>>> from the logs:
>>> Jun 15 15:34:43  kernel: ata3: SError: { Dispar }
>>>
>>> Dispar? And googling, every reference I find to that word always has
>>> something else there.
>>>
>>> System's running 5.11. Filesystem's xfs.
>>>
>>> Any thoughts?
>>>
>>
>> Please check your SATA data cable first, I have similar experience where
>> something was wrong with the cable and it started to give DRDY errors.
>  > When I put that disk into another machine then it was working fine
>  > without any problem.
>
> It's something to consider... but I can't do that easily. This is a server
> that's been running for years, and is in use, and it's a hot-swap bay.
>

Then it also could be caused by a micro crack on a backplane.

Valeri


Valeri Galtsev
Sr System Administrator
Department of Astronomy and Astrophysics
Kavli Institute for Cosmological Physics
University of Chicago
Phone: 773-702-4247

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


[CentOS] NUX Skype for Linux

2015-06-16 Thread James B. Byrne
I had cause to install the Skype for Linux package from the NUX repo. 
I discover that this package is configured to automatically start
Skype whenever one logs on to the Gnome desktop.  This behaviour I do
not wish.  However, there seems to be no option in Skype to turn that
'feature' off. Is there any way to disable this in Gnome or elsewhere?

I will be removing Skype shortly when the present need for it passes
but I do not wish this thing automatically starting in the meantime.


-- 
***  e-Mail is NOT a SECURE channel  ***
Do NOT transmit sensitive data via e-Mail
James B. Byrnemailto:byrn...@harte-lyne.ca
Harte & Lyne Limited  http://www.harte-lyne.ca
9 Brockley Drive  vox: +1 905 561 1241
Hamilton, Ontario fax: +1 905 561 0757
Canada  L8E 3C3

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


Re: [CentOS] NUX Skype for Linux

2015-06-16 Thread Sorin Srbu
> -Original Message-
> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
> Behalf Of James B. Byrne
> Sent: den 16 juni 2015 14:55
> To: centos@centos.org
> Subject: [CentOS] NUX Skype for Linux
>
> I had cause to install the Skype for Linux package from the NUX repo.
> I discover that this package is configured to automatically start
> Skype whenever one logs on to the Gnome desktop.  This behaviour I do
> not wish.  However, there seems to be no option in Skype to turn that
> 'feature' off. Is there any way to disable this in Gnome or elsewhere?
>
> I will be removing Skype shortly when the present need for it passes
> but I do not wish this thing automatically starting in the meantime.

Hi,

You can't do this?

"Go to Tools -> Options -> General settings. Uncheck the option "Start Skype 
when I start Windows". Save and Quit Skype. Next time you reboot Windows, 
Skype will not start with Windows"

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


Re: [CentOS] Two partitions with samd UUID??

2015-06-16 Thread Robert Nichols

On 06/16/2015 06:43 AM, James Hogarth wrote:

On 16 Jun 2015 12:12, "Always Learning"  wrote:



On Tue, 2015-06-16 at 11:30 +0100, John Hodrien wrote:

On Tue, 16 Jun 2015, Always Learning wrote:


ON Centos 5, using GPARTED I created partitions for filing systems

ext3

and ext4. 4 primary and unlimited (except by space) extended

partitions.

That suggests those partitions are not GPT but old fashioned M$DOS


If it is old fashioned MSDOS, you can have four total primary and

extended,

not four primary plus extended.  An extended partition then provides a
container for further logical partitions.


Yes you are correct. Maximum 4 primary or maximum 3 primary and 1
extended which is then sub-divided into more partitions.


LUKS provides a UUID, so being encrypted isn't a barrier to having a

UUID.


But my point was M$ DOS partitions, not being GPT partitions, can have
UUIDs. The original poster appeared to suggest that was not possible. He
wrote



Those were filesystem UUIDs not partition UUIDs ...


LUKS physical volume UUIDs, actually. When you create a LUKS logical 
volume within that PV, it also has a UUID, and a filesystem within that 
LUKS LV will have its own UUID. These are all part of the partition's 
_content_. A GPT partition has its own UUID, independent of the 
partition's content. An MSDOS partition does not.



LUKS has its own header similar to ext4, lvm, etc headers which has a UUID
in it.

This UUID being associated with the LUKS header indicates it is not a
partition UUID.

A dd of this (or lvm snapshot) to another partition will keep the same UUID.


Indeed. If your version of cryptsetup is new enough (supports the 
"--header" option), try doing the luksFormat operation with a detached 
header. Now you will find that your LUKS partition no longer has a UUID.



A partition UUID within a GPT table would not be persisted in this manner,
and msdos labeled disks have no concept of this to begin with.


--
Bob Nichols "NOSPAM" is really part of my email address.
Do NOT delete it.

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


Re: [CentOS] Two partitions with samd UUID??

2015-06-16 Thread Robert Nichols

On 06/16/2015 09:00 AM, Robert Nichols wrote:

LUKS physical volume UUIDs, actually. When you create a LUKS logical
volume within that PV, it also has a UUID, and a filesystem within that
LUKS LV will have its own UUID. These are all part of the partition's
_content_. A GPT partition has its own UUID, independent of the
partition's content. An MSDOS partition does not.


I obviously had LVM on my mind when I wrote that. Sorry. The principle still
holds, though. A filesystem within that LUKS container has its own
UUID, separate from the LUKS UUID.

--
Bob Nichols "NOSPAM" is really part of my email address.
Do NOT delete it.

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


[CentOS] Virtualization

2015-06-16 Thread Alessandro Baggi

Hi list,
what solution do you use for virtualizzation?

thanks in advance.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Virtualization

2015-06-16 Thread Numan Fatih YARCI
KVM - Vagrant - Docker :)

On Tue, 16 Jun 2015 at 17:41 Alessandro Baggi 
wrote:

> Hi list,
> what solution do you use for virtualizzation?
>
> thanks in advance.
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] selinux allow apache log access

2015-06-16 Thread Tim Dunphy
Hey guys,.

 I have a centos 7 machine I'm using as a zabbix server. And I noticed that
apache won't start, with this complaint in the error log:

(13)Permission denied: AH00091: httpd: could not open error log file
/var/log/zabbix_error_log.
AH00015: Unable to open logs


I tried having a look at audit2allow and this is the response I get back:

[root@monitor2:/etc/httpd] #grep http /var/log/audit/audit.log | audit2allow


#= httpd_t ==
allow httpd_t zabbix_log_t:file open;

How can I turn that bit of information into a rule that allows apache
access to this zabbix log file?

I notice that if I disable selinux using setenfor 0, apache starts up
without complaint. But I would rather not leave it disabled.

Thanks,
Tim

-- 
GPG me!!

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


Re: [CentOS] Virtualization

2015-06-16 Thread Mark Haney
ESX(i) 6 and vCloud Air.  At home, KVM and Vagrant.


On Tue, Jun 16, 2015 at 10:46 AM, Numan Fatih YARCI <
fatih.ya...@linux.org.tr> wrote:

> KVM - Vagrant - Docker :)
>
> On Tue, 16 Jun 2015 at 17:41 Alessandro Baggi 
> wrote:
>
> > Hi list,
> > what solution do you use for virtualizzation?
> >
> > thanks in advance.
> > ___
> > CentOS mailing list
> > CentOS@centos.org
> > http://lists.centos.org/mailman/listinfo/centos
> >
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>



-- 

Mark Haney ::: Senior Systems Engineer
*VIF* International Education
P.O. Box 3566 ::: Chapel Hill, N.C. 27515 ::: USA
919-265-5006 office

Global learning for all.
www.vifprogram.com

Find VIF on Facebook  |
Twitter  | LinkedIn


Recognized as a ‘Best for the World’
 B Corp!
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] using rsync to sync desktop /home/user of to laptop /home/user

2015-06-16 Thread g

greetings,

i want to sync my desktop home directory to my laptop home
directory. i am using KDE for desktop.

a problem that i foresee is the different screens between the 2.

i synced using;

  rsync -a -u -v -e ssh /home/geo geo@192.168.1.5:/home/geo.new

with intent of in laptop's /home;

  mv geo geo.org
  mv geo.new geo

what files and directories in 'org' directory need to be copied
to the 'new' directory so that i will maintain screen setup in
laptop?

thanks in advance.


-- 

peace out.

--
If Bill Gates got a dime for every time Windows crashes...
 ...oh, wait. He does. THAT explains it!
--
in a world with out fences, who needs gates.
--

CentOS GNU/Linux 6.6

tc,hago.

g
.

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


Re: [CentOS] Virtualization

2015-06-16 Thread Alessandro Baggi

What do you think about Proxmox VE?

ESX(i) 6 and vCloud Air.  At home, KVM and Vagrant.


On Tue, Jun 16, 2015 at 10:46 AM, Numan Fatih YARCI <
fatih.ya...@linux.org.tr> wrote:


KVM - Vagrant - Docker :)

On Tue, 16 Jun 2015 at 17:41 Alessandro Baggi 
wrote:


Hi list,
what solution do you use for virtualizzation?

thanks in advance.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


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







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


[CentOS] gvim current directory

2015-06-16 Thread Michael Hennebry

When I gvim a file from gnome,
gvim's working directory is always my home directory.
That is not what I want.
It is inconvenient for :vi , :r and :w something.else .
Is there a way to automatically cause gvim's current
directory to be the directory of the edited file?
I am aware of workarounds involving the command line.
I am aware of gedit.
I am looking for a way to give gvim the correct working directory.
Is this a gnome thing?

--
Michael   henne...@web.cs.ndsu.nodak.edu
"SCSI is NOT magic. There are *fundamental technical
reasons* why it is necessary to sacrifice a young
goat to your SCSI chain now and then."   --   John Woods
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] gvim current directory

2015-06-16 Thread Michael Hennebry

solved

On Tue, 16 Jun 2015, Michael Hennebry wrote:


Is there a way to automatically cause gvim's current
directory to be the directory of the edited file?


Searching on "working directory" worked better than
searching on "current directory"

In my ~/.vimrc file:
command CDC cd %:p:h

:CDC will do what I want.

I found it here:
http://vim.wikia.com/wiki/Set_working_directory_to_the_current_file

--
Michael   henne...@web.cs.ndsu.nodak.edu
"SCSI is NOT magic. There are *fundamental technical
reasons* why it is necessary to sacrifice a young
goat to your SCSI chain now and then."   --   John Woods
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Logwatch and System uptime

2015-06-16 Thread Paul Heinlein

On Mon, 15 Jun 2015, Pete Geenhuizen wrote:


Enable it in /usr/share/logwatch/default.conf/services/zz-runtime.conf


More sustainable, I think, would be to copy zz-runtime.conf to 
/etc/logwatch/conf/services and then enable it.


Changes in /usr/share/logwatch/* will be overwritten during a package 
update, while customizations in /etc/logwatch will remain unchanged.


--
Paul Heinlein <> heinl...@madboa.com <> http://www.madboa.com/
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] using rsync to sync desktop /home/user of to laptop /home/user

2015-06-16 Thread Antonio S. Martins Jr.
- "g"  escreveu:

> De: "g" 
> Para: centos@centos.org
> Enviadas: Terça-feira, 16 de Junho de 2015 13:28:33 (GMT-0300) Auto-Detected
> Assunto: [CentOS] using rsync to sync desktop /home/user of to laptop 
> /home/user
>
> greetings,
> 
> i want to sync my desktop home directory to my laptop home
> directory. i am using KDE for desktop.
> 
> a problem that i foresee is the different screens between the 2.
> 
> i synced using;
> 
>   rsync -a -u -v -e ssh /home/geo geo@192.168.1.5:/home/geo.new
> 
> with intent of in laptop's /home;
> 
>   mv geo geo.org
>   mv geo.new geo
> 
> what files and directories in 'org' directory need to be copied
> to the 'new' directory so that i will maintain screen setup in
> laptop?
> 

Hi,

   I'm using unison (http://www.cis.upenn.edu/~bcpierce/unison/) to do this.  
It can
sync in both ways if files are changed on both sides between syncs.

   And, IMHO it's better to filter out the directories that contain 
configuration
for the systems, or better, sync only the documents and other pertinent files.

   Att.,

 Antonio.

--
Antonio da Silva Martins Jr. 
Analista de Suporte
NPD - Núcleo de Processamento de Dados
UEM - Universidade Estadual de Maringá
email: asmart...@uem.br 
fone: +55 (44) 3011-4015 / 3011-4411
inoc-dba: 263076*100 

 "Real Programmers don’t need comments — the code is obvious."

-- 
Esta mensagem foi verificada pelo sistema de antivirus e
 acredita-se estar livre de perigo.

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


Re: [CentOS] Two partitions with samd UUID??

2015-06-16 Thread John R Pierce

On 6/16/2015 3:23 AM, Always Learning wrote:

The 'blkid' command produces a list of UUIDs for those partitions.


those are the UUID's of the file systems contained in the partitions, 
which is NOT the same thing as the UUID that GPT uses to identify the 
partition itself.



--
john r pierce, recycling bits in santa cruz

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


Re: [CentOS] Drive problem

2015-06-16 Thread m . roth
Valeri Galtsev wrote:
>
> On Tue, June 16, 2015 7:11 am, mark wrote:
>> On 06/16/15 07:59, Ashish Yadav wrote:
>>> Hi,
>>>
>>> On Tue, Jun 16, 2015 at 2:26 AM,  wrote:
>>>
 I was rsync'ing data from one system to another, and the recipient
 suddenly started throwing DRDY errors. Now, it's a fairly new WD Red
 3TB, and I'd think it was just a bad drive... but I'm really
 confused by this, from the logs:
 Jun 15 15:34:43  kernel: ata3: SError: { Dispar }

 Dispar? And googling, every reference I find to that word always has
 something else there.

 System's running 5.11. Filesystem's xfs.

 Any thoughts?

>>>
>>> Please check your SATA data cable first, I have similar experience
>>> where something was wrong with the cable and it started to give
>>> DRDY errors. When I put that disk into another machine then
>>> it was working fine without any problem.
>>
>> It's something to consider... but I can't do that easily. This is a
>> server that's been running for years, and is in use, and it's a
>> hot-swap bay.
>
> Then it also could be caused by a micro crack on a backplane.

It was working fine before I put in the 3TB drive earlier this year, and I
haven't had any trouble at all with it until yesterday, when I started
copying a lot of data to a not-much-used disk.

  mark

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


Re: [CentOS] Virtualization

2015-06-16 Thread Jonathan Billings
On Tue, Jun 16, 2015 at 06:50:27PM +0200, Alessandro Baggi wrote:
> What do you think about Proxmox VE?

It appears to just be an interface that runs on top of KVM and
OpenVZ.

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


Re: [CentOS] gvim current directory

2015-06-16 Thread Jonathan Billings
On Tue, Jun 16, 2015 at 11:56:58AM -0500, Michael Hennebry wrote:
> When I gvim a file from gnome,
> gvim's working directory is always my home directory.
> [snip]
> I am looking for a way to give gvim the correct working directory.
> Is this a gnome thing?

No, it's not a GNOME thing.  I assume you're opening up gvim from a
menu?  Then your current working directory is $HOME.  That's the way
unix/linux works when you start a program and your CWD is $HOME.  The
graphical interface has a CWD of $HOME, so anything it forks will
too. 

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


Re: [CentOS] NUX Skype for Linux

2015-06-16 Thread m . roth
Sorin Srbu wrote:
>> -Original Message-
>> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
>> Behalf Of James B. Byrne
>> Sent: den 16 juni 2015 14:55
>> To: centos@centos.org
>> Subject: [CentOS] NUX Skype for Linux
>>
>> I had cause to install the Skype for Linux package from the NUX repo.
>> I discover that this package is configured to automatically start
>> Skype whenever one logs on to the Gnome desktop.  This behaviour I do
>> not wish.  However, there seems to be no option in Skype to turn that
>> 'feature' off. Is there any way to disable this in Gnome or elsewhere?
>>
>> I will be removing Skype shortly when the present need for it passes
>> but I do not wish this thing automatically starting in the meantime.
>
> You can't do this?
>
> "Go to Tools -> Options -> General settings. Uncheck the option "Start
> Skype
> when I start Windows". Save and Quit Skype. Next time you reboot Windows,
> Skype will not start with Windows"

You *are* joking, right?

   mark

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


Re: [CentOS] using rsync to sync desktop /home/user of to laptop /home/user

2015-06-16 Thread g

Antonio, thank you for reply.

On 06/16/2015 12:22 PM, Antonio S. Martins Jr. wrote:
> - "g"  escreveu:
<<>>

>> greetings,
>>
>> i want to sync my desktop home directory to my laptop home 
>> directory. i am using KDE for desktop.
>>
>> a problem that i foresee is the different screens between the 2.
>>
>> i synced using;
>>
>> rsync -a -u -v -e ssh /home/geo geo@192.168.1.5:/home/geo.new
>>
>> with intent of in laptop's /home;
>>
>> mv geo geo.org mv geo.new geo
>>
>> what files and directories in 'org' directory need to be copied to
>> the 'new' directory so that i will maintain screen setup in 
>> laptop?
>>
>
> Hi,
>
> I'm using unison (http://www.cis.upenn.edu/~bcpierce/unison/) to do
> this.  It can sync in both ways if files are changed on both sides
> between syncs.

i did not recognize the site, but when i connected to it and started
to bookmark it, i saw that i already had it bookmarked.

in checking, i found that it was from 2009-0514-09:08 pm when i ran
a search for backup and recovery sites.

i pulled the docs and tar file to check out later.

> And, IMHO it's better to filter out the directories that contain
> configuration for the systems, or better, sync only the documents and
> other pertinent files.

i agree, and i have already started writing scripts for both desktop
and laptop to sync just the common, _non_unique_ directories and files.

so, back to my original question, worded differently.

what directories and files should not be copied so that configs for
desktop/laptop do not corrupt configs for laptop/desktop screen?

i am presuming that '.KDE' is one of them, and what else?

i can got thru all directories and files, which would take time and
is what i am wanting to avoid. call me lazy. ;-)


-- 

peace out.

--
If Bill Gates got a dime for every time Windows crashes...
 ...oh, wait. He does. THAT explains it!
--
in a world with out fences, who needs gates.
--

CentOS GNU/Linux 6.6

tc,hago.

g
.

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


Re: [CentOS] using rsync to sync desktop /home/user of to laptop /home/user

2015-06-16 Thread Jonathan Billings
On Tue, Jun 16, 2015 at 02:44:43PM -0500, g wrote:
> what directories and files should not be copied so that configs for
> desktop/laptop do not corrupt configs for laptop/desktop screen?

Maybe you need to be clearer.  The screen's configuration is not
really configured in your home directory, but by X (although these
days it's all autoprobed).

Are you talking about what icons appear?  The configuration for KDE? 

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


Re: [CentOS] Drive problem

2015-06-16 Thread Valeri Galtsev

On Tue, June 16, 2015 1:23 pm, m.r...@5-cent.us wrote:
> Valeri Galtsev wrote:
>>
>> On Tue, June 16, 2015 7:11 am, mark wrote:
>>> On 06/16/15 07:59, Ashish Yadav wrote:
 Hi,

 On Tue, Jun 16, 2015 at 2:26 AM,  wrote:

> I was rsync'ing data from one system to another, and the recipient
> suddenly started throwing DRDY errors. Now, it's a fairly new WD Red
> 3TB, and I'd think it was just a bad drive... but I'm really
> confused by this, from the logs:
> Jun 15 15:34:43  kernel: ata3: SError: { Dispar }
>
> Dispar? And googling, every reference I find to that word always has
> something else there.
>
> System's running 5.11. Filesystem's xfs.
>
> Any thoughts?
>

 Please check your SATA data cable first, I have similar experience
 where something was wrong with the cable and it started to give
 DRDY errors. When I put that disk into another machine then
 it was working fine without any problem.
>>>
>>> It's something to consider... but I can't do that easily. This is a
>>> server that's been running for years, and is in use, and it's a
>>> hot-swap bay.
>>
>> Then it also could be caused by a micro crack on a backplane.
>
> It was working fine before I put in the 3TB drive earlier this year, and I
> haven't had any trouble at all with it until yesterday, when I started
> copying a lot of data to a not-much-used disk.
>

Then I would agree, cable is much more like reason than (microcrack in)
backplane. Cable may have just marginally insufficient bandwidth, whereas
microcrack effect is usually (but not always) "more fatal".

Does drive plug in into connector nice and smoothly, and tray moves into
hotswap bay smoothly? When you plug the drive, you usually can feel when
connector plugs in, and drive usually moved further in more than 1/16 of
an inch (or more than 2 mm). This is usually sufficient for good
connection.

How about sticking drive into different machine and trying to mount
filesystem there? Any Linux workstation you have around may do.

The last of wild guesses: could it be that the PS of the box in question
is marginally insufficient in power? This tends to show up on machines
that run well for years even if you didn't change anything, and the reason
maybe one of two: electrolytic capacitor loose to some extent their
capacitance with age, and hard drive with age start drawing more power.
Could your new big drive push your box in that direction?

Good luck!

Valeri


Valeri Galtsev
Sr System Administrator
Department of Astronomy and Astrophysics
Kavli Institute for Cosmological Physics
University of Chicago
Phone: 773-702-4247

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


Re: [CentOS] Virtualization

2015-06-16 Thread Alexander Dalloz

Am 16.06.2015 um 18:50 schrieb Alessandro Baggi:

What do you think about Proxmox VE?


Please don't top-post with fully quoting all previous content. This is a 
mailinglist.


Proxmox VE is based on Debian. What does this have to do with CentOS? As 
it makes use of KVM you can run CentOS on top of it as a virtualization 
guest.


Alexander


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


Re: [CentOS] Virtualization

2015-06-16 Thread Rafeal Stewart
On Tue, Jun 16, 2015 at 11:06:20PM +0200, Alexander Dalloz wrote:
> Am 16.06.2015 um 18:50 schrieb Alessandro Baggi:
> >What do you think about Proxmox VE?
> 
> Please don't top-post with fully quoting all previous content. This is a
> mailinglist.
> 
> Proxmox VE is based on Debian. What does this have to do with CentOS? As it
> makes use of KVM you can run CentOS on top of it as a virtualization guest.
> 
> Alexander
> 
> 
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos

Proxmox is is debian based, but has a really good web based user
interface. I use it to host my CentOS VMs and containers. I would be
aware that it uses 2.6.32 and I have run into hardware issues. (Mainly
issues realtek ethernet adapters, I suggest using Intel adapters)

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


[CentOS] PXE question

2015-06-16 Thread isdtor
I was wondering, where is the format and options of files like
/usr/share/system-config-netboot/pxelinux.cfg/default from
system-config-netboot-cmd described? There are plenty of PXE tutorials
with examples out there, but nothing that looks like actual
documentation.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] How can I get .xsession-errors back?

2015-06-16 Thread Kay Schenk
I did some research and see a LOT of folks would love to get rid of
their .xsession-errors file and I'm in the opposite situation -- where
is mine? Do I have to install or enable something special to get this back.

All my users are starting X with startx and the default .xinitrc. Is
this the problem?
-- 

MzK

"We can all sleep easy at night knowing that
 somewhere at any given time,
 the Foo Fighters are out there fighting Foo."
  -- David Letterman
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] using rsync to sync desktop /home/user of to laptop /home/user

2015-06-16 Thread g

thank you for replying Johanthan.

On 06/16/2015 02:52 PM, Jonathan Billings wrote:
> On Tue, Jun 16, 2015 at 02:44:43PM -0500, g wrote:
>> what directories and files should not be copied so that configs for
>> desktop/laptop do not corrupt configs for laptop/desktop screen?
>
> Maybe you need to be clearer.  The screen's configuration is not
> really configured in your home directory, but by X (although these
> days it's all autoprobed).
>
> Are you talking about what icons appear?  The configuration for KDE?
.
also, thank you for kicking my chemo brain in the butt. ;-)

yes, i forgot about X being the wise and wondrous now.

iirc, there used to be a file under /etc/X11 that had specs for
keyboard, mouse, graphics card, monitor, language, etc, that one
could make custom changes to if needed. several years back that
got changed with auto probe. yes/no?

therefore, my only real concern would be for progs like firefox,
thunderbird and what else that is not standard with distrib, and
have special files in /lib, /lib64, etc. y/n?

as for icons and KDE configs, icons should be same as they are
under /usr/share and i do want to have same/similar desktop window
settings.

long story to short, just try it. y/n?


-- 

peace out.

--
If Bill Gates got a dime for every time Windows crashes...
 ...oh, wait. He does. THAT explains it!
--
in a world with out fences, who needs gates.
--

CentOS GNU/Linux 6.6

tc,hago.

g
.

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


Re: [CentOS] PXE question

2015-06-16 Thread Bruce Ferrell
On 06/16/2015 03:32 PM, isdtor wrote:
> I was wondering, where is the format and options of files like
> /usr/share/system-config-netboot/pxelinux.cfg/default from
> system-config-netboot-cmd described? There are plenty of PXE tutorials
> with examples out there, but nothing that looks like actual
> documentation.
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>
I have a fairly complex pxe configuration... Multi-distro/OS  Here is my centos 
pxelinux.cfg/default:

# Centos 3.9
label centos3
  kernel centos/3.9/vmlinuz
  append initrd=centos/3.9/initrd.img ramdisk_size=10 text ks=http:///ks.cfg

# Centos 4.8
label centos4
  kernel centos/4.8/vmlinuz
  append initrd=centos/4.8/initrd.img ramdisk_size=10 text rescue 
ks=http:///ks4.cfg

# Centos 5.5
label centos4
  kernel centos/5.5/vmlinuz
  append initrd=centos/5.5/initrd.img ramdisk_size=10 text ks=http:///ks5.cfg

# Centos 6.4
label centos6
  kernel centos/6.4/64/vmlinuz
  append initrd=centos/6.4/64/initrd.img ramdisk_size=10 text 
ks=http:///ks/ks6-64.cfg
#  append initrd=centos/6.4/64/initrd.img ramdisk_size=10 text 

My kickstart is loaded via http, so you also have to configure the web server 
to be able to serve that as well.  The path for the kernel and initrd is 
relative to the root of the
tftp server.  In my case /tftpboot contains

centos//<32|64>/

with the appropriate kernel and initrd

The real "trick" is building menus.  That is quite poorly documented

Let me know if you need more help.

hope it helps
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] CentOS 7 + Dell Latitude E6420 laptop = thermal shutdown

2015-06-16 Thread deoren

On 6/15/2015 2:04 PM, Jim Perrin wrote:

> I use a dell e6420 as my daily laptop/workstation. It stays docked and
> on 24/7 while at home, often running multiple vms or docker containers.
> I've not experienced what you have described. The laptop does get a
> little warm during certain video conference meetings, I do not have any
> thermal shutdown events. I would check for fan function and speed, then
> firmware for possible related updates.
> 
> If it helps, my specifics are (according to dmidecode):
> 
> BIOS Information
> Vendor: Dell Inc.
> Version: A19
> Release Date: 06/24/2013
> System Information
> Manufacturer: Dell Inc.
> Product Name: Latitude E6420
> Version: 01
> Base Board Information
> Manufacturer: Dell Inc.
> Product Name: 032T9K
> Version: A01

Thanks for that. I have the laptop running now and am logged into a
virtual console.

dmidecode details for my laptop:

BIOS Information
Vendor: Dell Inc.
Version: A21
Release Date: 11/14/2013

System Information
Manufacturer: Dell Inc.
Product Name: Latitude E6420
Version: 01

Base Board Information
Manufacturer: Dell Inc.
Product Name: 032T9K
Version: A02

I might try downgrading the BIOS version to see if that helps. I don't
know that I've tried doing that with Dell's utility before, but I'll
give it a shot.

I setup a short loop to append the output of /usr/bin/sensors to a log
file and then call 'sync' just after.

This is the last entry just before the system shut down:

> acpitz-virtual-0
> Adapter: Virtual device
> temp1:+25.0°C  (crit = +107.0°C)
> 
> nouveau-pci-0100
> Adapter: PCI adapter
> temp1:N/A  (high = +95.0°C, hyst =  +3.0°C)
>(crit = +105.0°C, hyst =  +5.0°C)
>(emerg = +135.0°C, hyst =  +5.0°C)
> 
> coretemp-isa-
> Adapter: ISA adapter
> Physical id 0:  +46.0°C  (high = +86.0°C, crit = +100.0°C)
> Core 0: +46.0°C  (high = +86.0°C, crit = +100.0°C)
> Core 1: +42.0°C  (high = +86.0°C, crit = +100.0°C)

and this is the first entry just before I logged in:

> acpitz-virtual-0
> Adapter: Virtual device
> temp1:+25.0°C  (crit = +107.0°C)
> 
> nouveau-pci-0100
> Adapter: PCI adapter
> temp1:N/A  (high = +95.0°C, hyst =  +3.0°C)
>(crit = +105.0°C, hyst =  +5.0°C)
>(emerg = +135.0°C, hyst =  +5.0°C)
> 
> coretemp-isa-
> Adapter: ISA adapter
> Physical id 0:  +40.0°C  (high = +86.0°C, crit = +100.0°C)
> Core 0: +40.0°C  (high = +86.0°C, crit = +100.0°C)
> Core 1: +39.0°C  (high = +86.0°C, crit = +100.0°C)


Looks like the system is a bit warm, but not overly so? So far I've not
figured out how to check the fan speed. I'll keep looking.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] CentOS 7 + Dell Latitude E6420 laptop = thermalshutdown

2015-06-16 Thread Jason Pyeron
> -Original Message-
> From: deoren
> Sent: Tuesday, June 16, 2015 9:26 PM
> 
> 
> On 6/15/2015 2:04 PM, Jim Perrin wrote:
> 
> > I use a dell e6420 as my daily laptop/workstation. It stays 
> docked and 
> > on 24/7 while at home, often running multiple vms or docker 
> containers.
> > I've not experienced what you have described. The laptop does get a 
> > little warm during certain video conference meetings, I do not have 
> > any thermal shutdown events. I would check for fan function 

The most common issue with E6 series laptops is dust/lint/hair in the fan
grill.

The bios fan control is based on an efficient extraction of heat, but a
small amount of lint will keep it heatsink warmer longer.


> I might try downgrading the BIOS version to see if that 
> helps. I don't know that I've tried doing that with Dell's 
> utility before, but I'll give it a shot.
> 
> I setup a short loop to append the output of /usr/bin/sensors 
> to a log file and then call 'sync' just after.
> 
> This is the last entry just before the system shut down:
> 
> > acpitz-virtual-0
> > Adapter: Virtual device
> > temp1:+25.0°C  (crit = +107.0°C)
> > 
> > nouveau-pci-0100
> > Adapter: PCI adapter
> > temp1:N/A  (high = +95.0°C, hyst =  +3.0°C)
> >(crit = +105.0°C, hyst =  +5.0°C)
> >(emerg = +135.0°C, hyst =  +5.0°C)
> > 
> > coretemp-isa-
> > Adapter: ISA adapter
> > Physical id 0:  +46.0°C  (high = +86.0°C, crit = +100.0°C)
> > Core 0: +46.0°C  (high = +86.0°C, crit = +100.0°C)
> > Core 1: +42.0°C  (high = +86.0°C, crit = +100.0°C)
> 
> and this is the first entry just before I logged in:
> 
> > acpitz-virtual-0
> > Adapter: Virtual device
> > temp1:+25.0°C  (crit = +107.0°C)
> > 
> > nouveau-pci-0100
> > Adapter: PCI adapter
> > temp1:N/A  (high = +95.0°C, hyst =  +3.0°C)
> >(crit = +105.0°C, hyst =  +5.0°C)
> >(emerg = +135.0°C, hyst =  +5.0°C)
> > 
> > coretemp-isa-
> > Adapter: ISA adapter
> > Physical id 0:  +40.0°C  (high = +86.0°C, crit = +100.0°C)
> > Core 0: +40.0°C  (high = +86.0°C, crit = +100.0°C)
> > Core 1: +39.0°C  (high = +86.0°C, crit = +100.0°C)
> 
> 
> Looks like the system is a bit warm, but not overly so? So 
> far I've not figured out how to check the fan speed. I'll 
> keep looking.

That is the tell tail sign, as it is not cool when under low to no load.

Force the fan to high (dell diagnostic CD or other program) should be strong
(moves an empty paper coffee cup) cold air blowing.

-Jason 

--
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-   -
- Jason Pyeron  PD Inc. http://www.pdinc.us -
- Principal Consultant  10 West 24th Street #100-
- +1 (443) 269-1555 x333Baltimore, Maryland 21218   -
-   -
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 

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


Re: [CentOS] CentOS 7 + Dell Latitude E6420 laptop = thermalshutdown

2015-06-16 Thread deoren

On 6/16/2015 8:40 PM, Jason Pyeron wrote:
>> -Original Message-
>> From: deoren
>> Sent: Tuesday, June 16, 2015 9:26 PM
>>
>> Looks like the system is a bit warm, but not overly so? So 
>> far I've not figured out how to check the fan speed. I'll 
>> keep looking.
> 
> That is the tell tail sign, as it is not cool when under low to no load.
> 
> Force the fan to high (dell diagnostic CD or other program) should be strong
> (moves an empty paper coffee cup) cold air blowing.
> 
> -Jason 

Good tip, thanks.

I tried using the onboard Dell diagnostics and it shows that the current
Processor Fan speed is about 2906 RPMs. It _did_ click loudly once and
then appeared to pick back up. Attempts to run the test aren't yielding
any high spin up/down noises like I'm used to hearing from other systems.

Current thermal readings (inside of the diagnostics screen):

CPU Thermistor: 65C
Ambient Thermistor: 27 C
SODIMM Thermistor: 39 C
Video Thermistor: 54 C

Back on the topic of the diagnostics, I'm running a CPU stress test and
the CPU Thermistor has grown to 69 C.

After some time the fan speed has finally increased to 3257 RPM and I
can finally clearly hear that it is spinning. Once the test completed
and the CPU temp started dropping, so did the fan speed, finally
settling back to about 2900 RPM.

I'm still puzzled why the laptop appears to lockup when attempting to
login to the desktop environment when using CentOS, but not Ubuntu
15.04. Any thoughts there?

Back on the topic of CentOS, I ran 'watch /usr/bin/sensors' for about 20
minutes and the temp only slightly fluctuated. It was only the login
attempt that shut down the system.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] NUX Skype for Linux

2015-06-16 Thread Sorin Srbu
> -Original Message-
> From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
> Behalf Of m.r...@5-cent.us
> Sent: den 16 juni 2015 20:59
> To: CentOS mailing list
> Subject: Re: [CentOS] NUX Skype for Linux
>
> >> I had cause to install the Skype for Linux package from the NUX repo.
> >> I discover that this package is configured to automatically start
> >> Skype whenever one logs on to the Gnome desktop.  This behaviour I do
> >> not wish.  However, there seems to be no option in Skype to turn that
> >> 'feature' off. Is there any way to disable this in Gnome or elsewhere?
> >>
> >> I will be removing Skype shortly when the present need for it passes
> >> but I do not wish this thing automatically starting in the meantime.
> >
> > You can't do this?
> >
> > "Go to Tools -> Options -> General settings. Uncheck the option "Start
> > Skype
> > when I start Windows". Save and Quit Skype. Next time you reboot Windows,
> > Skype will not start with Windows"
>
> You *are* joking, right?

No, not really.
Aren't the GUI's the same irrespective of the OS?

I copy-pasted the setting steps to not have Skype autostart from a 
Windows-centric page, and I'm assuming the GUI, and should therefore be the 
same.

If it'll make you feel better, please replace all instances of "Windows" above 
with "CentOS". ;-)

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


Re: [CentOS] Virtualization

2015-06-16 Thread Alessandro Baggi


Please don't top-post with fully quoting all previous content. This is a
mailinglist.

Proxmox VE is based on Debian. What does this have to do with CentOS? As
it makes use of KVM you can run CentOS on top of it as a virtualization
guest.

Alexander


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



Also ESX(i) is not CentOS related but is included in this post.


And what about oVirt?


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