Version Update Version News: Improved barcode search for articles Enhanced management of article search filters Updated compatibility with Android 13 and IOS 17 Simplified onboarding and new account creation Special discount available until March 2024 Visit the dedicated page at the link: https://xtumble.com/punto-cassa for further information, or search for it in the stores. Transform your…
Read more
In questo articolo, vedremo come configurare un reverse proxy su Apache per accedere a Cockpit tramite HTTPS, con il supporto per WebSocket. Questa configurazione è utile per migliorare la sicurezza e l’accessibilità quando si utilizza Cockpit su una rete interna. Prerequisiti Un server con Apache installato e configurato per supportare HTTPS. Cockpit installato su un…
Read more
<h1>Resolving VNC Configuration Error in KVM on Ubuntu</h1> <p>If you’re using KVM on Ubuntu and encounter the following error when attempting to configure VNC as the graphics protocol for your virtual machines:</p> <pre> libvirt.libvirtError: unsupported configuration: chardev ‘spicevmc’ not supported without spice graphics </pre> <p>This post will guide you through the necessary steps to…
Read more
<header> <h1>How to Configure Cockpit to Manage VMs on Ubuntu</h1> <p><em>In this guide, you will learn how to install and configure Cockpit to manage virtual machines (VMs) on an Ubuntu KVM host.</em></p> </header> <section> <h2>Introduction</h2> <p>Cockpit is an easy-to-use web interface that allows you to manage Linux servers. It is particularly useful for monitoring and…
Read more
FastReport old file format A small app to convert old frf files into new fr3 file format.. You can download fr3tofrf here: https://api.xtumble.com/downloadattachmentpub?cid=05830520960&&docId=949335
Powerful and Reliable Virtualization Solution Are you looking for a robust and high-performance virtualization solution? Discover our offer based on the Dell PowerEdge R420 server, perfectly configured to meet your business virtualization needs. We provide a personalized service that goes beyond what you’ll find with major providers. 🔹 Processors: 2x Intel Xeon E5-2420 @ 1.90GHz…
Read more
Have you ever needed to copy specific files from a series of directories that match a certain pattern? If so, here’s a shell command that might be just what you need!
1 2 3 4 |
find . -type d -name 'AXR*' -exec find {} -type f \; | while read -r file; do cp "$file" ./tmp/$(basename "$file") done |
🔍 Here’s What This Command Does: find . -type d -name ‘AXR*’ -exec find {} -type f \;: This part of the command…
Read more