setup_new_ubuntu

Send to Kindle
home » snippets » vmware_fusion » setup_new_ubuntu


sudo aptitude install -y tree # display directory tree in color
sudo aptitude install -y gcc g++
sudo aptitude install -y make cmake
sudo aptitude install -y git
sudo aptitude install -y linux-headers linux-kernel-header
sudo aptitude install -y go-compiler protobuf-c-compiler protobuf-compiler

sudo aptitude install -y python-fuse
sudo aptitude install -y python-pyinotify{,-doc} inotify-tools


# Used patch from http://communities.vmware.com/message/1767809
# Prereqs:
sudo aptitude install -y git # To see my diffs
sudo aptitude install -y gcc g++ make
sudo aptitude install -y linux-headers linux-kernel-header


# Restart networking
/etc/init.d/networking stop
rmmod pcnet32
rmmod vmxnet
modprobe vmxnet
/etc/init.d/networking start

# Since the script you are attempting to invoke has been converted to an
# Upstart job, you may also use the start(8) utility, e.g. start networking
#
# networking stop/waiting

chestnut# 
chestnut# start networking
# networking stop/waiting


# In /etc/fstab:
#
#   .host:/shared_with_chestnut /mnt/host_share vmhgfs defaults,ttl=5,uid=1000,gid=1000 0 0
#
# For mounting manually, use
#   sudo mount -t vmhgfs .host:/shared_with_chestnut /mnt/host_share