From Ubuntu official site you can check all about support of your Ubuntu SO support at : https://ubuntu.com/about/release-cycle
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
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
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” .
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
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