Skip to content

Instantly share code, notes, and snippets.

@rvanider
Last active October 16, 2015 13:16
Show Gist options
  • Save rvanider/f4a6144509e2da41eb86 to your computer and use it in GitHub Desktop.
Save rvanider/f4a6144509e2da41eb86 to your computer and use it in GitHub Desktop.
Oracle Linux Setup
add /etc/sudoers.d/vagrant
vagrant ALL=(ALL) NOPASSWD: ALL
Defaults:vagrant !requiretty
Defaults:vagrant visiblepw
/etc/sysconfig/network-scripts/ifcfg-eth0
remove HWADDR line (mac)
add ONBOOT=yes
/etc/udev/rules.d/70-persistent-net.rules
remove HWADDR attribute
yum update
yum install zip unzip telnet wget xz git scl-utils
yum clean all
gcc update
http://docs.oracle.com/cd/E37670_01/E59096/E59096.pdf
wget -O /etc/yum.repos.d/public-yum-ol6.repo http://public-yum.oracle.com/public-yum-ol6.repo
set enabled=1 for the software collection package in the repo file
yum install devtoolset-3-gcc devtoolset-3-gcc-c++
# parallels
yum install kernel-uek-devel
wget http://linux.dell.com/dkms/permalink/dkms-2.2.0.3-1.noarch.rpm
rpm -i dkms-2.2.0.3-1.noarch.rpm
enable ol6_UEKR3_latest repo in /etc/yum.repo.d/
add /etc/profile.d/node.sh
export PATH=/opt/node/bin:$PATH
su node
npm -g update
npm -g install forever nodemon nan node-gyp
# installing a node module requiring the 4.8+ gcc
scl enable devtoolset-3 bash
export CXX=gcc
npm install bignum
# java - lack of entropy in VM causes slow startup
edit /.../jre-version/lib/security/java.security
change securerandom.source to securerandom.source=/tmp/random.bin
generate file as dd if=/dev/urandom of=/tmp/random.bin bs=1MB count=10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment