From the NFS Server, do put in the command below. The NFS Server is 192.168.0.1 and the NFS Server port is 2049
# netstat -an | grep 192.168.0.1:2049
tcp 0 0 192.168.0.1:2049 192.168.0.10:965 ESTABLISHED
(192.168.0.10 is the client)
From the NFS Server, do put in the command below. The NFS Server is 192.168.0.1 and the NFS Server port is 2049
# netstat -an | grep 192.168.0.1:2049
tcp 0 0 192.168.0.1:2049 192.168.0.10:965 ESTABLISHED
(192.168.0.10 is the client)
To Register, See https://www.redhat.com/en/summit
Step 1: Do a Yum Install
# yum install nfs-utils rpcbind
Step 2: Enable the Service at Boot Time
# systemctl enable nfs-server # systemctl enable rpcbind # systemctl enable nfs-lock (it does not need to be enabled since rpc-statd.service is static.) # systemctl enable nfs-idmap (it does not need to be enabled since nfs-idmapd.service is static.)
Step 3: Start the Services
# systemctl start rpcbind # systemctl start nfs-server # systemctl start nfs-lock # systemctl start nfs-idmap
Step 4: Confirm the status of NFS
# systemctl status nfs
Step 5: Create a mount point
# mkdir /shared-data
Step 6: Exports the Share
# vim /etc/exports /shared-data 192.168.0.0/16(rw,no_root_squash)
Step 7: Export the Share
# exportfs -rv
Step 8: Restart the NFS Services
# systemctl restart nfs-server
Step 9: Configure the Firewall
# firewall-cmd --add-service=nfs --zone=internal --permanent # firewall-cmd --add-service=mountd --zone=internal --permanent # firewall-cmd --add-service=rpc-bind --zone=internal --permanent
References:
There is this question that I wanted to find out about deep learning. What are essential System, Network, Protocol that will speed up the Training and/or Inferencing. There may not be necessary to employ the same level of requirements from Training to Inferencing and Vice Versa. I have received this information during a Nvidia Presentation
RStudio can be configured by adding entries to 2 configuration files. It may not exist by default and you may need to create
/etc/rstudio/rserver.conf /etc/rstudio/rsession.conf
If you need to add additional libraries to the default LD_LIBRARY_PATH for R sessions. You have to add the parameters to the /etc/rstudio/rserver.conf
Step 1: Enter External Libraries settings
For example, you may want to add GCC-6.5 libraries
# Server Configuration File rsession-ld-library-path=/usr/local/gcc-6.5.0/lib64:/usr/local/gcc-6.5.0/lib
Step 2a: Stop the R Server Services
# /usr/sbin/rstudio-server stop
Step 2b: Verify the Installation
# rstudio-server verify-installation
Step 2c: Start the R Server Services
# /usr/sbin/rstudio-server start # /usr/sbin/rstudio-server status
(Make sure there is no error)
References:
What is AlmaLinux? According to the website https://almalinux.org/
AlmaLinux is an enterprise-grade server OS, a stable Linux distribution with regular releases that come with long support windows. You can rely on AlmaLinux to run you and your clients’ critical workloads.
From RHEL, “No-cost RHEL for small production workloads and customer development teams”
We’re addressing this by expanding the terms of the Red Hat Developer program so that the Individual Developer subscription for RHEL can be
used in production for up to 16 systems. That’s exactly what it sounds like: for small production use cases, this is no-cost, self-supported RHEL.
You need only to sign in with a free Red Hat account (or via single sign-on through GitHub, Twitter, Facebook, and other accounts) to download
RHEL and receive updates. Nothing else is required. This isn’t a sales program and no sales representative will follow up. An option will exist within
the subscription to easily upgrade to full support, but that’s up to you.
……
The updated Individual Developer subscription for RHEL will be available no later than February 1, 2021.
OneJoin uses Data Parallel C++ (DPC++) to execute an edit similarity join algorithm across different compute systems, solving a key problem in reading large-scale DNA sequences
For more information do take a look at Enable DNA Storage on Heterogeneous Architectures with oneAPI