<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>openSUSE Planet - Global</title>
    <link>https://planet.opensuse.org/global/</link>
    <description>Planet openSUSE site providing newest news from the openSUSE Project</description>
    <atom:link href="https://planet.opensuse.org/global/rss20.xml" rel="self" type="application/rss+xml"/>
    <atom:link href="https://planet.opensuse.org/global/atom.xml" type="application/atom+xml"/>

    <item>
      <guid isPermaLink="true">https://foursixnine.io//blog/linux/tech/qualityassurance/openqa/2024/01/25/testingkernelswithsporadicissuesuntilheisenbugshowsinopenqa</guid>
      <dc:creator>Santiago Zarate</dc:creator>
      <title>Testing kernels with sporadic issues until heisenbug shows in openQA</title>
      <pubDate>Thu, 25 Jan 2024 00:00:00 +0000</pubDate>
      <link>https://foursixnine.io//blog/linux/tech/qualityassurance/openqa/2024/01/25/testingkernelswithsporadicissuesuntilheisenbugshowsinopenqa.html</link>
      <description>&lt;p&gt;This is a follow up to my previous post about &lt;a href=&quot;/blog/linux/tech/qualityassurance/2021/06/18/How-to-test-things-with-openQA-without-running-your-own-instance&quot;&gt;How to test things with openQA without running your own instance&lt;/a&gt;, so you might want to read that first.&lt;/p&gt;

&lt;p&gt;Now, while hunting for &lt;a href=&quot;https://bugzilla.suse.com/show_bug.cgi?id=1219073&quot;&gt;bsc#1219073&lt;/a&gt; which is quite sporadic, and took quite some time to show up often enough so that
became noticeable and traceable, once stars aligned and managed to find a way to get a higher failure rate,
I wanted to have a way for me and for the developer to test the kernel with the different patches to help with the bisecting
and ease the process of finding the culprit and finding a solution for it.&lt;/p&gt;

