Agent skill
nfs-storage
Configure NFS servers and clients. Implement network file sharing for Linux systems. Use when setting up shared storage.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/nfs-storage
Metadata
Additional technical details for this skill
- author
- devops-skills
- version
- 1.0
SKILL.md
NFS Storage
Configure NFS for network file sharing.
Server Configuration
# Install
apt install nfs-kernel-server
# Configure exports
# /etc/exports
/data 10.0.0.0/24(rw,sync,no_subtree_check,no_root_squash)
/shared *(ro,sync,no_subtree_check)
# Apply changes
exportfs -ra
# Start service
systemctl enable --now nfs-kernel-server
Client Configuration
# Install
apt install nfs-common
# Mount
mount -t nfs server:/data /mnt/data
# /etc/fstab
server:/data /mnt/data nfs defaults,_netdev 0 0
Kubernetes NFS
apiVersion: v1
kind: PersistentVolume
metadata:
name: nfs-pv
spec:
capacity:
storage: 100Gi
accessModes:
- ReadWriteMany
nfs:
server: nfs-server.example.com
path: /data
Best Practices
- Use proper export options
- Implement firewall rules
- Monitor NFS performance
- Use NFSv4 for security
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?