Skip to content

Instantly share code, notes, and snippets.

@xbalaji
Last active June 27, 2020 03:05
Show Gist options
  • Save xbalaji/c5d57ff32522181d2ece8ff2b863f099 to your computer and use it in GitHub Desktop.
Save xbalaji/c5d57ff32522181d2ece8ff2b863f099 to your computer and use it in GitHub Desktop.
mount-cdrom-vmplayershared-remotehost-directories
# mount ubuntu cdrom -
sudo mount /dev/sr0 /mnt/cdrom
sudo mount /dev/cdrom /mnt/cdrom # older systems
# mount vmplayer shared directory
sudo mkdir -p /mnt/hgfs
sudo mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other
# mount remote machine windows or samba share
sudo mkdir -p $HOME/remote
sudo mount -t cifs -o user=<remote-user> //${REMOTE_HOST}/${REMOTE_EXPORT} $HOME/remote
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment