# MX-NFS =# Requirements =============== 1. ubuntu 10.04 32 bit 1. ubuntu 10.04 64 bit =# Install nfs server ====================== sudo apt-get install nfs-kernel-server portmap nfs-common =# Download nfs ready filesystem ================================ cd wget http://voipac.com/downloads/imx/53/bin/rootfs-nfs-bb-1-18-vmx53-vpac0.tar.gz =# Extract filesystem ===================== cd sudo mkdir -pv /tftpboot sudo chmod -R 777 /tftpboot sudo tar xvzf rootfs-nfs-bb-1-18-vmx53-vpac0.tar.gz -C /tftpboot =# Configure nfs server =# 2. /tftpboot/rootfs-bb-1-18-vmx53-vpac0 =# by adding folloving lines to /etc/exports ============================================ sudo gedit /etc/exports #S----------------------------------------------------------------------------S# /tftpboot/rootfs-bb-1-18-vmx53-vpac0 *(rw,no_root_squash,no_all_squash,no_subtree_check,sync) #E----------------------------------------------------------------------------E# =# Restart nfs server ====================== sudo /usr/sbin/exportfs -a sudo /usr/sbin/service portmap restart sudo /usr/sbin/service nfs-kernel-server restart =# Test if nfs work =================== cd mkdir share sudo mount 192.168.0.1:/tftpboot/rootfs-bb-1-18-vmx53-vpac0 ~/share