Setting Up TFTP, NFS, and SSH Services on Ubuntu for Embedded Development
Development Environment
Reference system used:
Ubuntu 14.04.1 Desktop i386
VMware Workstation 10.0.2
Useful commands for environment verification:
lsb_release -a # Check Ubuntu version
cat /etc/issue # View Ubuntu version
ctrl+alt+a # Open terminal
du -sh [file/folder] # Check file or folder size
su root # Switch to ...
Posted on Sun, 13 Sep 2026 16:22:07 +0000 by Jade
Deploy Jenkins on Kubernetes with NFS Storage
Storage Configuration
This deployment uses NFS for persistent storage. Ensure a StorageClass named nfs-storage is already configured in your cluster.
Create Namespace
kubectl create namespace ops
Configure RBAC Permissions
Define a service account, cluster role, and binding to grant Jenkins necessary permissions:
# ServiceAccount
apiVersion: ...
Posted on Fri, 04 Sep 2026 16:13:48 +0000 by shareaweb
High-Availability NFS Cluster with DRBD and Pacemaker-Compatible Heartbeat
To isolate heartbeat traffic and avoid interference from production interfaces, static host routes are added for the dedicated interconnect (eth2). These persist across reboots:
# On primary node (hostname: master)
ip route add 10.20.23.111/32 dev eth2
echo "ip route add 10.20.23.111/32 dev eth2" >> /etc/rc.d/rc.local
# On seco ...
Posted on Sun, 30 Aug 2026 16:23:45 +0000 by amos_
Setting Up NFS File Sharing on CentOS 7
Creating Symbolic Links To create a symbolic link directory /shared pointing to the source directory /data/shared, ensure there's no existing directory named "shared" in the root directory, then execute:
ln -s /data/shared /shared
Verify the link with:
ll shared
# Output: shared -> /data/shared
Note: Configure firewall settings ...
Posted on Sat, 15 Aug 2026 16:50:02 +0000 by buraks78
Managing Data Persistence in Kubernetes: From Volumes to StorageClasses
Data Classification in Containerized Environments
Container filesystems are inherently ephemeral. When a container crashes or is deleted, any changes made to its local storage are lost. To manage data effectively, we generally categorize container data into three types:
Configuration Data: Initial settings or files required at startup.
Transie ...
Posted on Thu, 06 Aug 2026 17:01:01 +0000 by k9underdog
Parallel NFS (pNFS) Environment Setup
Note: The setup with CentOS 8 (kernel 4.18) is not viable. Switch the client and MDS to Ubuntu (tested successfully on Ubuntu 18.04 with kernel 4.15) while keeping the setup steps the same.
With the rapid development of networking and parallel computing, file I/O has become a bottleneck for overall system performence. Traditional NFS versions f ...
Posted on Sat, 11 Jul 2026 16:15:43 +0000 by larrygingras
Troubleshooting RPCbind Service Startup Failure on CentOS 7
RPCbind Service Failure on CentOS 7.4
Issue Summary
After rebooting a virtual machine, NFS mounts configured in /etc/rc.local failed to execute properly.
Root Cause Analysis
The root cause was that the rpcbind service failed to start, which prevented NFS mounts from functioning. Attempting to restart the service reuslted in the following error: ...
Posted on Wed, 08 Jul 2026 16:46:52 +0000 by mjseaden
Setting Up NFS Server and Client on Linux
NFS Server Setup
Installing Required Packages
yum install -y nfs-utils
Configuring the Export File
Edit the exports configuration file to define which dierctories to share:
vim /etc/exports
Add the following line to share /data/shared with the specified network:
/data/shared 10.0.0.0/24(rw,sync,fsid=0)
Configuration options explained:
Opt ...
Posted on Thu, 14 May 2026 19:12:44 +0000 by ryanfern86goa
Configuring YUM Repositories and NFS Shared Storage on Linux
Configuring Local and Remote YUM Repositories
Setting Up a Local Repository Using File Access
Create a repository definition file pointing to a ISO mount point:
cd /etc/yum.repos.d/
cat > local-repo.repo <<EOF
[local-repo]
name=Local Repository
baseurl=file:///iso_mount
enabled=1
gpgcheck=0
EOF
mkdir -p /iso_mount
mount /dev/cdrom /is ...
Posted on Wed, 13 May 2026 12:57:35 +0000 by Helljumper
Implementing Yum Repositories, NFS Shared Storage, and Network Packet Analysis
Configuring Yum Software RepositoriesYUM (Yellowdog Updater Modified) is a package management utility that simplifies the installation, updating, and removal of software packages on Linux distributions. By resolving dependencies automatically, it alleviates the need for manual administrative intervention when managing RPM packages. In environme ...
Posted on Fri, 08 May 2026 18:30:40 +0000 by PartyMarty