Skip to content

Instantly share code, notes, and snippets.

@mhammonds
Created May 26, 2015 16:27
Show Gist options
  • Save mhammonds/afc00fa9152fbcf88e8d to your computer and use it in GitHub Desktop.
Save mhammonds/afc00fa9152fbcf88e8d to your computer and use it in GitHub Desktop.
Enable VMWare Fusion 7 Shared Folders on Fedora 21
#!/usr/bin/bash
# Before running this script, select "Reinstall VMware Tools" for
# the guest VM and then mount the vmware tools CD.
# Install the proper kernel headers for the OS
sudo yum install "kernel-devel-uname-r == $(uname -r)"
# Place the tools into a working directory and unmount the CD
cp "/run/media/$USER/VMware Tools/VMwareTools-9.9.2-2496486.tar.gz" ~/.
cd ~
tar -xzvf VMwareTools-9.9.2-2496486.tar.gz
cd vmware-tools-distrib/
eject
# Run the install and answer wizard questions
sudo ./vmware-install.pl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment