Re: [CentOS] Alternative to laptop

2019-07-10 Thread Jose I Diaz Bardales



On 7/10/19 2:52 AM, H wrote:

I am considering buying a small, and therefore easily portable, computer as an 
alternative to the laptop I already have. Obviously it would not have battery, 
a screen, nor a keyboard etc. but more or less be an easily portable computing 
unit to move between offices where a keyboard and monitor(s) could then be 
connected. I want to run CentOS 7, later CentOS 8.

The smaller, the better, however, there are certain key features I would like 
to have:

- HDMI for 2 monitors

- USB for keyboard

- 2 extra USB for eg external harddisk etc.

- both wifi and at least Gb Ethernet cable connector

Probably at least 16 Gb of memory, capability to drive two high-resolution 
monitors and whatever else might be nice such as SSD of at least 256 Gb.

Size wise it would be nice if it were no larger than a "book", whatever size 
that might be.

Does anyone use something like the above, or know of a computer meeting the 
above criteria?


https://www.dell.com/en-us/work/shop/desktop-and-all-in-one-pcs/new-optiplex-3070-micro/spd/optiplex-3070-micro/s010o3070mffus?ref=p13n_system_pdp_eol=us=04=en=bsd
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Scope of classes in CFE 3.10.2 on CentOS 7

2019-07-10 Thread Alexander Dalloz

Am 10.07.2019 um 18:07 schrieb Meikel:


# cat /etc/redhat-release
CentOS Linux release 7.4.1708 (Core)


Any good reason to not keep that system up to date? Minor release 7.4 is 
pretty old and has serious bugs. 7.6.1810 is current.


Alexander

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


Re: [CentOS] screen shot centos 7

2019-07-10 Thread Jonathan Billings
On Wed, Jul 10, 2019 at 10:17:07AM -0400, Jerry Geis wrote:
>
> So I found a "-debug all" option... Its talking about "cache" for a screen
> shot.
> Not sure why a screen shot would ever be cached - Not sure if this is what
> I'm running into some how???

The 'Configure, ' Resource', 'Cache' column in the output of '-debug
all' are the 'domain' of the log events.  ImageMagick has a lot of
complicated internal moving parts, and one of them is for caching data
structures between parts.  Those lines that mention Cache are just the
log events corresponding to the Cache domain.  Its not really
something you should concern yourself with unless you're debugging
ImageMagick. 

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


[CentOS] Scope of classes in CFE 3.10.2 on CentOS 7

2019-07-10 Thread Meikel

Hi folks,

I have a question concerning scope of classes in CFEngine 3. I run CFE 
3.10.2 on CentOS 7.4.


# cf-agent -V
CFEngine Core 3.10.2

# cat /etc/redhat-release
CentOS Linux release 7.4.1708 (Core)

I'm logged in as root and located in current working dir /root. I have 
the following file


# ll ./samples/scope_of_class.cf
-rwx--. 1 root root 720 10. Jul 16:33 ./samples/scope_of_class.cf

with content

BEGIN--
bundle agent scope_of_class()
{

  vars:
any::
  "web_servers" slist => {
"ws-1.example.com",
"ws-2.example.com",
"webserver.example.com",
  };

  methods:
any::
  "scope_of_class_b1" usebundle => scope_of_class_b1( 
$(scope_of_class.web_servers) );


}

bundle agent scope_of_class_b1( server )
{

  classes:
any::
  "is_dir"
expression => isdir( "/tmp/scope_of_class/$(server)" ),
scope => "bundle";

  reports:
is_dir::
  "is_dir is SET";
!is_dir::
  "is_dir is UNset";
any::
  "server = $(server)";

}
END

From my understanding the scope "bundle" is default for a class 
definition inside a bundle of type agent, but I added the scope to be 
sure. The definition of class is_dir should depend on directories 
existing inside /tmp/scope_of_class. I have two subdirectories


# ls -1 /tmp/scope_of_class/
webserver.example.com
ws-1.example.com

but when I run CFE I do NOT get expected behaviour for the definition of 
class is_dir:


# cf-agent -IK --file ./samples/scope_of_class.cf --bundlesequence 
scope_of_class

info: Using command line specified bundlesequence
R: is_dir is SET
R: server = ws-1.example.com
R: is_dir is UNset
R: server = ws-2.example.com
R: server = webserver.example.com

When the bundle scope_of_class_b1 is processed for parameter 
webserver.example.com I expect is_dir to bet set, but from the report it 
seems not to be set.


If I change the slist definition to hold "webserver.example.com" as the 
first entry, then the class is_dir is set correctly:


# grep slist ./samples/scope_of_class.cf -A 4
  "web_servers" slist => {
"webserver.example.com",
"ws-1.example.com",
"ws-2.example.com",
  };
# cf-agent -IK --file ./samples/scope_of_class.cf --bundlesequence 
scope_of_class

info: Using command line specified bundlesequence
R: is_dir is SET
R: server = webserver.example.com
R: server = ws-1.example.com
R: is_dir is UNset
R: server = ws-2.example.com

It also works "correct" (or as expected by me) if "ws-2.example.com" is 
first entry in the slist definition:


# grep slist ./samples/scope_of_class.cf -A 4
  "web_servers" slist => {
"ws-2.example.com",
"ws-1.example.com",
"webserver.example.com",
  };
# cf-agent -IK --file ./samples/scope_of_class.cf --bundlesequence 
scope_of_class

info: Using command line specified bundlesequence
R: is_dir is UNset
R: server = ws-2.example.com
R: is_dir is SET
R: server = ws-1.example.com
R: server = webserver.example.com

I do not understand why the ordering inside slist influences how the 
class is_dir will be defined later by CFE for each processing of 
scope_of_class_b1.


Some background information: my aim is to create webserver vhost 
configuration files where I have two variants, one with SSL 
configuration and one without SSL configuration. Which one to configure 
depends if the directory with the SSL certificate exists for a given 
vhost or not. I'll replace the report promise type by a file promise 
type, which should bring the correct vhost configuration file in place, 
assumed that I understand how the scope of the class definition works.


Thanks in advance for any help or explanation of that behaviour.

Regards,

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


Re: [CentOS] screen shot centos 7

2019-07-10 Thread Jerry Geis
So I found a "-debug all" option... Its talking about "cache" for a screen
shot.
Not sure why a screen shot would ever be cached - Not sure if this is what
I'm running into some how???

/usr/bin/import -debug all -silent -window root screen.png

2019-07-10T09:13:36-05:00 0:00.000 0.010u 6.7.8 Configure import[17048]:
utility.c/ExpandFilenames/939/Configure
  Command line: /usr/bin/import {-debug} {all} {-silent} {-window} {root}
{screen.png}
2019-07-10T09:13:36-05:00 0:00.090 0.090u 6.7.8 Resource import[17048]:
resource.c/AcquireMagickResource/262/Resource
  Area: 16.59MB/16.59MB/3.6975GB
2019-07-10T09:13:36-05:00 0:00.090 0.090u 6.7.8 Resource import[17048]:
resource.c/AcquireMagickResource/262/Resource
  Memory: 16.59MB/15.82MiB/1.7218GiB
2019-07-10T09:13:36-05:00 0:00.090 0.090u 6.7.8 Cache import[17048]:
cache.c/OpenPixelCache/4052/Cache
  open [0] (heap memory, 1920x1080 15.82MiB)
2019-07-10T09:13:36-05:00 0:00.370 0.330u 6.7.8 Resource import[17048]:
resource.c/AcquireMagickResource/262/Resource
  Area: 16.59MB/16.59MB/3.6975GB
2019-07-10T09:13:36-05:00 0:00.370 0.330u 6.7.8 Resource import[17048]:
resource.c/AcquireMagickResource/262/Resource
  Memory: 16.59MB/31.64MiB/1.7218GiB
2019-07-10T09:13:36-05:00 0:00.370 0.330u 6.7.8 Cache import[17048]:
cache.c/OpenPixelCache/4052/Cache
  open [0] (heap memory, 1920x1080 15.82MiB)

2019-07-10T09:13:37-05:00 0:00.630 0.600u 6.7.8 Cache import[17048]:
cache.c/DestroyPixelCache/1448/Cache
  destroy [0]
