Help promote openSUSE Leap 15.2!
The release of openSUSE Leap 15.2 will be released soon. To help spread the word about the release, we have counters available at counter.opensuse.org and more artwork uploaded recently on https://github.com/openSUSE/artwork/. You can put these items on your social media or blog pages to make sure everybody knows that the Release is Coming! For you blog and social media accounts If you want to decorate your blog or website with a nice Leap 15.2 banner, grab one of these

Release Counter
You can add the openSUSE 15.2 release counter to your website in various sizes by including the following html code in your blog: <a href="//en.opensuse.org/Portal:15.2"><img src="//counter.opensuse.org/**medium**.png" border="0"/></a><br/> “medium” is the size of the counter; it can also be “small” or “large” and we also have “wide” for a banner.
See the Countdown page on the openSUSE Wiki for more countdown information, code and tips!
KDE Plasma 5.19 on openSUSE Tumbleweed
GUADEC 2020 + Covid-19 = Online Conference
Few days ago, someone posted GUADEC (the GNOME Users And Developers European Conference) invitation on Gnome Malaysia telegram group.

To be honest, I did’t alert too much what event happening around but I think GUADEC is worth to steal my attention because I am Gnome lover and this is good chances to join the event because this year, GUADEC 2020 will take place entirely online due to the COVID-19 pandemic. So you (me and someone else who far from europe) don’t need to go europe to join :P
This event is coming next month start from 22nd July - 28th July 2020. GUADEC, it’s a once-a-year event that brings us together to collaborate, celebrate, and learn; meet our colleagues and friends; and strengthen the most special part of the GNOME project.
Maybe most of participant actualy will be sad because unable see each other in person this year. But this will be open oppurtunity for someone who cannot affort for travel if held as usual but now they can!
We are very pleased to be continuing our support of @guadec this year as the conference moves into the digital space and we look forward to taking part!
— Codethink (@codethink) May 21, 2020
Thanks to everyone putting in the effort to get the event ready online!https://t.co/URj7emUD30#opensource #linux @gnome
You can check time table to know what time and what talk is about. Don’t forget to also import details event calendar. For me, who live in Malaysia, this event will be happen at night, so normally and expecting I have free time to join this event.
Oh yeah, don’t forget to register HERE (deadline: 28 Jul 2020). last not least, thank you Redhat, Codethink for sponsors and Gnome community for this event.
So far, the from latest discussion on discourse.gnome.org, GNOME will use BigBlueButton for this conference, all sessions will be recorded for everyone who won’t be able to attend talks due to timezones and conference start from 15:00 UTC to 20:15 UTC.
See you there!
UbuntuDDE | Review from an openSUSE User
openSUSE Tumbleweed – Review of the week 2020/25
Dear Tumbleweed users and hackers,
7 days – 6 snapshots. That’s the quick summary of the last week. Felt unspectacular from that point of view, even though, unfortunately, the Tumbleweed users did have to fight a few problems this time aroud. The 6 snapshots released were 0611, 0612, 0614, 0615, 0616 and 0617. No worries, we did not skip 0613 for superstitious reasons – it just so happened that OBS needed a bit more time to build 0612.
The releases brought you these changes:
- git 2.27.0
- OpenSSH 8.3p1
- PostgreSQL 12.3
- SQLite 3.32.2
- SSSD 2.3.0
- Linux kernel 5.7.1: failures when loading firmware for iwlwifi based cards. The next kernel should bring the fix for that. As a workaround, you could use the uncompressed kernel-firmware package (instead of kernel-firmware-*)
- KDE Applications 20.04.2
- KDE Frameworks 5.71.0
- Mesa 20.1.1
The following changes are being worked on in staging areas:
- Linux kernel 5.7.2
- VLC 3.0.11
- KDE Plasma 5.19.1
- LibreOffice 7.0 (beta)
- RPM change: %{_libexecdir} is being changed to /usr/libexec. This exposes quite a lot of packages that abuse %{_libexecdir} and fail to build
- openSSL 3.0
Build tensorflow2 with CUDA support
Build Tensorflow 2.1.1 with CUDA support
Tensorflow 2.1.1 is available in Tumbleweed and Leap 15.2 but has no CUDA support enabled, due to legal issues with NVIDIA. As CUDA support speeds up training and inference of neuronal networks a lot, it is desirable to have it enabled.
This post explains how to build a tensorflow package with CUDA support.
Prerequisites
The CUDA packages for building will be added via the -p flag to the osc command, but due to a bug you need at least version 0.169.1. This version is already included in Tumbleweed but for Leap 15.2 you will have to add the openSUSE Tools repository with the command and update osc
sudo zypper ar https://download.opensuse.org/repositories/openSUSE:/Tools/openSUSE_15.2/openSUSE:Tools.repo
sudo zypper ref
sudo zypper up --allow-vendor-change osc
It is also recommended to have a decent equipped machine for building as at least 10GB memory are needed and the build takes also a lot of time. On my twelve core machine it took more than two hours.
Create CUDA archive
In this step all the relevant CUDA packages are put into a single repository so that osc can access them. For this create the repository directory ($HOME/opt/cuda-10-1 in this case) with the command
mkdir -p $HOME/opt/cuda-10-1
The in next step downloaded work with Tumbleweed and openSUSE Leap 15.2.
CUDA
Download from https://developer.nvidia.com/cuda-10.1-download-archive-update2 the rpm(local) for openSUSE and install it. After that copy the rpms to the local directory with
cp /var/cuda-repo-10-1-local-10.1.*/*rpm $HOME/opt/cuda-10-1
NCCL
Visit https://developer.nvidia.com/nccl/nccl-download and download Local installer for RedHat/CentOS 7. After you installed the downloaded rpm you have to copy the packages with the command
cp /var/nccl-repo-2.7.3-ga-cuda10.1/*rpm $HOME/opt/cuda-10-1
CUdnn
You have to register at NVIDA in order to download from https://developer.nvidia.com/cudnn . There download cuDNN Runtime Library for RedHat/Centos 7.3 (RPM) and cuDNN Developer Library for RedHat/Centos 7.3 (RPM). After that copyt the rpms to $HOME/opt/cuda-10-1.
Create local repository
Now you can create a local repository which can be used with osc with the commands
cd $HOME/opt/cuda-10-1
createrepo .
where you might have to install the createrepo package.
Compile Tensorflow
With all the packages in place you have to get the tensorflow sources. This can be done with
osc co science:machinelearning/tensorflow2
Tensorflow can now compiled in the directory science:machinelearning/tensorflow2 with the command
osc build --ccache -p $HOME/opt/cuda-10-1 -k . -M cuda-10-1 openSUSE_Leap_15.2
which will start the build of the tensorflow package. You should always use the --ccache option as this speeds up rebuild. For Tumbleweed used the command
osc build --ccache -p $HOME/opt/cuda-10-1 -k . -M cuda-10-1 openSUSE_Tumbleweed
After some hours the build should have finished and the resulting tensorflow rpms should be in the directory where you have started the build.
Installation
For a proper installation copy the rpms to $HOME/opt/cuda-10-1 and rerun createrepo. You might want to add this repository to you system with
zypper ar $HOME/opt/cuda-10-1/repodata tensorflow
in order to install the package tensorflow2.
Short network timeouts expected during the weekend
The SUSE office in Nuremberg will get disconnected from any former Microfocus network over the upcoming weekend (2020-06-20/21). Most of the changes should go unnoticed. But SUSE-IT needs to replace some hardware and they informed us that there might be short outages or curious network timeouts during this time. Especially around Sunday, 2020-06-21, in the afternoon.
We will keep you updated via our status page, if we get aware of any longer outage.
openSUSE Tumbleweed on an HP Zbook 15 G2 with Nvidia Quadro K2100M
openSUSE + LibreOffice Conference Update
Organizers of the openSUSE + LibreOffice Conference have been slightly adjusted the conference dates from the original dates of Oct. 13 – 16 to the new dates of Oct. 15. - 17.
The new dates are a Thursday through a Saturday. Participants can submit talks for the live conference until July 21 when the Call for Papers is expected to close.
The length of the talks for the conference have also been changed. There will be a 15-minute short talk, a 30-minute normal talk and a 60-minute work group sessions to select. Organizers felt that shortening the talks were necessary to keep attendees engaged during the online conference. The change will also help with the scheduling of breaks, social video sessions and extra segments for Questions and Answers after each talk.
The live platform that will be used will allow presenters with limited bandwidth to play a talk they record should they wish not to present a live talk. The presenter will have the possibility to control the video as well as pause, rewind, fast-forward, etc., which is built into the system.
Organizers have online, live conference sponsorship packages available. Interested parties should contact ddemaio (at) opensuse.org for more information.
Plasma "5.19", Virtualbox, Kernel "5.7.1" update in Tumbleweed
An exciting week of openSUSE Tumbleweed snapshots have brought even more KDE software, a new stable kernel and more.
A week ago Plasma 5.19 arrived in the 20200609 snapshot and just a couple of days ago in snapshot 20200614 KDE’s 20.04.2 Apps Update arrived.
A large amount of the packages updated in snapshot 20200614 were Applications 20.04.2 packages, which included improvements to the music player Elisa, search tags for the file manager Dolphin and faster editing with KDE’s advanced video-editing application Kdenlive. Several other packages were included in the snapshot like an update to image editor gimp 2.10.20, which now allows the tool-group menu that hovers to expand. The Generic Graphics Library, gegl, 0.4.24 added new horizontal and vertical shapes for vignettes. Other packages updated in the snapshot were autoyast2 4.3.13, pam 1.4.0, instant messaging client pidgin 2.14.1 and GNOME document reader evince 3.36.5. The snapshot is trending unstable with a few known issues like a bootloop and a failure to build vmware modules. The current rating was at 68 during the release of this article, according to the Tumbleweed snapshot reviewer.
The arrival of Linux Kernel 5.7.1 came in snapshot 20200612, which is also trending unstable at a rating of 76, and could affect people relying on iwlwifi. The Linux tool used to diagnose issues with power consumption and power management, powertop, was updated to version 2.13, and the perl-Mojolicious package was updated to version 8.53 in the snapshot, which added an experimental extname method to Mojo::File.
Moving back to the Tumbleweed snapshots that were trending stable, snapshot 20200611 was trending at a 98 rating and brought multiple new packages to include updates of ImageMagick 7.0.10.18, which had a colorspace change that removes the ICC profile and frees up memory, and an update to virtualbox 6.1.10 that fixed the resizing and multi monitor handling for Wayland guests. The Advanced Linux Sound Architecture 1.2.3 package addressed issue #34 and makes ALSA relocatable in the filesystem. OpenSSH has new features in its 8.3p1 release and removes the “ssh-rsa” (RSA/SHA1) algorithm from those accepted for certificate signatures (i.e. the client and server CASignatureAlgorithms option) and will use the rsa-sha2-512 signature algorithm by default when the ssh-keygen(1) CA signs new certificates. Among some of the notable package to update in the snapshot were a new major version of Google’s API tool package nodejs-common 4.0, git 2.27.0, postgresql 12.3, redis 6.0.5, sqlite 3.32.2 and GnuTLS 3.6.14, which fixed a memory leak that could have lead to a DoS attack against Samba servers.
Snapshot 20200610 had several YaST packages update to include the Yast2 4.2.84 package which improved the stop and start of a system service, and yast2-bootloader 4.3.3, which enhanced disk type detection to cover multipath in s390 secure boot. Plus four months of translations for the yast2-trans package were updated. Regular expression library RE2 had a month worth of updates and rebootmgr 1.2 made a change to depend on dbus and not the network regarding disabled etcd support. The snapshot is likely to record a stable rating of 96, according to the Tumbleweed snapshot reviewer.
The excitement around the release of Plasma 5.19 didn’t disappoint as the widgets and wallpaper provided an eye-catching background. The arrival of the “Polished Plasma” was well received and the features look fantastic. Plasma packages weren’t the only packages to arrive in snapshot 20200609. A new major version of Mozilla Firefox 77.0.1 allows for an easier way to view and manage web certificates. Stability improvements were made with the minor update of Mozilla Thunderbird 68.9.0. BitTorrent client transmission updated to a 3.0 major version and allows the Remote Procedure Call server to listen on an IPv6 address. Among the other packages to update in the snapshot were harfbuzz 2.6.7, poppler 0.89.0, nodejs14 14.4.0, iptables 1.8.5 and several GNOME packages to include a minor update of gnome-software to version 3.36.1 and gnome-shell 3.36.3. The snapshot recorded a stable rating of 91, according to the Tumbleweed snapshot reviewer.