<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>linux on Notities</title><link>https://www.vandenboom.icu/en/tags/linux/</link><description>Recent content in linux on Notities</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Mon, 24 Mar 2025 17:57:51 +0000</lastBuildDate><atom:link href="https://www.vandenboom.icu/en/tags/linux/index.xml" rel="self" type="application/rss+xml"/><item><title>Deskflow: Control multiple computers with 1 keyboard and mouse for: macOS, Windows and Linux</title><link>https://www.vandenboom.icu/en/blog/2025-deskflow-bedien-meerdere-computers-met-1-keyboard-en-muis-voor-macos-windows-en-linux/</link><pubDate>Mon, 24 Mar 2025 17:57:51 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2025-deskflow-bedien-meerdere-computers-met-1-keyboard-en-muis-voor-macos-windows-en-linux/</guid><description>With Deskflow you control multiple computers — macOS, Windows or Linux — using a single mouse and keyboard. It works as a software-based KVM switch (without video) and is sponsored by Synergy. This program is still actively maintained, with an intuitive interface that makes it easy to use. Tip: disable TLS in the settings for a smooth start.
Download it via: https://github.com/deskflow/deskflow/releases. Look for the &amp;ldquo;latest&amp;rdquo; tag and check all assets for the correct version!</description></item><item><title>Installing Oracle VirtualBox on Ubuntu Linux</title><link>https://www.vandenboom.icu/en/blog/2025-installing-oracle-virtualbox-on-ubuntu-linux/</link><pubDate>Sun, 23 Mar 2025 13:20:53 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2025-installing-oracle-virtualbox-on-ubuntu-linux/</guid><description>T﻿ry the following steps:
$﻿ sudo apt update
$﻿ sudo apt upgrade
$﻿ sudo apt install curl
$﻿ curl -fsSL https://www.virtualbox.org/download/oracle_vbox_2016.asc | sudo gpg &amp;ndash;dearmor -o /usr/share/keyrings/virtualbox-archive-keyring.gpg
$﻿ echo &amp;ldquo;deb [arch=amd64 signed-by=/usr/share/keyrings/virtualbox-archive-keyring.gpg] http://download.virtualbox.org/virtualbox/debian noble contrib&amp;rdquo; | sudo tee /etc/apt/sources.list.d/virtualbox.list
$﻿ sudo apt update
$﻿ sudo search virtualbox
virtualbox/noble-updates 7.0.16-dfsg-2ubuntu1.1 amd64 x86 virtualization solution - base binaries
virtualbox-7.0/unknown 7.0.24-167081~Ubuntu~noble amd64 Oracle VM VirtualBox
virtualbox-7.1/unknown 7.1.6-167084~Ubuntu~noble amd64 Oracle VirtualBox
$﻿ sudo install virtualbox-7.</description></item><item><title>Tips for using XRDP on Ubuntu Linux</title><link>https://www.vandenboom.icu/en/blog/2025-tips-for-using-xrdp-on-ubuntu-linux/</link><pubDate>Sun, 23 Mar 2025 12:51:59 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2025-tips-for-using-xrdp-on-ubuntu-linux/</guid><description>T﻿o be able to use XRDP on Ubuntu Linux try the following instructions:
$ s﻿udo apt update
$ s﻿udo apt upgrade
$ s﻿udo apt install xrdp
$ echo &amp;ldquo;gnome-session &amp;ndash;session=ubuntu&amp;rdquo; &amp;gt; ~/.xsession
$ echo &amp;ldquo;export DISPLAY=:10.0&amp;rdquo; &amp;gt; ~/.bash_profile
$ echo &amp;ldquo;xhost +&amp;rdquo; &amp;gt; ~/.bash_profile
$﻿ ip a
R﻿emember write down your IP address of your system and to log out of your graphical user session.
N﻿ow try to login to your system with a RDP tool.</description></item><item><title>Install Microsoft Visual Studio Code in Linux from the repo</title><link>https://www.vandenboom.icu/en/blog/2025-install-microsoft-visual-studio-code-in-linux-from-the-repo/</link><pubDate>Sat, 22 Mar 2025 22:13:54 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2025-install-microsoft-visual-studio-code-in-linux-from-the-repo/</guid><description>F﻿ollow the below steps to install Microsoft Visual Studio Code IDE on Linux from its repository:
sudo rpm &amp;ndash;import https://packages.microsoft.com/keys/microsoft.asc
sudo sh -c &amp;lsquo;echo -e &amp;ldquo;[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc&amp;rdquo; &amp;gt; /etc/yum.repos.d/vscode.repo&amp;rsquo;
sudo dnf install code -y</description></item><item><title>LDAP/IPA - Server on Red Hat Enterprise Linux 7</title><link>https://www.vandenboom.icu/en/blog/2024-ldap-ipa-server-op-red-hat-enterprise-linux-7/</link><pubDate>Thu, 15 Feb 2024 10:47:28 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2024-ldap-ipa-server-op-red-hat-enterprise-linux-7/</guid><description>If you are using a hosts file, make sure it contains FQDNs and pay close attention to the order in which they appear.
Check the hosts file and adjust it if necessary:
The FQDN must come first, followed by any aliases.
/etc/hosts 10.0.0.1 server1.example.com server1 application1 If an alias is listed before the FQDN, you may encounter error messages that are not immediately traceable to this cause.</description></item><item><title>Create a Zombie process in Linux using a C program</title><link>https://www.vandenboom.icu/en/blog/2024-maak-een-zombie-proces-in-linux-m-b-v-een-c-programma/</link><pubDate>Wed, 31 Jan 2024 20:54:45 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2024-maak-een-zombie-proces-in-linux-m-b-v-een-c-programma/</guid><description>Below is the source code of a C program to create a Zombie process in Linux and analyse it.
vim create_zombie_process.c #include &amp;lt;stdlib.h&amp;gt;#include &amp;lt;sys/types.h&amp;gt;#include &amp;lt;unistd.h&amp;gt; int main () { pid_t child_pid; child_pid = fork (); if (child_pid &amp;gt; 0) { sleep (60); } else { exit (0); } return 0; } Compile the C source code into an executable program:
gcc create_zombie_process.c Start the program:
./a.out Open a second Terminal and view the process list.</description></item><item><title>Checkmk installation on Rocky Linux 9.3</title><link>https://www.vandenboom.icu/en/blog/2024-checkmk-installation-on-rocky-linux-9-3/</link><pubDate>Tue, 16 Jan 2024 21:13:15 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2024-checkmk-installation-on-rocky-linux-9-3/</guid><description>Checkmk installation on Rocky Linux 9.3
dnf install epel-release setsebool -P httpd_can_network_connect 1 firewall-cmd --zone=public --add-service=http --permanent firewall-cmd --reload wget https://download.checkmk.com/checkmk/2.2.0p18/check-mk-raw-2.2.0p18-el9-38.x86_64.rpm yum install check-mk-raw-2.2.0p18-el9-38.x86_64.rpm omd version omd create monitoring omd start monitoring http://localhost.localdomain/monitoring/ user: cmkadmin with password: &amp;lt;given&amp;gt; omd su monitoring (For command line administration of the site.) cmk-passwd cmkadmin (After logging in, you can change the password for cmkadmin with.) (optional) omd status omd sites omd help (optional for after reboot if you get the error: Unable to connect) omd update-apache-config monitoring</description></item><item><title>Installing the VirtualBox Guest Additions on Rocky Linux 9.3</title><link>https://www.vandenboom.icu/en/blog/2024-installing-the-virtualbox-guest-additions-on-rocky-linux-9-3/</link><pubDate>Tue, 16 Jan 2024 21:08:26 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2024-installing-the-virtualbox-guest-additions-on-rocky-linux-9-3/</guid><description>Installing the VirtualBox Guest Additions on Rocky Linux 9.3
dnf install epel-release dnf update --refresh dnf update kernel-* reboot (optional) dnf install dkms kernel-devel kernel-headers gcc make bzip2 perl elfutils-libelf-devel rpm -q kernel-devel uname -r Top menu: Devices -&amp;gt; Insert Guest Additions CD-Image Run (optional) cd /run/media/ ./VBoxLinuxAdditions.run</description></item><item><title>The Linux mlocate command on macOS</title><link>https://www.vandenboom.icu/en/blog/2023-the-linux-mlocate-command-under-macos/</link><pubDate>Wed, 27 Sep 2023 17:40:13 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2023-the-linux-mlocate-command-under-macos/</guid><description>The Linux mlocate command under macOS
sudo /usr/libexec/locate.updatedb sudo ln -s /usr/libexec/locate.updatedb /usr/local/bin/updatedb</description></item><item><title>Linux disk space information more clearly excluding the denied and cannot messages</title><link>https://www.vandenboom.icu/en/blog/2023-linux-disk-space-information-more-clearly-excluding-the-denied-and-cannot-messages/</link><pubDate>Tue, 05 Sep 2023 06:23:38 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2023-linux-disk-space-information-more-clearly-excluding-the-denied-and-cannot-messages/</guid><description>$ du -hs * 2&amp;gt; &amp;gt;(egrep -iv &amp;lsquo;permission denied|cannot access&amp;rsquo;) | sort -n</description></item><item><title>Linux locate lost storage space difference between results df and du</title><link>https://www.vandenboom.icu/en/blog/2023-linux-locate-lost-storage-space-difference-between-results-df-and-du/</link><pubDate>Tue, 05 Sep 2023 06:18:17 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2023-linux-locate-lost-storage-space-difference-between-results-df-and-du/</guid><description>$ lsof | grep -E &amp;lsquo;^COM|deleted&amp;rsquo;</description></item><item><title>Automatically log in to a Linux server using PuTTY on Windows</title><link>https://www.vandenboom.icu/en/blog/2023-authomatisch-inloggen-op-een-linux-server-m-b-v-putty-onder-windows/</link><pubDate>Fri, 17 Feb 2023 14:51:15 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2023-authomatisch-inloggen-op-een-linux-server-m-b-v-putty-onder-windows/</guid><description>You can automatically log in to a Linux server on Windows using PuTTY by making use of a key file. Below I explain step by step how to do this.
Create a key: start: puttygen.exe Click on: Generate Click on: Save private key Go to PuTTY Configuration -&amp;gt; Session Load a previously created session or create a new one Go to: Connection -&amp;gt; SSH -&amp;gt; Auth -&amp;gt; Private key file for authentication -&amp;gt; Browse Select your file with the private key: *.</description></item><item><title>Install Python 3.9 on Ubuntu Linux</title><link>https://www.vandenboom.icu/en/blog/2022-installeer-python-3-9-op-ubuntu-linux/</link><pubDate>Sun, 03 Apr 2022 18:55:18 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2022-installeer-python-3-9-op-ubuntu-linux/</guid><description>$ sudo apt install software-properties-common
$ sudo add-apt-repository ppa:deadsnakes/ppa
$ sudo apt update
$ sudo apt install python3.9
$ python3.9 &amp;ndash;version</description></item><item><title>Install the editor VSCodium on Ubuntu Linux</title><link>https://www.vandenboom.icu/en/blog/2022-installeer-de-editor-vscodium-op-ubuntu-linux/</link><pubDate>Sun, 03 Apr 2022 14:22:24 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2022-installeer-de-editor-vscodium-op-ubuntu-linux/</guid><description>$ wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg | sudo apt-key add -
$ sudo echo &amp;lsquo;deb https://vscodium.c7.ee/debs/ vscodium main&amp;rsquo; | sudo tee &amp;ndash;append /etc/apt/sources.list.d/vscodium.list
$ sudo apt update
$ sudo apt install codium</description></item><item><title>Install the Google Chrome Web Browser on Ubuntu Linux</title><link>https://www.vandenboom.icu/en/blog/2022-installeer-de-google-chrome-web-browser-op-ubuntu-linux/</link><pubDate>Sun, 03 Apr 2022 11:51:54 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2022-installeer-de-google-chrome-web-browser-op-ubuntu-linux/</guid><description>$ wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
$ sudo sh -c &amp;lsquo;echo &amp;ldquo;deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main&amp;rdquo; &amp;raquo; /etc/apt/sources.list.d/google-chrome.list&amp;rsquo;
$ sudo apt update
$ sudo apt install google-chrome-stable</description></item><item><title>New life in an old Apple computer (iMac, MacBook)</title><link>https://www.vandenboom.icu/en/blog/2022-nieuw-leven-in-een-oude-apple-computer-imac-macbook/</link><pubDate>Fri, 25 Feb 2022 11:09:02 +0000</pubDate><guid>https://www.vandenboom.icu/en/blog/2022-nieuw-leven-in-een-oude-apple-computer-imac-macbook/</guid><description>Install the VirtualBox application and run a virtual machine inside it with the latest version of Linux or Windows. In many cases this can solve problems with browsing the internet — for example, making it possible to visit websites that no longer work in the old Apple environment.</description></item></channel></rss>