VMware Horizon 8 2306 Releas

VMware Horizon 8 version 2306 includes the following new features and enhancements.

IMPORTANT: Horizon 8 2306 is not supported with vSphere 6.5 or vSphere 6.7, which are both past the end of General Support.  Horizon 8 2306 Instant Clones are incompatible with vSphere 6.5 and vSphere 6.7 so you must upgrade to vSphere 7.0 or later before upgrading to Horizon 8 2306 if you are using Instant Clones.

Lees verder

Flatpak spelchack applications

Debug and Locale

For every package that is created using flatpak-builder, a .Debug and a .Locale package are automatically generated. This is true for both local compilation and CI-compiled packages.

The .Debug package needs to be explicitly installed before it can be used, and it provides debug symbols for debugging with tools like gdb inside the Flatpak, like so:

flatpak install org.kde.yourapp.Debug
flatpak run --command=bash --devel org.kde.yourapp
gdb /app/bin/yourappbinary

The .Locale package is installed alongside a normal installation of your application, but can only be seen with flatpak list --all. It provides locale-specific files based on your default language or extra languages, which can be useful to check for internationalization issues like text wrapping, elision, and mistranslations. By default, Flatpak will try to be smart and deduce the default language based on your locale settings, and the downloaded .Locale will only include the languages listed in languages and extra-languages (if set), so a flatpak update is required to download more languages. For example:

Lees verder

QEMU/KVM-BIOS-SerialNo

How to provide a BIOS Serial to KVM Guests
Step 1: Determine if a lack of BIOS serial number is the problem. On a Windows guest VM, open cmd and run wmic bios get serialnumber. On a Linux guest, run dmidecode -s system-serial-number in terminal.
Anyway, nano /usr/bin/kvm-spice-serial and stick this in it:

under <os> tab i added a line before </os>

<smbios mode=’sysinfo’/>

and after </cputune> i added

 <sysinfo type=’smbios’>
    <bios>
      <entry name=’vendor’>ROG STRIX X570-E GAMING</entry>
      <entry name=’version’>Rev 2802</entry>
      <entry name=’date’>02/24/2020</entry>
    </bios>
    <system>
      <entry name=’manufacturer’>ASUSTeK COMPUTER INC.</entry>
      <entry name=’product’>ROG STRIX X570-E GAMING</entry>
      <entry name=’version’>Rev 2802</entry>
      <entry name=’serial’>191059955402748</entry>
    </system>
    <baseBoard>
      <entry name=’manufacturer’>ASUS</entry>
      <entry name=’product’>ASUSTeK COMPUTER INC.</entry>
      <entry name=’version’>Rev 2802</entry>
      <entry name=’serial’>191059955402747</entry>
    </baseBoard>
  </sysinfo>

VMware Horizon 8 2212 Enterprise What’s New

Horizon 8 2212 is an Extended Service Branch (ESB). Approximately once a year, VMware designates one VMware Horizon release as an Extended Service Branch (ESB). An ESB is a parallel release branch to the existing Current Releases (CR) of the product. By choosing to deploy an ESB, customers receive periodic service packs (SP) updates, which include cumulative critical bug fixes and security fixes. Most importantly, there are no new features in the SP updates, so customers can rely on a stable Horizon platform for their critical deployments. For more information on the ESB and the Horizon versions that have been designated an ESB , see VMware Knowledge Base (KB) article 86477.

VMware Horizon 8 version 2212 includes the following new features and enhancements.

Lees verder

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

Keyboard Shortcut To Send Text Strings To Program KDE plasma 5.26

sudo apt install xdotool
Then assign a shortcut to this command in KDE and after your pressing the shortcut, the required text is magically typed for you

Workaround is to open old “Custom Shortcuts” using XWayland: QT_QPA_PLATFORM=xcb systemsettings

xdotool sleep 0.3 type 'string that you want to type / paste'