1. Prerequisites A server with Ubuntu 24.04 LTS. Access with sudo privileges. A domain name pointing to your server’s IP address (e.g., miosito.com). 2. Update the System Run the command to update your system:
1 |
sudo apt update && sudo apt upgrade -y |
3. Install Apache Install Apache as the web server:
1 |
sudo apt install apache2 -y |
Start and enable Apache:
1 2 3 4 |
sudo systemctl start apache2 sudo systemctl enable apache2 |
4. Install MariaDB and…
Read more
This guide walks you through the steps to install and configure a Perforce Helix Core Server on an Ubuntu 24.04 distribution, ensuring everything is set up correctly. Step 1: Add the Perforce Repository Download the Perforce GPG Key:
1 |
wget -qO /usr/share/keyrings/perforce-archive-keyring.gpg https://package.perforce.com/perforce.pubkey |
Add the Repository:
1 |
echo "deb [signed-by=/usr/share/keyrings/perforce-archive-keyring.gpg] http://package.perforce.com/apt/ubuntu jammy release" | sudo tee /etc/apt/sources.list.d/perforce.list |
Update Package Lists:
1 |
sudo apt update |
Step 2: Install Helix Core (p4d) Install the…
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
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
Configuring NFS Server: Installing NFS services on your ubuntu system
1 2 3 4 |
sudo nano /etc/fstab sudo apt install nfs-kernel-server sudo apt-get install nfs-kernel-server portmap nfs-common |
1 |
sudo showmount -a |
configure mount folders and define sub nets can access to
1 |
sudo nano /etc/exports |
/etc/export sample:
1 2 3 4 5 6 7 8 9 10 11 12 |
<span style="color: #06989a;"># /etc/exports: the access control list for filesystems which may be exported</span> <span style="color: #06989a;"># to NFS clients. See exports(5).</span> <span style="color: #06989a;">#</span> <span style="color: #06989a;"># Example for NFSv2 and NFSv3:</span> <span style="color: #06989a;"># /srv/homes hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)</span> <span style="color: #06989a;">#</span> <span style="color: #06989a;"># Example for NFSv4:</span> <span style="color: #06989a;"># /srv/nfs4 gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)</span> <span style="color: #06989a;"># /srv/nfs4/homes gss/krb5i(rw,sync,no_subtree_check)</span> <span style="color: #06989a;">#</span> /home/<mymountfolder> 192.168.XXX.XXX/24(rw,sync,no_subtree_check,crossmnt,fsid=0,no_root_squash) /home/<mymountfolder> 192.168.MMM.MMM/24(rw,sync,no_subtree_check,crossmnt,fsid=0,no_root_squash) |
Verify export options
1 |
sudo exportfs -arv |
1 2 |
sudo systemctl restart nfs-kernel-server sudo service nfs restart |
Configure your MS-Windows 10 client: Configure your MacOSX client:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
mkdir /Users/<yourusername>/<yourmountpoint> sudo mount -o resvport,rw,noowners -t nfs 192.168.JJJ.JJJ:/home/<mymountfolder> /Users/<yourusername>/<yourmountpoint> sudo nano /etc/fstab poi scrivi dentro 192.168.JJJ.JJJ:/home/<mymountfolder> /Users/<yourusername>/<yourmountpoint> nfs rw,nolockd,resvport,hard,bg,initr,tcp,nfc,rsize=65536,wsize=65536 sudo automount -vc |
Configure your Ubuntu client: Install requirements and create your mount…
Read more