2019-07-10T09:14:33-05:00 0:56.440 0.620u 6.7.8 Resource import[17048]:
resource.c/RelinquishMagickResource/811/Resource
  Memory: 16.59MB/15.82MiB/1.7218GiB
2019-07-10T09:14:33-05:00 0:56.540 0.670u 6.7.8 Resource import[17048]:
resource.c/AcquireMagickResource/262/Resource
  Area: 16.59MB/16.59MB/3.6975GB
2019-07-10T09:14:33-05:00 0:56.540 0.670u 6.7.8 Resource import[17048]:
resource.c/AcquireMagickResource/262/Resource
  Memory: 16.59MB/31.64MiB/1.7218GiB
2019-07-10T09:14:33-05:00 0:56.540 0.670u 6.7.8 Cache import[17048]:
cache.c/OpenPixelCache/4052/Cache
  open [0] (heap memory, 1920x1080 15.82MiB)
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


[CentOS] screen shot centos 7

2019-07-10 Thread Jerry Geis
HI All,

I have some remote computers - at times I issue commands to take screen
shots.
I use xwd -silent -root or import -silent -window root  to do so.
It seems at times the screen capture is the actual current content.
It might be a previous displayed item etc...

Anyone ran across this or thoughts ?

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


Re: [CentOS] Roughly how many more months before CentOS 8.0 release?

2019-07-10 Thread Jonathan Billings
On Wed, Jul 10, 2019 at 06:18:26AM +, Turritopsis Dohrnii Teo En Ming wrote:
> May I know roughly how many more months before CentOS 8.0 will be released?
> 
> https://wiki.centos.org/About/Building_8

It'll be done when it's ready.  You've got the correct site to keep an
eye on the status of the project.

If you want to start working on EL8, I suggest getting a Developers
Subscription and use the one free license to build a test system with
RHEL8. 

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


[CentOS] CentOS-announce Digest, Vol 173, Issue 4

2019-07-10 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
https://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. CentOS, Red Hat, and IBM (Rich Bowen)


--

Message: 1
Date: Tue, 9 Jul 2019 10:47:33 -0400
From: Rich Bowen 
To: CentOS mailing list , "The CentOS developers
mailing list." , centos-annou...@centos.org
Subject: [CentOS-announce] CentOS, Red Hat, and IBM
Message-ID: 
Content-Type: text/plain; charset=utf-8; format=flowed

CentOS community,

