cd /Volumes mkdir netshare mount -t smbfs //username@server/netshare netshareThis can be condensed to just one line.
mkdir /Volumes/netshare && mount -t smbfs //username@server/netshare /Volumes/netshareIf the network share requires authentication, a password prompt will appear.
In good fashion it is good to know how to undo what you did; here is the unmout command.
umount netshare rm -r /Volumes/netshare
No comments:
Post a Comment