In this article, we will see how to configure a reverse proxy on Apache to access Cockpit via HTTPS, with support for WebSocket. This configuration is useful to improve security and accessibility when using Cockpit on an internal network. Prerequisites A server with Apache installed and configured to support HTTPS. Cockpit installed on a server…
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