Today marks a new day in the 26-year history of Red Hat. IBM has 
finalized its acquisition of Red Hat 
(https://www.redhat.com/en/about/press-releases/ibm-closes-landmark-acquisition-red-hat-34-billion-defines-open-hybrid-cloud-future)
 
which will operate as a distinct unit within IBM moving forward.

What does this mean for Red Hat?s contributions to the CentOS project?

In short, nothing.

Red Hat always has and will continue to be a champion for open source 
and projects like CentOS. IBM is committed to Red Hat?s independence and 
role in open source software communities so that we can continue this 
work without interruption or changes.

Our mission, governance, and objectives remain the same. We will 
continue to execute the existing project roadmap. Red Hat associates 
will continue to contribute to the upstream in the same ways they have 
been. And, as always, we will continue to help upstream projects be 
successful and contribute to welcoming new members and maintaining the 
project.

We will do this together, with the community, as we always have.

If you have questions or would like to learn more about today?s news, I 
encourage you to review the list of materials below. Red Hat CTO Chris 
Wright will host an online Q session in the coming days where you can 
ask questions you may have about what the acquisition means for Red Hat 
and our involvement in open source communities. Details will be 
announced on the Red Hat blog - https://www.redhat.com/en/blog

Press release - 
https://www.redhat.com/en/about/press-releases/ibm-closes-landmark-acquisition-red-hat-34-billion-defines-open-hybrid-cloud-future

Chris Wright blog - Red Hat and IBM: Accelerating the adoption of open 
source - 
https://www.redhat.com/en/blog/red-hat-and-ibm-accelerating-adoption-open-source

FAQ on Red Hat Community Blog - 
https://community.redhat.com/blog/2019/07/faq-for-communities/


-- 
Rich Bowen - rbo...@redhat.com - CentOS Community Manager
@CentOSProject // @rbowen



--

Subject: Digest Footer

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


--

End of CentOS-announce Digest, Vol 173, Issue 4
***
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Alternative to laptop

2019-07-10 Thread nux

Another NUC alternative:
https://www.gigabyte.com/uk/Mini-PcBarebone


On 2019-07-10 12:14, Mike wrote:

https://www.asrock.com/nettop/index.asp

Asrock has a series of Intel and/or AMD based mini-pc's called the 
DeskMini.

Competes in the Intel NUC space.
Plenty of power and up-to-date components, multiple ports for dual
monitor and at least two ssd's, etc.
I don't work for Asrock or sell their equipment.


On Wed, Jul 10, 2019 at 2:52 AM H  wrote:


I am considering buying a small, and therefore easily portable, 
computer as an alternative to the laptop I already have. Obviously it 
would not have battery, a screen, nor a keyboard etc. but more or less 
be an easily portable computing unit to move between offices where a 
keyboard and monitor(s) could then be connected. I want to run CentOS 
7, later CentOS 8.


The smaller, the better, however, there are certain key features I 
would like to have:


- HDMI for 2 monitors

- USB for keyboard

- 2 extra USB for eg external harddisk etc.

- both wifi and at least Gb Ethernet cable connector

Probably at least 16 Gb of memory, capability to drive two 
high-resolution monitors and whatever else might be nice such as SSD 
of at least 256 Gb.


Size wise it would be nice if it were no larger than a "book", 
whatever size that might be.


Does anyone use something like the above, or know of a computer 
meeting the above criteria?


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

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

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


Re: [CentOS] CentOS 7 hibernation laptop

2019-07-10 Thread H
On 06/04/2019 01:01 AM, anax wrote:
> You may try using this page:
>
> https://www.kernel.org/doc/Documentation/power/basic-pm-debugging.txt
>
> suomi
>
> On 03/06/2019 17.54, H wrote:
>> I have a recent Dell Inspiron laptop on which I installed CentOS 7. I have, 
>> however, failed somewhere since I do not have a hibernate option when 
>> shutting down, only a suspend option. I believe I created the necessary 
>> hibernation partition large enough for the RAM the machine has, 16 Gb if I 
>> remember correctly.
>>
>> How do I identify where the problem lies?
>>
>> ___
>> 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

Did not have a chance to try the first suggestion on that page until today:

1. Testing hibernation (aka suspend to disk or STD)

To check if hibernation works, you can try to hibernate in the "reboot" mode:

# echo reboot > /sys/power/disk
# echo disk > /sys/power/state

However, even though I am root, the system complains:

-bash: echo: write error: Operation not permitted

Any suggestion on how to find the cause of this message?

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


Re: [CentOS] Alternative to laptop

2019-07-10 Thread Mike
https://www.asrock.com/nettop/index.asp

Asrock has a series of Intel and/or AMD based mini-pc's called the DeskMini.
Competes in the Intel NUC space.
Plenty of power and up-to-date components, multiple ports for dual
monitor and at least two ssd's, etc.
I don't work for Asrock or sell their equipment.


On Wed, Jul 10, 2019 at 2:52 AM H  wrote:
>
> I am considering buying a small, and therefore easily portable, computer as 
> an alternative to the laptop I already have. Obviously it would not have 
> battery, a screen, nor a keyboard etc. but more or less be an easily portable 
> computing unit to move between offices where a keyboard and monitor(s) could 
> then be connected. I want to run CentOS 7, later CentOS 8.
>
> The smaller, the better, however, there are certain key features I would like 
> to have:
>
> - HDMI for 2 monitors
>
> - USB for keyboard
>
> - 2 extra USB for eg external harddisk etc.
>
> - both wifi and at least Gb Ethernet cable connector
>
> Probably at least 16 Gb of memory, capability to drive two high-resolution 
> monitors and whatever else might be nice such as SSD of at least 256 Gb.
>
> Size wise it would be nice if it were no larger than a "book", whatever size 
> that might be.
>
> Does anyone use something like the above, or know of a computer meeting the 
> above criteria?
>
> ___
> 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] Alternative to laptop

