What command would mount a remote NFS filesystem ‘/shared’ on the host ‘tiger’ on the local machine to the directory /shared, using a read and write blocksize of 8192?
A.
mount tiger:/shared /shared
B.
mount -o read=8192,write=8192 tiger:/shared /shared
C.
mount -o rw=8192 tiger:/shared /shared
D.
mount -o rsize=8192,wsize=8192 tiger:/shared /shared