Flameshot Ubuntu 22.04.1 KDE Neon ctrl-c copy past fix

Install flameshot from source
https://github.com/flameshot-org/flameshot
cd flameshot-master

# Compile-time
apt install g++ cmake build-essential qtbase5-dev qttools5-dev-tools libqt5svg5-dev qttools5-dev devscripts equivs libkf5guiaddons-dev -y

# Run-time
apt install libqt5dbus5 libqt5network5 libqt5core5a libqt5widgets5 libqt5gui5 libqt5svg5

git clone https://github.com/flameshot-org/flameshot.git
cd flameshot
rm -rf build
mkdir -p build
cd build

sudo cmake ../ -DUSE_WAYLAND_CLIPBOARD=true
sudo make
sudo make install
start # flameshot &
sudo apt purge devscripts equivs libkf5guiaddons-dev --auto-remove -y
rm -rf ../build


cmake ../ -DUSE_WAYLAND_CLIPBOARD=true

VMware Horizon 8 2209

What’s New

VMware Horizon 8 version 2209 includes the following new features and enhancements. This information is grouped by installable component.

Security improvements were made in the following components to enable Horizon 8 2209 to be Common Criteria certified. Note that Horizon 2209 is currently going through certification testing and should not be considered certified until the process is completed. The Common Criteria certification is an evaluation of Commercial Off-The-Shelf (COTS) Information Technology (IT) products for conformance to the international Common Criteria. 

  • Windows Agent (must be in FIPS mode)
  • Linux Agent (must be in FIPS mode)
  • Windows Client (must be in FIPS mode)
  • Android Client (must be in Common Criteria mode)
  • Blast Secure Gateway (must be in FIPS mode)
  • Horizon Server (must be in FIPS mode)

Version numbering is based on the planned year and the month of the release. The actual release date can vary based on business needs and engineering schedule changes to address critical customer requirements.

Lees verder

Install Comodo/Sectigo SSL certificate on Unifi Controller 7.2.94 on Ubuntu 22.04.1 LTS

Hello everyone,

Just wanted to share this story, because it took me some time and hopefully this can save some time for you all…

UPDATE ! 2022-10-18 (New unifi controller version / Ubuntu version)

There was a day I was working on my unifi controller and wanted to make it safer by adding an SSL certificate.

Piece of cake I thought, but while doing this the ’trial and error’ way of it-life, I combined all the google search and community pieces together..

I now run Unifi Controller 7.2.94 on Ubuntu 22.04.1 LTS and I have a Comodo/Sectigo wildcard *.domain.tld certificate.

Important note, I can download my Versio certificate from my provider decrypted or encrypted.

I now used the decrypted versions.

Lees verder

Microsoft Deployment Toolkit known issues, Script error after upgrading to ADK for Windows 11, version 22H2

Work around this issue you need to add the following registry value in WinPE:

reg.exe add "HKLM\Software\Microsoft\Internet Explorer\Main" /t REG_DWORD /v JscriptReplacement /d 0 /f

To enable this change in MDT, we recommend that you back up the following file: C:\Program Files\Microsoft Deployment Toolkit\Templates\Unattend_PE_x64.xml and to modify it as follows:

Lees verder

VMWare vSphere 8.0

Zonder enige twijfel de voornaamste update bij vSphere 8 is de ondersteuning voor DPU’s, oftewel Data Processing Units. Deze toevoeging komt uiteraard niet onverwachts. Zoals gebruikelijk bij VMware was ook dit eerst een project, namelijk Project Monterey.

De impact van de toevoeging van de ondersteuning voor DPU’s aan vSphere is vrijwel niet te onderschatten, zeker niet op de langere termijn. Deze programmeerbare chips spelen namelijk een steeds belangrijkere rol in datacenters. Ze moeten er zorgen voor stevige prestatie- en efficiëntiewinsten voor omgevingen. Je kunt namelijk specifieke netwerk- en securityfuncties van CPU’s offloaden naar DPU’s. Standaard ben je daar tot wel zo’n 20 procent aan resources binnen een CPU aan kwijt. Die capaciteit komt met de inzet van DPU’s dus beschikbaar voor workloads. Volgens VMware kunnen applicaties die sterk afhankelijk zijn van een hoge bandbreedte en snelle toegang tot cache (denk aan in-memory databases) rekenen op 20 procent besparing voor de CPU-cores en een 36 procent hogere transactiesnelheid. Dit zonder concessies te doen op het gebied van prestaties. Onderaan de streep moet het geheel op deze manier een lagere TCO opleveren.

Lees verder

How to disable fingerprint authentication when laptop lid is closed Ubuntu / Linux

To disable fingerprint authentication when the laptop lid is closed, and re-enable when it is reopened, we will use acpid to bind to the button/lid.* event to a custom script that will stop and mask the fprintd service on lid close, and unmask and start the fprintd service on lid open.

We also check that the HDMI cable is connected by testing the contents of /sys/class/drm/card0-HDMI-A-1/status.

Follow the steps below:

  1. Create file /etc/acpi/laptop-lid.sh with the following contents: #!/bin/bash lock=$HOME/fprint-disabled if grep -Fq closed /proc/acpi/button/lid/LID0/state && grep -Fxq connected /sys/class/drm/card0-HDMI-A-1/status then touch "$lock" systemctl stop fprintd systemctl mask fprintd elif [ -f "$lock" ] then systemctl unmask fprintd systemctl start fprintd rm "$lock" fi
  2. Make the file executable with chmod +x /etc/acpi/laptop-lid.sh
  3. Create file /etc/acpi/events/laptop-lid with the following contents: event=button/lid.* action=/etc/acpi/laptop-lid.sh
  4. Restart the acpid service with: sudo service acpid restart

Now the fingerprint will be used only when the lid is open.

In order to restore the correct state of the fprintd service if you disconnect/reconnect while the laptop is off, you may call the above script from a systemd init file. The steps to do this are the following:

  1. Create a file named /etc/systemd/system/laptop-lid.service with the following contents: [Unit] Description=Laptop Lid After=suspend.target [Service] ExecStart=/etc/acpi/laptop-lid.sh [Install] WantedBy=multi-user.target WantedBy=suspend.target
  2. Reload the systemd config files with sudo systemctl daemon-reload
  3. Start the service with sudo systemctl start laptop-lid.service
  4. Enable the service so that it starts automatically on boot sudo systemctl enable laptop-lid.service

Now the status should be correct even after connecting/disconnecting when the computer is off.

Bron: https://unix.stackexchange.com