2019-07-10 Thread John Pierce
On Tue, Jul 9, 2019 at 11:55 PM Earl A Ramirez 
wrote:

> On Wed, 10 Jul 2019, 01:52 H,  wrote:
>
> > I am considering buying a small, and therefore easily portable, computer
> > as an alternative to the laptop I already have. Obviously it would not
> have
> > battery, a screen, nor a keyboard etc. but more or less be an easily
> > portable computing unit to move between offices where a keyboard and
> > monitor(s) could then be connected. I want to run CentOS 7, later CentOS
> 8.
> >
>
> At the top of my head I think the Intel NUC meets your expectations.



a NUC is a compact low power desktop.but it still needs a screen and a
keyboard/mouse, etc.


I use a 8" highres tablet running android for my ultra-portable
applications ...  Its been awhile since I"ve needed more in hte field.


My current Huawei M3 tablet runs SkySafari Pro nicely with the maximum
database and doesn't crash if a few more apps are active.  high res 8"
screen suits me perfectly for my star charts



>
>


-- 
-john r pierce
  recycling used bits in santa cruz
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Alternative to laptop

2019-07-10 Thread Earl A Ramirez
On Wed, 10 Jul 2019, 01:52 H,  wrote:

> I am considering buying a small, and therefore easily portable, computer
> as an alternative to the laptop I already have. Obviously it would not have
> battery, a screen, nor a keyboard etc. but more or less be an easily
> portable computing unit to move between offices where a keyboard and
> monitor(s) could then be connected. I want to run CentOS 7, later CentOS 8.
>
> The smaller, the better, however, there are certain key features I would
> like to have:
>
> - HDMI for 2 monitors
>
> - USB for keyboard
>
> - 2 extra USB for eg external harddisk etc.
>
> - both wifi and at least Gb Ethernet cable connector
>
> Probably at least 16 Gb of memory, capability to drive two high-resolution
> monitors and whatever else might be nice such as SSD of at least 256 Gb.
>
> Size wise it would be nice if it were no larger than a "book", whatever
> size that might be.
>
> Does anyone use something like the above, or know of a computer meeting
> the above criteria?
>
> ___
> CentOS mailing list
> CentOS@centos.org
> https://lists.centos.org/mailman/listinfo/centos


At the top of my head I think the Intel NUC meets your expectations.

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


[CentOS] Alternative to laptop

2019-07-10 Thread H
I am considering buying a small, and therefore easily portable, computer as an 
alternative to the laptop I already have. Obviously it would not have battery, 
a screen, nor a keyboard etc. but more or less be an easily portable computing 
unit to move between offices where a keyboard and monitor(s) could then be 
connected. I want to run CentOS 7, later CentOS 8.

The smaller, the better, however, there are certain key features I would like 
to have:

- HDMI for 2 monitors

- USB for keyboard

- 2 extra USB for eg external harddisk etc.

- both wifi and at least Gb Ethernet cable connector

Probably at least 16 Gb of memory, capability to drive two high-resolution 
monitors and whatever else might be nice such as SSD of at least 256 Gb.

Size wise it would be nice if it were no larger than a "book", whatever size 
that might be.

Does anyone use something like the above, or know of a computer meeting the 
above criteria?

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


[CentOS] Roughly how many more months before CentOS 8.0 release?

2019-07-10 Thread Turritopsis Dohrnii Teo En Ming
Good afternoon from Singapore,

May I know roughly how many more months before CentOS 8.0 will be released?

https://wiki.centos.org/About/Building_8

Thank you very much.






-BEGIN EMAIL SIGNATURE-

The Gospel for all Targeted Individuals (TIs):

[The New York Times] Microwave Weapons Are Prime Suspect in Ills of
U.S. Embassy Workers

Link: 
https://www.nytimes.com/2018/09/01/science/sonic-attack-cuba-microwave.html



Singaporean Mr. Turritopsis Dohrnii Teo En Ming's Academic
Qualifications as at 14 Feb 2019

[1] https://tdtemcerts.wordpress.com/

[2] https://tdtemcerts.blogspot.sg/

[3] https://www.scribd.com/user/270125049/Teo-En-Ming

-END EMAIL SIGNATURE-

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