Via Cà Matta 2 - Peschiera Borromeo (MI)
+39 02 00704272
info@synaptica.info

Categoria: Sistemi Operativi

Digital Innovation Partner

Ubuntu LTS Release Duration

From Ubuntu official site you can check all about support of your Ubuntu SO support at : https://ubuntu.com/about/release-cycle

First test on Ubuntu 22.04 <--> Delphi 11.1

  Test Ubuntu 22.04: Ubuntu 22.04 Server distro per Intel / AMD x64 su ambienti di virtualizzazione (tutti configurati con 4core e 2virt, 8GB, 40GB SSD): VMWare Fusion per MacOSX  –> passed no issue  VMWare Workstation –> passed no issue KVM –> passed no issue Ubuntu 22.04 Server sui seguenti ambienti fisici: Dell T440 Intel…
Leggi tutto

Configure a NFS share in your LAN with Ubuntu 20.04

Configuring NFS Server: Installing NFS services on your ubuntu system sudo nano /etc/fstab sudo apt install nfs-kernel-server sudo apt-get install nfs-kernel-server portmap nfs-common sudo showmount -a configure mount folders and define sub nets can access to sudo nano /etc/exports /etc/export sample: # /etc/exports: the access control list for filesystems which may be exported # to…
Leggi tutto

Windows kill application programmatically

To force quit an application by application name in MS-Windows you can use “taskkill” command. To kill an application by app name using taskkill you can write: taskkill /f /t /im julius.exe In this example we kill our application “JuliuS” .

How To Use Apache as a Reverse Proxy on Ubuntu 20.04

A reverse proxy is a type of proxy server that accepts HTTP (S) requests and transparently distributes them to one or more backend servers. You can use a reverse proxy to prevent direct access to these underlying application servers. They can also be used to distribute the load of incoming requests to different application servers.…
Leggi tutto

Ubuntu 20.04 – Massive change of permissions and users to folders and files separately

With bash you can more and more… In linux you can use the “find” command from terminal and execute a command for each result simply. To change all subfolder permission from a folder recursively you can type: find /home/xtr/Desktop/myFolder -type d -print0 |xargs -0 chmod 755 now all falders have the execution permission. To change…
Leggi tutto