User:Plauchu Edwin: Difference between revisions

From Yocto Project
Jump to navigationJump to search
Line 3: Line 3:
=== Set harness server up ===
=== Set harness server up ===
==== Setup NFS ====
==== Setup NFS ====
Network file system (NFS) is used to share the images and other files used in flashing for PC-devices.
To check if the NFS server is installed, we can do...
<pre>
root@testing-harness:~# dpkg -l | grep nfs-kernel-server
</pre>
To install NFS these are the required packages...
<pre>
<pre>
root@testing-harness:~# aptitude install nfs-kernel-server
root@testing-harness:~# aptitude install nfs-kernel-server
Line 11: Line 19:
Need to get 470 kB of archives. After unpacking 1 884 kB will be used.
Need to get 470 kB of archives. After unpacking 1 884 kB will be used.
Do you want to continue? [Y/n/?]
Do you want to continue? [Y/n/?]
</pre>
<pre>
echo '/home/tester 192.168.1.0/24 (crossmnt,ro,root_squash,sync,no_subtree_check)' >> /etc/exports
</pre>
</pre>

Revision as of 15:03, 17 October 2016

Software developer over several open source languages

Set harness server up

Setup NFS

Network file system (NFS) is used to share the images and other files used in flashing for PC-devices.

To check if the NFS server is installed, we can do...

root@testing-harness:~# dpkg -l | grep nfs-kernel-server

To install NFS these are the required packages...

root@testing-harness:~# aptitude install nfs-kernel-server
The following NEW packages will be installed:
  keyutils{a} libnfsidmap2{a} libtirpc1{a} nfs-common{a} nfs-kernel-server 
  rpcbind{a} 
0 packages upgraded, 6 newly installed, 0 to remove and 459 not upgraded.
Need to get 470 kB of archives. After unpacking 1 884 kB will be used.
Do you want to continue? [Y/n/?]


echo '/home/tester 192.168.1.0/24 (crossmnt,ro,root_squash,sync,no_subtree_check)' >> /etc/exports