How to do 4k on Linux in 22

High resolution displays are great. Not just to count pixels but because you get real good font rendering and graphics without aliasing. Sadly it’s still something requires a bit of tinkering. ...

April 19, 2022 · 3 min · Liv Dywan

Running standandalone tests with isotovideo

Did you know? isotovideo is the tool at the heart of openQA. You can actually use it without the whole scheduler, and it’s easier than you think! ...

March 16, 2022 · 4 min · Liv Dywan

How to live on containers

Presuming that one could very hypothetically use something like MicroOS for immutable servers, development machines and regular desktops for non-technical users, let’s see how that dream would look in practice. ...

September 24, 2021 · 7 min · Liv Dywan

Looking after your flatpaks

Do you have many flatpaks? From various remotes added over time? Several themes installed? Disk space is starting to run out? Read on for some tips! ...

September 18, 2021 · 5 min · Liv Dywan

How to help test-drive zypper

As you may or may not know libzypp is what powers zypper and YaST, which are the packaging frontends on openSUSE. Chances are, you’ve used both. But have you ever tried a development version or enabled unstable features? ...

August 31, 2021 · 3 min · Liv Dywan

How to aggregate your blogs with the world crab

After dipping my toes into Rust and preparing the boilerplate I’m going to explain what my first project is and how to use it! ...

August 26, 2021 · 3 min · Liv Dywan

Writing openQA tests in Python

openQA is a test framework that works with many operating systems. openSUSE, Fedora, Debian and others are using it to ensure the quality of releases. Writing tests with it is easier than you might think. And you can use Python to do it! ...

July 15, 2021 · 4 min · Liv Dywan

Setting up a new Rust project

Not long ago I wrote about dipping my toes into Rust where I discussed what Rust is and why I’m interested to learn it. Now I feel like I need to try my hands on a real project which scratches an itch of mine and at the same time allows me to exercise what I learned. ...

May 7, 2021 · 5 min · Liv Dywan

Working with openQA via the command line

openQA allows for a few different workflows. The main entry point is the web UI if you’re wanting to look at builds, relevant jobs, test results and of course to investigate down to the level of the bare logs if all else fails. Eventually there’s a point where you run into limitations of what’s exposed through the browser. Let’s take a look at what openQA has to offer on the command line! ...

April 27, 2021 · 6 min · Liv Dywan

Getting a new Perl module into openSUSE

Download audio There is this Perl module on CPAN that looks really handy So, I want to use Devel::Cover::Report::Codecovbash which is a Perl module. To test out how it works of course I can simply install it off CPAN: cpanm -nq 'Devel::Cover::Report::Codecovbash' I can use it just fine like this. To be sure, installing modules as a user $PERL5LIB needs to be set accordingly. Say I spent some time trying this out and decided that I want to depend on this package....

February 24, 2021 · 2 min · Liv Dywan