&lt;p&gt;I came with a fairly simple solution, using the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;--repeat&lt;/code&gt; parameter of the openqa-cli tool, and a simple shell script to run it:&lt;/p&gt;
&lt;div class=&quot;language-bash highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;sb&quot;&gt;```&lt;/span&gt;bash
&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;cat&lt;/span&gt; ~/Downloads/trigger-kernel-openqa-mdadm.sh
&lt;span class=&quot;c&quot;&gt;# the kernel repo must be the one without https; tests don&apos;t have the kernel CA installed&lt;/span&gt;
&lt;span class=&quot;nv&quot;&gt;KERNEL&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;KOTD_REPO=http://download.opensuse.org/repositories/Kernel:/linux-next/standard/&quot;&lt;/span&gt;

&lt;span class=&quot;nv&quot;&gt;REPEAT&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;--repeat 100&quot;&lt;/span&gt; &lt;span class=&quot;c&quot;&gt;# using 100 by default&lt;/span&gt;
&lt;span class=&quot;nv&quot;&gt;JOBS&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;https://openqa.your.instan.ce/tests/13311283 https://openqa.your.instan.ce/tests/13311263 https://openqa.your.instan.ce/tests/13311276 https://openqa.your.instan.ce/tests/13311278&quot;&lt;/span&gt;
&lt;span class=&quot;nv&quot;&gt;BUILD&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;bsc1219073&quot;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for &lt;/span&gt;JOB &lt;span class=&quot;k&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;$JOBS&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;do 
	&lt;/span&gt;openqa-clone-job &lt;span class=&quot;nt&quot;&gt;--within-instance&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;$JOB&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;CASEDIR&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;https://github.com/foursixnine/os-autoinst-distri-opensuse.git#tellmewhy &lt;span class=&quot;k&quot;&gt;$&amp;#123;&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;REPEAT&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;&amp;#125;&lt;/span&gt; &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
		&lt;span class=&quot;nv&quot;&gt;_GROUP&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;DEVELOPERS &lt;span class=&quot;k&quot;&gt;$&amp;#123;&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;KERNEL&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;&amp;#125;&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;BUILD&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;$&amp;#123;&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;BUILD&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;&amp;#125;&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;FORCE_SERIAL_TERMINAL&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;1&lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
		&lt;span class=&quot;nv&quot;&gt;TEST&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;$&amp;#123;&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;BUILD&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;&amp;#125;&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;_checkmdadm&quot;&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;YAML_SCHEDULE&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;schedule/qam/QR/15-SP5/textmode/textmode-skip-registration-extra.yaml &lt;span class=&quot;nv&quot;&gt;INSTALLONLY&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;0 &lt;span class=&quot;nv&quot;&gt;DESKTOP&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;textmode&lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
		|&amp;amp; &lt;span class=&quot;nb&quot;&gt;tee &lt;/span&gt;jobs-launched.list&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;done&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;There are few things to note here:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;the kernel repo must be the one without https; tests don’t have the CA installed by default.&lt;/li&gt;
  &lt;li&gt;the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;--repeat&lt;/code&gt; parameter is set to 100 by default, but can be changed to whatever number is desired.&lt;/li&gt;
  &lt;li&gt;the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;JOBS&lt;/code&gt; variable contains the list of jobs to clone and run, having all supported architecures is recommended (at least for this case)&lt;/li&gt;
  &lt;li&gt;the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;BUILD&lt;/code&gt; variable can be anything, but it’s recommended to use the bug number or something that makes sense.&lt;/li&gt;
  &lt;li&gt;the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;TEST&lt;/code&gt; variable is used to set the name of the test as it will show in the test overview page, you can use &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;TEST+=foo&lt;/code&gt; if you want to append text instead of overriding it, the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;--repeat&lt;/code&gt; parameter, will append a number incrementally to your test, see &lt;a href=&quot;https://github.com/os-autoinst/openQA/pull/5331&quot;&gt;os-autoinst/openQA#5331&lt;/a&gt; for more details.&lt;/li&gt;
  &lt;li&gt;the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;YAML_SCHEDULE&lt;/code&gt; variable is used to set the yaml schedule to use, there are other ways to modify the schedule, but in this case I want to perform a full installation&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;running-the-script&quot;&gt;Running the script&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;Ensure you can run at least the openQA client; if you need API keys, see post linked at the beginning of this post&lt;/li&gt;
  &lt;li&gt;replace the kernel repo with your branch in line 5&lt;/li&gt;
  &lt;li&gt;run the script &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;$ bash trigger-kernel-openqa-mdadm.sh&lt;/code&gt; and you should get the following, times the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;--repeat&lt;/code&gt; if you modified it&lt;/li&gt;
&lt;/ul&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;1 job has been created:
 - sle-15-SP5-Full-QR-x86_64-Build134.5-skip_registration+workaround_modules@64bit -&amp;gt; https://openqa.your.instan.ce/tests/13345270
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Each URL, will be a job triggered in openQA, depending on the load and amount of jobs, you might need to wait quite a bit (some users can help moving the priority of these jobs so it executes faster)&lt;/p&gt;

&lt;h2 id=&quot;the-review-stuff&quot;&gt;The review stuff:&lt;/h2&gt;

&lt;h3 id=&quot;looking-at-the-results&quot;&gt;Looking at the results&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;Go to https://openqa.your.instan.ce/tests/overview?distri=sle&amp;amp;build=bsc1219073&amp;amp;version=15-SP5 or from any job from the list above click on &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Job groups&lt;/code&gt; menu at the top, and select &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Build bsc1219073&lt;/code&gt;
&lt;/li&gt;
  &lt;li&gt;Click on “Filter”&lt;/li&gt;
  &lt;li&gt;type the name of the test module to filter in the field &lt;em&gt;Module name&lt;/em&gt;, e.g &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;mdadm&lt;/code&gt;, and select the desired result of such test module e.g &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;failed&lt;/code&gt; (you can also type, and select multiple result types)&lt;/li&gt;
  &lt;li&gt;Click Apply&lt;/li&gt;
  &lt;li&gt;The overall summary of the build overview page, will provide you with enough information to calculate the pass/fail rate.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A rule of thumb: anything above 5% is bad, but you need to also understand your sample size + the setup you’re using; YMMV.&lt;/p&gt;

&lt;h3 id=&quot;aint-nobody-got-time-to-wait&quot;&gt;Ain’t nobody got time to wait&lt;/h3&gt;

&lt;p&gt;The script will generate a file called: &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;jobs-launched.list&lt;/code&gt;, in case you absolutely need to change the priority of the jobs, set it to 45, so it runs higher than default priority, which is 50
&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;cat jobs-launched.list | grep https | sed -E &apos;s/^.*-&amp;gt;\s.*tests\///&apos; | xargs -r -I &amp;#123;&amp;#125; bash -c &quot;openqa-cli api --osd -X POST jobs/&amp;#123;&amp;#125;/prio prio=45; sleep 1&quot;&lt;/code&gt;&lt;/p&gt;

&lt;h2 id=&quot;the-magic&quot;&gt;The magic&lt;/h2&gt;

&lt;p&gt;The actual magic is in the schedule, so right after booting the system and setting it up, before running the mdadm test, I inserted the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;update_kernel&lt;/code&gt; module, which will add the kernel repo specified by KOTD_REPO, and install the kernel from there, reboot the system, and leave the system ready for the actual test,
however I had to add very small changes:&lt;/p&gt;

&lt;div class=&quot;language-diff highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;p&quot;&gt;---
&lt;/span&gt; tests/kernel/update_kernel.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/kernel/update_kernel.pm b/tests/kernel/update_kernel.pm
&lt;span class=&quot;gh&quot;&gt;index 1d6312bee0dc..048da593f68f 100644
&lt;/span&gt;&lt;span class=&quot;gd&quot;&gt;--- a/tests/kernel/update_kernel.pm
&lt;/span&gt;&lt;span class=&quot;gi&quot;&gt;+++ b/tests/kernel/update_kernel.pm
&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;@@ -398,7 +398,7 @@&lt;/span&gt; sub boot_to_console &amp;#123;
 sub run &amp;#123;
     my $self = shift;
 
&lt;span class=&quot;gd&quot;&gt;-    if ((is_ipmi &amp;amp;&amp;amp; get_var(&apos;LTP_BAREMETAL&apos;)) || is_transactional) &amp;#123;
&lt;/span&gt;&lt;span class=&quot;gi&quot;&gt;+    if ((is_ipmi &amp;amp;&amp;amp; get_var(&apos;LTP_BAREMETAL&apos;)) || is_transactional || get_var(&apos;FORCE_SERIAL_TERMINAL&apos;)) &amp;#123;
&lt;/span&gt;         # System is already booted after installation, just switch terminal
         select_serial_terminal;
     &amp;#125; else &amp;#123;
&lt;span class=&quot;p&quot;&gt;@@ -476,7 +476,7 @@&lt;/span&gt; sub run &amp;#123;
         reboot_on_changes;
     &amp;#125; elsif (!get_var(&apos;KGRAFT&apos;)) &amp;#123;
         power_action(&apos;reboot&apos;, textmode =&amp;gt; 1);
&lt;span class=&quot;gd&quot;&gt;-        $self-&amp;gt;wait_boot if get_var(&apos;LTP_BAREMETAL&apos;);
&lt;/span&gt;&lt;span class=&quot;gi&quot;&gt;+        $self-&amp;gt;wait_boot if (get_var(&apos;FORCE_SERIAL_TERMINAL&apos;) || get_var(&apos;LTP_BAREMETAL&apos;));
&lt;/span&gt;     &amp;#125;
 &amp;#125;
 
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Likely I’ll make a new pull request to have this in the test distribution, but for now this is good enough to help kernel developers
to do some self-service and trigger their own openQA tests, that have many more tests (hopefully in parallel) and faster than if there
was a person doing all of this manually.&lt;/p&gt;

&lt;p&gt;Special thanks to the QE Kernel team, who do the amazing job of thinking of some scenarios like this, because they save a lot
of time.&lt;/p&gt;</description>
    </item>

    <item>
      <guid isPermaLink="true">https://openbuildservice.org/2024/01/25/revamping-the-build-status-page-and-introducing-the-dark-mode//</guid>
      <dc:creator>Open Build Service</dc:creator>
      <title>Revamping the Request Build Status Page and Introducing the Dark Mode</title>
      <pubDate>Thu, 25 Jan 2024 00:00:00 +0000</pubDate>
      <link>https://openbuildservice.org/2024/01/25/revamping-the-build-status-page-and-introducing-the-dark-mode//</link>
      <description>The beginning of the year has started strong in OBS. We are glad to be back to you in a new year with a blog post full of interesting updates, most of them improving our Request page. Take a seat, a fresh breath, and enjoy! We started the redesign of the request workflow in August 2022. Then, in September 2022, we focused on the support of multi-action submit requests. We continued in October 2022 with...</description>
    </item>

    <item>
      <guid isPermaLink="true">http://assuntonerd.com.br/?p=8290</guid>
      <dc:creator>Alessandro de Oliveira Faria</dc:creator>
      <title>OpenVINO 2023.3 lançado!</title>
      <pubDate>Thu, 25 Jan 2024 20:24:41 +0000</pubDate>
      <link>https://assuntonerd.com.br/2024/01/25/openvino-2023-3-lancado/</link>
      <description>&lt;figure class=&quot;wp-block-image size-large&quot;&gt;&lt;a href=&quot;https://cabelovivaolinux.files.wordpress.com/2024/01/image-11.png&quot;&gt;&lt;img width=&quot;1024&quot; height=&quot;379&quot; data-attachment-id=&quot;8291&quot; data-permalink=&quot;https://assuntonerd.com.br/2024/01/25/openvino-2023-3-lancado/image-11-7/&quot; data-orig-file=&quot;https://cabelovivaolinux.files.wordpress.com/2024/01/image-11.png&quot; data-orig-size=&quot;1280,474&quot; data-comments-opened=&quot;1&quot; data-image-meta=&apos;&amp;#123;&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;&amp;#125;&apos; data-image-title=&quot;image-11&quot; data-image-description=&quot;&quot; data-image-caption=&quot;&quot; data-medium-file=&quot;https://cabelovivaolinux.files.wordpress.com/2024/01/image-11.png?w=300&quot; data-large-file=&quot;https://cabelovivaolinux.files.wordpress.com/2024/01/image-11.png?w=604&quot; src=&quot;//cabelovivaolinux.files.wordpress.com/2024/01/image-11.png?w=1024&quot; alt=&quot;&quot; class=&quot;wp-image-8291&quot; srcset=&quot;https://cabelovivaolinux.files.wordpress.com/2024/01/image-11.png?w=1024 1024w, https://cabelovivaolinux.files.wordpress.com/2024/01/image-11.png?w=150 150w, https://cabelovivaolinux.files.wordpress.com/2024/01/image-11.png?w=300 300w, https://cabelovivaolinux.files.wordpress.com/2024/01/image-11.png?w=768 768w, https://cabelovivaolinux.files.wordpress.com/2024/01/image-11.png 1280w&quot; sizes=&quot;(max-width: 1024px) 100vw, 1024px&quot;&gt;&lt;/a&gt;&lt;/figure&gt;



&lt;p&gt;Em breve a minha imagem Linux batizada como JAX (Just Artificial Intelligence Extended),  será uma distribuição baseada no openSUSE com IA pré-instalada para rodar em computadores modestos. Nesta imagem teremos recursos para utilizar a computação heterogênea com NVIDIA, Intel e futuros hardwares, e grande parte da mágica esta na tecnologia openVINO.&lt;/p&gt;



&lt;p class=&quot;has-text-align-justify&quot;&gt;&lt;strong&gt;OpenVINO&lt;img src=&quot;//s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/2122.png&quot; alt=&quot;™&quot; class=&quot;wp-smiley&quot; style=&quot;height: 1em; max-height: 1em;&quot;&gt; &lt;/strong&gt;é uma sigla para “Open Visual Inference and Neural Network Optimization”. É uma plataforma de software livre da Intel que foi projetada para facilitar o desenvolvimento e a implantação de aplicações de inteligência artificial (IA), com foco em otimizar inferência de visão computacional e deep learning em uma variedade de dispositivos Intel. O objetivo do OpenVINO é permitir que os desenvolvedores acelerem suas aplicações de IA, otimizando para o hardware Intel, incluindo CPUs, GPUs integradas, FPGAs (Field Programmable Gate Arrays) e VPU (Unidades de Processamento Visual), como as Intel Movidius Neural Compute Sticks.&lt;/p&gt;



&lt;p&gt;O software fornece uma série de ferramentas e pré-otimizações que visam melhorar o desempenho e a &lt;strong&gt;eficiência energética dos algoritmos de &lt;/strong&gt;IA, permitindo que trabalhem de forma mais eficaz em hardware da Intel. Ele suporta modelos de deep learning de frameworks populares como TensorFlow, PyTorch, Caffe, MXNet, entre outros, convertendo-os para o formato intermediário do OpenVINO (IR), que é otimizado para execução eficiente em hardware da Intel.&lt;/p&gt;



&lt;p class=&quot;has-text-align-justify&quot;&gt;A ideia é simplificar o processo de levar a IA do protótipo à solução final, reduzindo a necessidade de reescrever ou adaptar o código para cada tipo de hardware, permitindo assim que as aplicações tirem o máximo proveito da aceleração de hardware disponível.&lt;/p&gt;



&lt;p&gt;Key Highlights: More Gen AI coverage and frameworks integrations to minimize code changes: Torch.compile is now fully integrated with OpenVINO, which now includes a hardware ‘options’ parameter allowing for seamless inferencing hardware selection by leveraging OpenVINO plugin architecture. Introducing OpenVINO Gen AI repository on GitHub that demonstrates native C and C++ pipeline samples for LLMs. We’ve started supporting string tensors as inputs and tokenizers natively to reduce overhead and ease of production. New and noteworthy models supported or enhanced in this release: Qwen, chatGLM3, Mistral, Zephyr, LCM, and Distil-Whisper. Broader LLM model support and more model compression techniques: As part of the Neural Network Compression Framework (NNCF), Int4 weight compression model formats are now fully supported on Intel® Xeon® CPUs in addition to Intel® Core&lt;img src=&quot;//s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/2122.png&quot; alt=&quot;™&quot; class=&quot;wp-smiley&quot; style=&quot;height: 1em; max-height: 1em;&quot;&gt; and iGPU, adding more performance, lower memory usage, and accuracy opportunity when using LLMs. Improved performance of transformer based LLM on CPU using stateful model technique to increase memory efficiency where internal states are shared among multiple iterations of inference. Tokenizer and Torchvision transform support is now available in the OpenVINO runtime (via new API), requiring less preprocessing code and enhancing performance by automatically handling this model setup. More portability and performance to run AI at the edge, in the cloud or locally: Full support for 5th Generation Intel® Xeon® (codename Emerald Rapids), delivering on the AI everywhere promise. Further optimized performance on Intel® Core&lt;img src=&quot;//s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/2122.png&quot; alt=&quot;™&quot; class=&quot;wp-smiley&quot; style=&quot;height: 1em; max-height: 1em;&quot;&gt; Ultra (codename Meteor Lake) CPU with latency hint by leveraging both P-core and E-cores. Improved performance on ARM platforms with throughput hint by increasing efficiency in usage of the CPU cores and memory bandwidth. Preview JavaScript API to enable node JS development to access JavaScript binding via source code. Improved model serving of LLMs through OpenVINO Model Server. This not only enables LLM serving over KServe v2 gRPC and REST APIs for more flexibility but also improves throughput by running processing like tokenization on the server side.&lt;/p&gt;



&lt;h2 class=&quot;wp-block-heading&quot; id=&quot;ucj-11&quot;&gt;​Principais destaques: &lt;/h2&gt;



&lt;ul&gt;
&lt;li&gt;Maior cobertura com IA Generativa e integrações de estruturas para minimizar alterações de código:
&lt;ul&gt;
&lt;li&gt;Torch.compile agora está totalmente integrado ao OpenVINO, que agora inclui um parâmetro de ‘opções’ de hardware que permite uma seleção de hardware de inferência perfeita, aproveitando a arquitetura do plugin OpenVINO.&lt;/li&gt;



&lt;li&gt;Apresentando o repositório OpenVINO IA Generativa no GitHub que demonstra amostras de pipeline C e C++ nativos para LLMs. Começamos a oferecer suporte nativo a tensores de string como entradas e tokenizadores para reduzir a sobrecarga e facilitar a produção.&lt;/li&gt;



&lt;li&gt;Modelos novos e notáveis suportados ou aprimorados nesta versão: Qwen, chatGLM3, Mistral, Zephyr, LCM e Distil-Whisper.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;



&lt;li&gt;Suporte mais amplo ao modelo LLM e mais técnicas de compactação de modelo:
&lt;ul&gt;
&lt;li&gt;Como parte do Neural Network Compression Framework (NNCF), os formatos de modelo de compactação de peso Int4 agora são totalmente suportados em CPUs Intel® Xeon®, além de Intel® Core&lt;img src=&quot;//s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/2122.png&quot; alt=&quot;™&quot; class=&quot;wp-smiley&quot; style=&quot;height: 1em; max-height: 1em;&quot;&gt; e iGPU, adicionando mais desempenho, menor uso de memória e oportunidade de precisão ao usar LLMs.&lt;/li&gt;



&lt;li&gt;Melhor desempenho do LLM baseado em transformador na CPU usando técnica de modelo com estado para aumentar a eficiência da memória onde os estados internos são compartilhados entre múltiplas iterações de inferência.&lt;/li&gt;



&lt;li&gt;O suporte à transformação Tokenizer e Torchvision agora está disponível no tempo de execução OpenVINO (por meio da nova API), exigindo menos código de pré-processamento e melhorando o desempenho ao lidar automaticamente com a configuração deste modelo.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;



&lt;li&gt;Mais portabilidade e desempenho para executar IA na borda, na nuvem ou localmente:
&lt;ul&gt;
&lt;li&gt;Suporte total para Intel® Xeon® de 5ª geração (codinome Emerald Rapids), cumprindo a promessa de IA em todos os lugares.&lt;/li&gt;



&lt;li&gt;Desempenho ainda mais otimizado na CPU Intel® Core&lt;img src=&quot;//s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/2122.png&quot; alt=&quot;™&quot; class=&quot;wp-smiley&quot; style=&quot;height: 1em; max-height: 1em;&quot;&gt; Ultra (codinome Meteor Lake) com dica de latência, aproveitando os núcleos P e E.&lt;/li&gt;



&lt;li&gt;Melhor desempenho em plataformas ARM com dica de rendimento, aumentando a eficiência no uso dos núcleos da CPU e largura de banda da memória.&lt;/li&gt;



&lt;li&gt;Visualize a API JavaScript para permitir que o desenvolvimento JS do nó acesse a ligação JavaScript por meio do código-fonte.&lt;/li&gt;



&lt;li&gt;Atendimento de modelo aprimorado de LLMs por meio do OpenVINO Model Server. Isso não apenas permite a veiculação do LLM por meio de APIs REST e gRPC do KServe v2 para maior flexibilidade, mas também melhora o rendimento ao executar processamento como tokenização no lado do servidor.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;



&lt;p&gt;&lt;/p&gt;



&lt;p&gt;Mais informações no github: &lt;a href=&quot;https://github.com/openvinotoolkit/openvino&quot;&gt;https://github.com/openvinotoolkit/openvino&lt;/a&gt; &lt;br&gt;Página oficial: h&lt;a href=&quot;//docs.openvino.ai/2023.3/home.html&quot;&gt;ttps://docs.openvino.ai/2023.3/home.html&lt;/a&gt;&lt;br&gt;Instalação no openSUSE: &lt;a href=&quot;https://en.opensuse.org/SDB:Install_OpenVINO&quot;&gt;https://en.opensuse.org/SDB:Install_OpenVINO&lt;/a&gt;&lt;/p&gt;



&lt;figure class=&quot;wp-block-image size-large&quot;&gt;&lt;a href=&quot;https://cabelovivaolinux.files.wordpress.com/2024/01/image-12.png&quot;&gt;&lt;img width=&quot;1024&quot; height=&quot;768&quot; data-attachment-id=&quot;8302&quot; data-permalink=&quot;https://assuntonerd.com.br/2024/01/25/openvino-2023-3-lancado/image-12-4/&quot; data-orig-file=&quot;https://cabelovivaolinux.files.wordpress.com/2024/01/image-12.png&quot; data-orig-size=&quot;1024,768&quot; data-comments-opened=&quot;1&quot; data-image-meta=&apos;&amp;#123;&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;&amp;#125;&apos; data-image-title=&quot;image-12&quot; data-image-description=&quot;&quot; data-image-caption=&quot;&quot; data-medium-file=&quot;https://cabelovivaolinux.files.wordpress.com/2024/01/image-12.png?w=300&quot; data-large-file=&quot;https://cabelovivaolinux.files.wordpress.com/2024/01/image-12.png?w=604&quot; src=&quot;//cabelovivaolinux.files.wordpress.com/2024/01/image-12.png?w=1024&quot; alt=&quot;&quot; class=&quot;wp-image-8302&quot; srcset=&quot;https://cabelovivaolinux.files.wordpress.com/2024/01/image-12.png 1024w, https://cabelovivaolinux.files.wordpress.com/2024/01/image-12.png?w=150 150w, https://cabelovivaolinux.files.wordpress.com/2024/01/image-12.png?w=300 300w, https://cabelovivaolinux.files.wordpress.com/2024/01/image-12.png?w=768 768w&quot; sizes=&quot;(max-width: 1024px) 100vw, 1024px&quot;&gt;&lt;/a&gt;&lt;/figure&gt;</description>
    </item>

    <item>
      <guid isPermaLink="true">https://www.kdeblog.com/?p=45846</guid>
      <dc:creator>Baltasar Ortega</dc:creator>
      <title>Disponible KDE Neon Testing Edition con KDE 6 para su prueba</title>
      <pubDate>Thu, 25 Jan 2024 18:14:20 +0000</pubDate>
      <link>https://www.kdeblog.com/disponible-kde-neon-testing-edition-con-kde-6-para-su-prueba.html</link>
      <description>&lt;p class=&quot;has-text-align-center has-drop-cap has-pale-cyan-blue-background-color has-background&quot;&gt;&lt;strong&gt;Como he comentado, los desarrolladores de la Comunidad KDE están inmersos en un salto tecnológico que elevará a cotas superiores la excelencia de los productos KDE. Fruto de este movimiento se ha preparado un lanzamiento colectivo de Plasma 6, KDE Frameworks 6 y KDE Gear 24.02 para el 28 de febrero. A falta de un nombre mejor me he permitido bautizarlo como KDE 6, ya que utilizará tecnología de las librerías Qt 6. Es evidente que hay que preprarar bien las cosas y de esta forma hoy ha se ha anunciado que ya está disponible KDE Neon Testing Edition con KDE 6 para su prueba  Es el momento de testear esta versión y reportar los errores que se encuentren. ¡No pierdas la oportunidad de contribuir al desarrollo de Plasma!&lt;/strong&gt;&lt;/p&gt;



&lt;h2 class=&quot;wp-block-heading&quot;&gt;Disponible KDE Neon Testing Edition con KDE 6 para su prueba&lt;/h2&gt;



&lt;p&gt;Desde que probé KDE Neon en mis equipos no hay ninguna otra distribución (aunque ellos no quieran llamarla así) habitando en  mis equiopos. Sé que se actualiza mucho y que a veces, muy pocas, puede ponerse algo tonta.&lt;/p&gt;



&lt;p&gt;De hecho, mi transición a Plasma 6 se realizará cuando lo haga la distribución, con lo que considero muy importante la noticia de hoy ya que este 25 de enero ha sido anunciado que ya está disponible KDE Neon Testing Edition con KDE 6 ( es decir, de Plasma 6, KDE Frameworks 6 y KDE Gear 24.02). Este conjunto de software está previsto que sea lanzado el 28 de febrero de 2024. Esta primera versión liberada  &lt;strong&gt;no es apta todavía para el usuario que busquen estabilidad,&lt;/strong&gt; así que abstenerse usuarios finales si no queréis que se os rompa el sistema.&lt;/p&gt;



&lt;figure class=&quot;wp-block-image aligncenter size-full&quot;&gt;&lt;a href=&quot;https://www.kdeblog.com/wp-content/uploads/2023/10/Plasma6iscoming.jpg&quot;&gt;&lt;img fetchpriority=&quot;high&quot; decoding=&quot;async&quot; width=&quot;620&quot; height=&quot;475&quot; src=&quot;//www.kdeblog.com/wp-content/uploads/2023/10/Plasma6iscoming.jpg&quot; alt=&quot;Disponible KDE Neon Testing Edition con KDE 6 para su prueba&quot; class=&quot;wp-image-45154&quot; srcset=&quot;https://www.kdeblog.com/wp-content/uploads/2023/10/Plasma6iscoming.jpg 620w, https://www.kdeblog.com/wp-content/uploads/2023/10/Plasma6iscoming-300x230.jpg 300w&quot; sizes=&quot;(max-width: 620px) 100vw, 620px&quot;&gt;&lt;/a&gt;&lt;/figure&gt;



&lt;p&gt;En palabras de sus desarrolladores:&lt;/p&gt;



&lt;blockquote class=&quot;wp-block-quote has-text-align-center&quot;&gt;
&lt;p class=&quot;has-text-align-center&quot;&gt;KDE’s 6th Megarelease es el nombre que se nos ocurrió para el lanzamiento combinado de KDE Frameworks 6, Plasma 6 y el paquete de aplicaciones y librerías KDE Gear. Saldrá dentro de un mes y es la portabilidad de todas nuestras librerías y muchas de nuestras aplicaciones a Qt 6.&lt;/p&gt;



&lt;p class=&quot;has-text-align-center&quot;&gt;En principio, esto no hace ninguna diferencia para los usuarios finales, pero todavía nos gusta hacer algunas mejoras con esto y habrá nuevas características y viejos trastos eliminados lo que permite acelerar las nuevas características que vienen en breve. Pero primero hay que probarlo.&lt;/p&gt;



&lt;p class=&quot;has-text-align-center&quot;&gt; Así que descarga KDE neon Testing Edition que está construido con las ramas Git de los productos que pronto serán lanzados e instálalo en hardware si puedes o en algo como Virtualbox (ten en cuenta que en Virtualbox necesitas activar «Enable 3D Accelaration» en Display settings porque usa Wayland, también deberías activar «EFI Special OSes only» aunque sólo sea para sentirte especial).&lt;/p&gt;



&lt;figure class=&quot;wp-block-image size-full&quot;&gt;&lt;a href=&quot;https://www.kdeblog.com/wp-content/uploads/2024/01/Disponible-KDE-Neon-Testing-Edition-con-KDE-6-para-su-prueba.webp&quot;&gt;&lt;img decoding=&quot;async&quot; width=&quot;620&quot; height=&quot;386&quot; src=&quot;//www.kdeblog.com/wp-content/uploads/2024/01/Disponible-KDE-Neon-Testing-Edition-con-KDE-6-para-su-prueba.webp&quot; alt=&quot;Disponible KDE Neon Testing Edition con KDE 6 para su prueba&quot; class=&quot;wp-image-45849&quot; srcset=&quot;https://www.kdeblog.com/wp-content/uploads/2024/01/Disponible-KDE-Neon-Testing-Edition-con-KDE-6-para-su-prueba.webp 620w, https://www.kdeblog.com/wp-content/uploads/2024/01/Disponible-KDE-Neon-Testing-Edition-con-KDE-6-para-su-prueba-300x187.webp 300w&quot; sizes=&quot;(max-width: 620px) 100vw, 620px&quot;&gt;&lt;/a&gt;&lt;/figure&gt;



&lt;p&gt;Más información: &lt;a href=&quot;https://blog.neon.kde.org/2024/01/25/kdes-6th-megarelease-with-kde-neon-testing-edition/&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;KDE Neon&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;



&lt;h2 class=&quot;wp-block-heading&quot;&gt;Pruébalo y reporta errores&lt;/h2&gt;



&lt;figure class=&quot;wp-block-image alignleft wp-image-20961 size-medium&quot;&gt;&lt;img decoding=&quot;async&quot; width=&quot;258&quot; height=&quot;300&quot; src=&quot;//www.kdeblog.com/wp-content/uploads/2015/03/Como-reportar-errores-a-KDE-e1512197146439-258x300.jpg&quot; alt=&quot;Lanzada la beta de Plasma 5.26, con mejoras en Plasma Bigscreen&quot; class=&quot;wp-image-20961&quot; srcset=&quot;https://www.kdeblog.com/wp-content/uploads/2015/03/Como-reportar-errores-a-KDE-e1512197146439-258x300.jpg 258w, https://www.kdeblog.com/wp-content/uploads/2015/03/Como-reportar-errores-a-KDE-e1512197146439.jpg 279w&quot; sizes=&quot;(max-width: 258px) 100vw, 258px&quot;&gt;&lt;figcaption class=&quot;wp-element-caption&quot;&gt;Konqi siempre se encuentra dispuesto, con nuestra ayuda, a buscar bugs y solucionarlos.&lt;/figcaption&gt;&lt;/figure&gt;



&lt;p&gt;Todas las tareas dentro del mundo del Software Libre son importantes: desarrollar, traducir, empaquetar, diseñar, promocionar, etc. Pero hay una que se suele pasar por alto y de la que solo nos acordamos cuando las cosas no nos funcionan como debería: buscar errores.&lt;/p&gt;



&lt;p&gt;Desde el blog te animo a que &lt;strong&gt;tú seas una de las personas responsables del éxito del nuevo lanzamiento de la Comunidad KDE&lt;/strong&gt;. Para ello debes participar en la tarea de buscar y reportar errores, algo básico para que los desarrolladores los solucionen para que el despegue del escritorio esté bien pulido. Debéis pensar que en muchas ocasiones los errores existen porque no le han aparecido al grupo de desarrolladores ya que no se han dado las circunstancias para que lo hagan.&lt;/p&gt;



&lt;p&gt;Para ello debes &lt;strong&gt;instalarte esta RC y comunicar los errores que salgan en &lt;a href=&quot;https://bugs.kde.org/&quot;&gt;bugs.kde.org&lt;/a&gt;,&lt;/strong&gt; tal y como expliqué en su día &lt;a href=&quot;https://www.kdeblog.com/como-reportar-errores-a-kde.html&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;en esta entrada del blog&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;La entrada &lt;a href=&quot;https://www.kdeblog.com/disponible-kde-neon-testing-edition-con-kde-6-para-su-prueba.html&quot;&gt;Disponible KDE Neon Testing Edition con KDE 6 para su prueba&lt;/a&gt; se publicó primero en &lt;a href=&quot;https://www.kdeblog.com&quot;&gt;KDE Blog&lt;/a&gt;.&lt;/p&gt;</description>
    </item>

    <item>
      <guid isPermaLink="true">https://www.kdeblog.com/?p=45844</guid>
      <dc:creator>Baltasar Ortega</dc:creator>
      <title>Recordatorio – Colabora y gana una camiseta de KDE España Akademy-es de Málaga 2023 Opensouthcode Edition</title>
      <pubDate>Wed, 24 Jan 2024 18:50:53 +0000</pubDate>
      <link>https://www.kdeblog.com/recordatorio-colabora-y-gana-una-camiseta-de-kde-espana-akademy-es-de-malaga-2023-opensouthcode-edition.html</link>
      <description>&lt;p class=&quot;has-drop-cap has-pale-cyan-blue-background-color has-background&quot;&gt;En esta ocasión tengo muy fácil hacer esta entrada ya que básicamente es un copia y pega de la entrada que he hecho para la Asociación en la que anunciamos la iniciativa «Colabora y gana una camiseta de KDE España Akademy-es de Málaga 2023 Opensouthcode Edition». ¿Te interesa? Sigue leyendo.&lt;/p&gt;



&lt;h1 class=&quot;wp-block-heading&quot;&gt;Recordatorio – Colabora y gana una camiseta de KDE España Akademy-es de Málaga 2023 Opensouthcode Edition&lt;/h1&gt;



&lt;p id=&quot;block-a18f7996-a7ec-4f87-9b08-b57e83b58b86&quot;&gt;Tal y como podemos leer en la &lt;a href=&quot;https://www.kde-espana.org/colabora-y-gana-una-camiseta-de-kde-espana-akademy-es-de-malaga-2023&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;página web de KDE España&lt;/a&gt;:&lt;/p&gt;



&lt;blockquote class=&quot;wp-block-quote&quot;&gt;
&lt;p id=&quot;block-42abd9a3-24be-4c0c-902d-a73cd3d2208e&quot;&gt;¿Quieres ganar una camiseta conmemorativa de la última Akademy-es celebrada en Málaga? Pues lo tienes muy fácil.&lt;/p&gt;
&lt;/blockquote&gt;



&lt;figure class=&quot;wp-block-image aligncenter&quot; id=&quot;block-77fee3ed-2695-41ef-bede-b5b89ee504e2&quot;&gt;&lt;img decoding=&quot;async&quot; src=&quot;//www.kde-espana.org/wp-content/uploads/2023/12/photo_2023-06-02_16-24-30.jpg&quot; alt=&quot;Colabora y gana una camiseta de KDE España Akademy-es de Málaga 2023 Opensouthcode Edition&quot;&gt;&lt;/figure&gt;



&lt;blockquote class=&quot;wp-block-quote&quot;&gt;
&lt;p id=&quot;block-c432d6db-b5d0-4f73-b93e-b5150d1fa5bc&quot;&gt;Para conseguirla debes realizar alguna de las siguientes acciones:&lt;/p&gt;



&lt;ul id=&quot;block-b45d76a5-92d2-4636-a4c4-a1938f7472eb&quot;&gt;
&lt;li&gt;Conseguir traer a la asociación un nuevo socio (ver &lt;a href=&quot;https://www.kde-espana.org/involucrate&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;condiciones y proceso en este enlace&lt;/a&gt;)&lt;/li&gt;



&lt;li&gt;Resolver un bug de KDE (mira cómo se hace en &lt;a href=&quot;https://www.kdeblog.com/como-reportar-errores-a-kde.html&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;este artículo&lt;/a&gt;)&lt;/li&gt;



&lt;li&gt;Realizar 3 informes de bugs a partir de la publicación de estas bases hasta el lanzamiento de Plasma 6 (que será el 28 de febrero de 2024, mira como se hace en &lt;a href=&quot;https://www.kdeblog.com/como-reportar-errores-a-kde.html&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;este enlace&lt;/a&gt;)&lt;/li&gt;



&lt;li&gt;Escribir 3 artículos de calidad hablando de noticias de KDE en tu blog (más de 300 palabras, que sea original, etc.)&lt;/li&gt;



&lt;li&gt;Poner subtítulos a los vídeos de los podcast largos de KDE España o charlas de Akademy-es. (ponte en contacto con la asociación para conocer detalles )&lt;/li&gt;
&lt;/ul&gt;



&lt;p id=&quot;block-9814c643-725a-47c3-b3be-87bb97d63d7f&quot;&gt;&lt;strong&gt;Bases:&lt;/strong&gt;&lt;/p&gt;



&lt;ol id=&quot;block-217761be-6223-490c-8894-89ffaa6cec2c&quot;&gt;
&lt;li&gt;KDE España se reserva el derecho de dar por válidas las participaciones. &lt;/li&gt;



&lt;li&gt;Para dar fe se debe enviar un correo a junta@kde_espana.org donde se muestre que ha cumplido con los requisitos: capturas de pantalla, bug resuelto, enlaces, etc. &lt;/li&gt;



&lt;li&gt;En caso de que estos sean correctos nos pondremos en contacto contigo para pedirte los datos del envío de la camiseta.&lt;/li&gt;



&lt;li&gt;La promoción es válida hasta agotar existencias.&lt;/li&gt;



&lt;li&gt;Solo se puede ganar una camiseta por persona.&lt;/li&gt;
&lt;/ol&gt;
&lt;/blockquote&gt;



&lt;p id=&quot;block-febd2b29-52e1-4718-a958-b15534c0e5e7&quot;&gt;﻿&lt;/p&gt;



&lt;p id=&quot;block-08621101-7f89-4cab-80c3-0dea2555afe7&quot;&gt;Así que, no te lo pienses más y ponte manos a la obra ya que participando no solo puedes conseguir una camiseta sino que colaboras a que el Software Libre siga creciendo.&lt;/p&gt;



&lt;p id=&quot;block-4a0e3e98-c571-4da8-8502-13212545ab73&quot;&gt;﻿&lt;/p&gt;



&lt;h2 class=&quot;wp-block-heading&quot; id=&quot;block-de5bc919-9561-4086-8b5b-f63b984a8cba&quot;&gt;¿Qué es Akademy-es?&lt;/h2&gt;



&lt;p id=&quot;block-2d1aa7a4-bd36-4b96-b671-7312bcb0f595&quot;&gt;&lt;strong&gt;Akademy-es&lt;/strong&gt; (&lt;strong&gt;&lt;a href=&quot;https://twitter.com/search?q=%23akademyes&amp;amp;src=typd&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;#akademyes&lt;/a&gt;, &lt;/strong&gt;que es la etiqueta para las redes sociales) es evento más importante para los desarrolladores y simpatizantes de KDE, que se ha ido celebrando desde el 2006 con éxito creciente.&lt;/p&gt;



&lt;p id=&quot;block-e6d73ed0-55fe-4876-bef5-8c778ddf2de3&quot;&gt;En general, las &lt;strong&gt;Akademy-es son el lugar adecuado para conocer a los desarrolladores, diseñadores, traductores, usuarios y empresas  que mueven este gran proyecto&lt;/strong&gt;.&lt;/p&gt;



&lt;p id=&quot;block-7087972e-6ceb-4577-ac43-f382ad0b8619&quot;&gt;En ellas se realizan ponencias, se presentan programas, se hace un poco de caja para los proyectos libres (camisetas, chapas, etc) pero sobre todo se conoce a gente muy interesante y se cargan baterías para el futuro.&lt;/p&gt;
&lt;p&gt;La entrada &lt;a href=&quot;https://www.kdeblog.com/recordatorio-colabora-y-gana-una-camiseta-de-kde-espana-akademy-es-de-malaga-2023-opensouthcode-edition.html&quot;&gt;Recordatorio – Colabora y gana una camiseta de KDE España Akademy-es de Málaga 2023 Opensouthcode Edition&lt;/a&gt; se publicó primero en &lt;a href=&quot;https://www.kdeblog.com&quot;&gt;KDE Blog&lt;/a&gt;.&lt;/p&gt;</description>
    </item>

    <item>
      <guid isPermaLink="true">https://news.opensuse.org/2024/01/23/2024-01-23-cfh-osc/</guid>
      <dc:creator>openSUSE News</dc:creator>
      <title>The </title>
      <pubDate>Tue, 23 Jan 2024 07:00:05 +0000</pubDate>
      <link>https://news.opensuse.org/2024/01/23/2024-01-23-cfh-osc/</link>
      <description>&lt;p&gt;The &lt;a href=&quot;https://www.opensuse.org/&quot;&gt;openSUSE Project&lt;/a&gt; is asking interested people to submit a call for hosts for the openSUSE Conference 2025.&lt;/p&gt;

&lt;p&gt;This event is a cornerstone of the openSUSE community and aims to bring together a diverse group of users, developers and enthusiasts to share, learn and collaborate. The aim is not only to strengthen the existing community but also to welcome new members into the fold.&lt;/p&gt;

&lt;p&gt;Having the conference in different locations allows the project to be more accessible to people and can help with increasing awareness about the openSUSE Project and open source. While the project is unable to commit to a host being selected based on the project’s available funds, participants in the community encourage people/groups to provide a submission. This will let members of the community discover areas where the project can have a conference if funding allows it.&lt;/p&gt;

&lt;h3 id=&quot;what-we-are-looking-for&quot;&gt;What We Are Looking For&lt;/h3&gt;
&lt;p&gt;Hosting the openSUSE Conference is an opportunity to showcase your community and city. The project seeks passionate teams who can address the following key criteria in their submissions:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;New Attendees: Strategies to attract and engage new participants.&lt;/li&gt;
  &lt;li&gt;Accessibility: Ensuring the venue and events are accessible to all.&lt;/li&gt;
  &lt;li&gt;Community Involvement: Hosts must attend community meetings and provide regular updates if selected.&lt;/li&gt;
  &lt;li&gt;Cost Efficiency: Detailed budget plan showing the total cost to run the event.&lt;/li&gt;
  &lt;li&gt;Community Growth Goal: A plan to make the conference as successful as previous ones in gaining new members.&lt;/li&gt;
  &lt;li&gt;Engaging Educational Institutions: Technical universities and educational bodies willing to host an openSUSE Conference is an ideal demographic for a submission.&lt;/li&gt;
  &lt;li&gt;Bidding Process: Similar to the &lt;a href=&quot;https://wiki.debian.org/DebConf/25/Bids/&quot;&gt;Debian Conference Bidding Process&lt;/a&gt; proposals will be submitted via openSUSE Wiki pages. There is a potential that it can be followed by a community voting process.&lt;/li&gt;
  &lt;li&gt;Submission Period: Please refer to the openSUSE Conference wiki for detailed timeline and submission deadline.&lt;/li&gt;
  &lt;li&gt;Season Flexibility: The event can be planned for any season, allowing flexibility for the hosts.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;how-to-submit-your-proposal&quot;&gt;How to Submit Your Proposal&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;Prepare Your Proposal: Detailing how you’ll address the above criteria.&lt;/li&gt;
  &lt;li&gt;Submit on openSUSE Wiki: Create a dedicated page for your bid on the openSUSE Wiki and use the template provided at &lt;a href=&quot;https://en.opensuse.org/openSUSE:Call_for_hosts&quot;&gt;en.opensuse.org/openSUSE:Call_for_hosts&lt;/a&gt; to assist with developing the proposal.&lt;/li&gt;
  &lt;li&gt;Community Voting: The final selection will involve a voting process by the openSUSE community.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;why-host-the-opensuse-conference&quot;&gt;Why Host the openSUSE Conference?&lt;/h3&gt;
&lt;p&gt;Hosting the openSUSE Conference can spotlight your local community. It’s an opportunity to contribute to the growth of the project.&lt;/p&gt;

&lt;h3 id=&quot;more-information-and-submission-guidelines&quot;&gt;More Information and Submission Guidelines&lt;/h3&gt;
&lt;p&gt;Visit the &lt;a href=&quot;https://en.opensuse.org/openSUSE:Conference_How_to_Check_List&quot;&gt;conference checklist&lt;/a&gt; for more information on guidelines to help host an openSUSE Conference.&lt;/p&gt;

&lt;meta name=&quot;openSUSE, opensource, conference, call for hosts&quot; content=&quot;HTML,CSS,XML,JavaScript&quot;&gt;</description>
    </item>

    <item>
      <guid isPermaLink="true">https://peter.czanik.hu/other/syslog-ng-insider-2024-01-http-cloudflare-systemd-logscale/</guid>
      <dc:creator>Peter Czanik</dc:creator>
      <title>The syslog-ng Insider 2024-01: HTTP; Cloudflare; systemd-journal; Humio / Logscale;</title>
      <pubDate>Tue, 23 Jan 2024 14:36:31 +0000</pubDate>
      <link>https://peter.czanik.hu/other/syslog-ng-insider-2024-01-http-cloudflare-systemd-logscale/</link>
      <description>&lt;p&gt;The January syslog-ng newsletter is now on-line:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Why use a http()-based destination in syslog-ng?&lt;/li&gt;
&lt;li&gt;An overview of Cloudflare’s logging pipeline&lt;/li&gt;
&lt;li&gt;Working with multiple systemd-journal namespaces in syslog-ng&lt;/li&gt;
&lt;li&gt;Logging to Humio / Logscale simplified in syslog-ng&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It is available at &lt;a href=&quot;https://www.syslog-ng.com/community/b/blog/posts/the-syslog-ng-insider-2024-01-http-cloudflare-systemd-journal-humio-logscale&quot;&gt;https://www.syslog-ng.com/community/b/blog/posts/the-syslog-ng-insider-2024-01-http-cloudflare-systemd-journal-humio-logscale&lt;/a&gt;&lt;/p&gt;
&lt;figure&gt;&lt;img src=&quot;//peter.czanik.hu/images/syslog-ng-logo1.png&quot;&gt;&lt;figcaption&gt;
            &lt;h4&gt;syslog-ng logo&lt;/h4&gt;
        &lt;/figcaption&gt;
&lt;/figure&gt;</description>
    </item>

    <item>
      <guid isPermaLink="true">https://news.opensuse.org/2024/01/23/2024-01-23-cfh-osc/</guid>
      <dc:creator>openSUSE News</dc:creator>
      <title>The [openSUSE Project(https://www.</title>
      <pubDate>Tue, 23 Jan 2024 06:00:07 +0000</pubDate>
      <link>https://news.opensuse.org/2024/01/23/2024-01-23-cfh-osc/</link>
      <description>&lt;p&gt;The [openSUSE Project(https://www.opensuse.org/) is asking interested people to submit a call for hosts for the openSUSE Conference 2025. 
This event is a cornerstone of the openSUSE community and aims to bring together a diverse group of users, developers and enthusiasts to share, learn and collaborate. The aim is not only to strengthen the existing community but also to welcome new members into the fold.&lt;/p&gt;

&lt;p&gt;Having the conference in different locations allows the project to be more accessible to people and can help with increasing awareness about the openSUSE Project and open source. While the project is unable to commit to a host being selected based on the project’s available funds, participants in the community encourage people/groups to provide a submission. This will let members of the community discover areas where the project can have a conference if funding allows it.&lt;/p&gt;

&lt;h3 id=&quot;what-we-are-looking-for&quot;&gt;What We Are Looking For&lt;/h3&gt;
&lt;p&gt;Hosting the openSUSE Conference is an opportunity to showcase your community and city. The project seeks passionate teams who can address the following key criteria in their submissions:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;New Attendees: Strategies to attract and engage new participants.&lt;/li&gt;
  &lt;li&gt;Accessibility: Ensuring the venue and events are accessible to all.&lt;/li&gt;
  &lt;li&gt;Community Involvement: Hosts must attend community meetings and provide regular updates if selected.&lt;/li&gt;
  &lt;li&gt;Cost Efficiency: Detailed budget plan showing the total cost to run the event.&lt;/li&gt;
  &lt;li&gt;Community Growth Goal: A plan to make the conference as successful as previous ones in gaining new members.&lt;/li&gt;
  &lt;li&gt;Engaging Educational Institutions: Technical universities and educational bodies willing to host an openSUSE Conference is an ideal demographic for a submission.&lt;/li&gt;
  &lt;li&gt;Bidding Process: Similar to the &lt;a href=&quot;https://wiki.debian.org/DebConf/25/Bids/&quot;&gt;Debian Conference Bidding Process&lt;/a&gt; proposals will be submitted via openSUSE Wiki pages. There is a potential that it can be followed by a community voting process.&lt;/li&gt;
  &lt;li&gt;Submission Period: Please refer to the openSUSE Conference wiki for detailed timeline and submission deadline.&lt;/li&gt;
  &lt;li&gt;Season Flexibility: The event can be planned for any season, allowing flexibility for the hosts.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;how-to-submit-your-proposal&quot;&gt;How to Submit Your Proposal&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;Prepare Your Proposal: Detailing how you’ll address the above criteria.&lt;/li&gt;
  &lt;li&gt;Submit on openSUSE Wiki: Create a dedicated page for your bid on the openSUSE Wiki and use the template provided at &lt;a href=&quot;https://en.opensuse.org/openSUSE:Call_for_hosts&quot;&gt;en.opensuse.org/openSUSE:Call_for_hosts&lt;/a&gt; to assist with developing the proposal.&lt;/li&gt;
  &lt;li&gt;Community Voting: The final selection will involve a voting process by the openSUSE community.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;why-host-the-opensuse-conference&quot;&gt;Why Host the openSUSE Conference?&lt;/h3&gt;
&lt;p&gt;Hosting the openSUSE Conference can spotlight your local community. It’s an opportunity to contribute to the growth of the project.&lt;/p&gt;

&lt;h3 id=&quot;more-information-and-submission-guidelines&quot;&gt;More Information and Submission Guidelines&lt;/h3&gt;
&lt;p&gt;Visit the &lt;a href=&quot;https://en.opensuse.org/openSUSE:Conference_How_to_Check_List&quot;&gt;conference checklist&lt;/a&gt; for more information on guidelines to help host an openSUSE Conference.&lt;/p&gt;

&lt;meta name=&quot;openSUSE, opensource, conference, call for hosts&quot; content=&quot;HTML,CSS,XML,JavaScript&quot;&gt;</description>
    </item>

    <item>
      <guid isPermaLink="true">http://victorhckinthefreeworld.com/?p=16659</guid>
      <dc:creator>Victorhck</dc:creator>
      <title>Publicada una nueva versión del editor GNU Moe</title>
      <pubDate>Tue, 23 Jan 2024 10:42:00 +0000</pubDate>
      <link>https://victorhckinthefreeworld.com/2024/01/23/publicada-una-nueva-version-del-editor-gnu-moe/</link>
      <description>&lt;p&gt;&lt;strong&gt;Publicada la versión GNU Moe 1.14 de este editor de texto para la terminal&lt;/strong&gt;&lt;/p&gt;


&lt;div class=&quot;wp-block-image&quot;&gt;
&lt;figure class=&quot;aligncenter size-large&quot;&gt;&lt;img data-attachment-id=&quot;2450&quot; data-permalink=&quot;https://victorhckinthefreeworld.com/2013/06/06/fundacion-de-software-libre-recopilacion-de-noticias-de-mayo-2013/gnu/&quot; data-orig-file=&quot;https://victorhckinthefreeworld.files.wordpress.com/2013/06/gnu.png&quot; data-orig-size=&quot;200,196&quot; data-comments-opened=&quot;1&quot; data-image-meta=&apos;&amp;#123;&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;&amp;#125;&apos; data-image-title=&quot;GNU&quot; data-image-description=&quot;&quot; data-image-caption=&quot;&quot; data-medium-file=&quot;https://victorhckinthefreeworld.files.wordpress.com/2013/06/gnu.png?w=200&quot; data-large-file=&quot;https://victorhckinthefreeworld.files.wordpress.com/2013/06/gnu.png?w=200&quot; width=&quot;200&quot; height=&quot;196&quot; src=&quot;//victorhckinthefreeworld.files.wordpress.com/2013/06/gnu.png?w=200&quot; alt=&quot;&quot; class=&quot;wp-image-2450&quot; srcset=&quot;https://victorhckinthefreeworld.files.wordpress.com/2013/06/gnu.png 200w, https://victorhckinthefreeworld.files.wordpress.com/2013/06/gnu.png?w=150 150w&quot; sizes=&quot;(max-width: 200px) 100vw, 200px&quot;&gt;&lt;/figure&gt;
&lt;/div&gt;


&lt;p class=&quot;has-drop-cap&quot;&gt;GNU moe es un editor de texto que forma parte del &lt;strong&gt;&lt;a href=&quot;https://www.gnu.org/software/moe/moe_es.html&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;software GNU&lt;/a&gt;&lt;/strong&gt; y que ha publicado este 22 de enero de 2024 su &lt;strong&gt;&lt;a href=&quot;https://lists.gnu.org/archive/html/bug-moe/2024-01/msg00000.html&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;versión 1.14&lt;/a&gt;&lt;/strong&gt;. Después de casi un año desde la publicación de su anterior versión.&lt;/p&gt;



&lt;p&gt;&lt;strong&gt;Pero ¿Qué es GNU Moe?&lt;/strong&gt;&lt;/p&gt;



&lt;span id=&quot;more-16659&quot;&gt;&lt;/span&gt;



&lt;p&gt;GNU moe es un editor de texto sencillo (pero potente) para la terminal, similar a otros editores más conocidos como pueden ser &lt;strong&gt;&lt;a href=&quot;https://victorhckinthefreeworld.com/?s=nano&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;nano&lt;/a&gt;&lt;/strong&gt; o &lt;strong&gt;&lt;a href=&quot;https://victorhckinthefreeworld.com/2017/04/25/micro-un-editor-de-texto-para-la-terminal-simple-sencillo-y-efectivo/&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;micro&lt;/a&gt;&lt;/strong&gt; o en un ranking algo superior, &lt;strong&gt;&lt;a href=&quot;https://victorhckinthefreeworld.com/tag/vim/&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;Vim&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;



&lt;p&gt;GNU moe a diferencia de Vim, no es un editor modal. Es decir no dispone de modos de utilización del editor. Según abres un archivo en él podrás empezar a editar, añadir o quitar texto. &lt;strong&gt;Es un editor que lo que ves es lo que tienes y puedes editar texto fácilmente.&lt;/strong&gt;&lt;/p&gt;



&lt;p&gt;GNU moe dispone de un buen número de opciones y herramientas que se espera de un editor de texto. Todas esas herramientas se invocan mediante el uso de atajos de teclado utilizando las teclas &lt;code&gt;Alt&lt;/code&gt; , &lt;code&gt;Ctrl&lt;/code&gt; o &lt;code&gt;Tab&lt;/code&gt; del teclado combinadas con otras teclas.&lt;/p&gt;



&lt;p&gt;La tecla &lt;code&gt;Alt&lt;/code&gt; junto con las diferentes combinaciones de teclas, están reservadas para las acciones menos peligrosas a la hora de editar texto: moverte por el texto, marcar un texto, etc.&lt;/p&gt;



&lt;p&gt;La tecl &lt;code&gt;Ctrl&lt;/code&gt; junto con sus opciones ya realizan acciones sobre el propio texto, para copiarlo, borrarlo, etc.&lt;/p&gt;



&lt;p&gt;La tecla &lt;code&gt;Tab&lt;/code&gt; sirve para autocompletar nombres de archivos.&lt;/p&gt;



&lt;p&gt;Pero muchas de las opciones más frecuentes &lt;strong&gt;están disponibles con un solo dedo usando las teclas de función del teclado. &lt;/strong&gt;&lt;/p&gt;



&lt;p&gt;Por ejemplo, como es casi normal en mucho otro software, con la tecla de función &lt;code&gt;F1&lt;/code&gt; accedes a la ayuda propia a la hora de utilizar GNU moe. &lt;code&gt;F2&lt;/code&gt; guarda el contenido del archivo, etc…&lt;/p&gt;



&lt;p&gt;Puedes &lt;strong&gt;trabajar con varios textos a la vez, múltiples ventanas, buscar y sustituir texto en varios archivos, etc.&lt;/strong&gt;&lt;/p&gt;



&lt;p&gt;Al abrirlo, ya sea con un archivo o sin nada, nos mostrará en la parte superior una barra de estado que nos muestra información:&lt;/p&gt;



&lt;ul&gt;
&lt;li&gt;El estado del teclado. Muestra la parte ya escrita de un comando de múltiples teclas, o ‘&amp;lt;‘ para indicar que hay columnas de texto a la izquierda de la ventana.&lt;/li&gt;



&lt;li&gt;El de estado de los caracteres. ‘I’ para el modo de inserción, ‘O’ para el modo de sobrescritura, ‘W’ para ajuste de texto, ‘A’ para sangría automática, ‘R’ para solo lectura y ‘X’ para el modo de bloque rectangular.&lt;/li&gt;



&lt;li&gt;El nombre del archivo que se está editando, o ‘(unnamed)’ si el búfer aún no tiene nombre. Si el búfer se ha modificado desde la última vez que se guardó o abrió, se muestra un asterisco ‘*’ antes del nombre y ‘(Modified)’ después del nombre.&lt;/li&gt;



&lt;li&gt;La posición del cursor en el búfer (columna de línea).&lt;/li&gt;



&lt;li&gt;Un reloj&lt;/li&gt;



&lt;li&gt;La tecla de ayuda, o el código del carácter debajo del cursor, o la posición de la línea del cursor en el búfer.&lt;/li&gt;
&lt;/ul&gt;



&lt;p&gt;Puedes abrir el editor vacío y empezar a escribir y guardarlo en un archivo, un archivo ya creado que quieras modificar o abrir un directorio y lo que hará será &lt;strong&gt;abrir de manera recursiva todos los archivos que haya dentro.&lt;/strong&gt;&lt;/p&gt;



&lt;p&gt;Puedes crear un archivo de configuración del editor, en el que configures a tu gusto las diferentes opciones del editor, &lt;strong&gt;cambiando las opciones predeterminadas por otras que tu prefieras.&lt;/strong&gt;&lt;/p&gt;



&lt;p&gt;Te animo a que explores este &lt;strong&gt;editor de texto del proyecto GNU&lt;/strong&gt; si no lo conocías y que veas por ti mismo todo lo que ofrece, igual se convierte en &lt;strong&gt;¡tu próximo editor de texto preferido!&lt;/strong&gt;&lt;/p&gt;



&lt;h2 class=&quot;wp-block-heading&quot;&gt;Enlaces de interés&lt;/h2&gt;



&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.gnu.org/software/moe/moe_es.html&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;&lt;strong&gt;https://www.gnu.org/software/moe/moe_es.html&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;



&lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://www.gnu.org/software/moe/manual/moe_manual.html&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;https://www.gnu.org/software/moe/manual/moe_manual.html&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;



&lt;li&gt;&lt;strong&gt;&lt;a href=&quot;https://lists.gnu.org/archive/html/bug-moe/2024-01/msg00000.html&quot; target=&quot;_blank&quot; rel=&quot;noreferrer noopener&quot;&gt;https://lists.gnu.org/archive/html/bug-moe/2024-01/msg00000.html&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;div class=&quot;wp-block-image&quot;&gt;
&lt;figure class=&quot;aligncenter size-full&quot;&gt;&lt;img data-attachment-id=&quot;325&quot; data-permalink=&quot;https://victorhckinthefreeworld.com/2012/12/14/6-nuevas-distribuciones-de-gnu-linux-del-2012/gnu-linux-on-gris-png-2/&quot; data-orig-file=&quot;https://victorhckinthefreeworld.files.wordpress.com/2011/10/gnu-linux-on-gris.png&quot; data-orig-size=&quot;300,192&quot; data-comments-opened=&quot;1&quot; data-image-meta=&apos;&amp;#123;&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;&amp;#125;&apos; data-image-title=&quot;gnu-linux-on-gris.png&quot; data-image-description=&quot;&amp;lt;p&amp;gt;https://victorhckinthefreeworld.files.wordpress.com/2011/10/gnu-linux-on-gris.png&amp;lt;/p&amp;gt;
&quot; data-image-caption=&quot;&quot; data-medium-file=&quot;https://victorhckinthefreeworld.files.wordpress.com/2011/10/gnu-linux-on-gris.png?w=300&quot; data-large-file=&quot;https://victorhckinthefreeworld.files.wordpress.com/2011/10/gnu-linux-on-gris.png?w=300&quot; width=&quot;300&quot; height=&quot;192&quot; src=&quot;//victorhckinthefreeworld.files.wordpress.com/2011/10/gnu-linux-on-gris.png&quot; alt=&quot;&quot; class=&quot;wp-image-325&quot; srcset=&quot;https://victorhckinthefreeworld.files.wordpress.com/2011/10/gnu-linux-on-gris.png 300w, https://victorhckinthefreeworld.files.wordpress.com/2011/10/gnu-linux-on-gris.png?w=150&amp;amp;h=96 150w&quot; sizes=&quot;(max-width: 300px) 100vw, 300px&quot;&gt;&lt;/figure&gt;
&lt;/div&gt;</description>
    </item>

    <item>
      <guid isPermaLink="true">https://peter.czanik.hu/other/syslog-ng-native-macos-source/</guid>
      <dc:creator>Peter Czanik</dc:creator>
      <title>Native MacOS source in syslog-ng</title>
      <pubDate>Tue, 23 Jan 2024 14:43:32 +0000</pubDate>
      <link>https://peter.czanik.hu/other/syslog-ng-native-macos-source/</link>
      <description>&lt;p&gt;You know that support for MacOS is important when every third visitor at the syslog-ng booth of Red Hat Summit asks if syslog-ng works on MacOS. With the upcoming syslog-ng version 4.6.0, syslog-ng not only compiles on MacOS, but it also collects local log messages natively. From this blog you can learn how to compile syslog-ng yourself, options of the MacOS source, and also a bit of history.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.syslog-ng.com/community/b/blog/posts/native-macos-source-in-syslog-ng&quot;&gt;https://www.syslog-ng.com/community/b/blog/posts/native-macos-source-in-syslog-ng&lt;/a&gt;&lt;/p&gt;
&lt;figure&gt;&lt;img src=&quot;//peter.czanik.hu/images/syslog-ng-logo1.png&quot;&gt;&lt;figcaption&gt;
            &lt;h4&gt;syslog-ng logo&lt;/h4&gt;
        &lt;/figcaption&gt;
&lt;/figure&gt;</description>
    </item>

  </channel>
</rss>
