Tag: install

Docker install on OpenSuse Tumbleweed

sudo zypper in docker sudo systemctl start docker sudo systemctl enable docker sudo /usr/sbin/usermod -a -G docker dmalpass sudo docker run –rm -i -t opensuse /bin/bash      

Oracle Database 11gR2 install on OEL 6.5

73 yum install libaio 75 yum install libaio.i686 77 yum install glibc.i686 79 yum install compat-libstdc++-33.i686 81 yum install elfutils-libelf-devel 83 yum install libaio-devel.i686 85 yum install libgcc.i686 87 yum install compat-libstdc++-33.i686 89 yum install unixODBC.i686 unixODBC.x86_64 91 yum install unixODBC-devel.i686 unixODBC-devel.x86_64 93 yum install mksh.x86_64  

VirtualBox install on Fedora 20 64bit

Since I always forget the details, here is how to install VirtualBox on Fedora 64bit Download and install VirtualBox Install the following required packages for /etc/init.d/vboxdrv to setup correctly yum install kernel-headers kernel-devel dkms Next run the /etc/init.d/vboxdrv setup You should see the following output /etc/init.d/vboxdrv setup Stopping VirtualBox kernel modules [ OK ] Uninstalling …

Continue reading

Citrix Receiver install on OEL / Redhat 6.3

Download and install Citrix Reciver client Install complained about alsa-lib sounds drivers. Apparently it needs 32bit alsa-lib so: yum install alsa-lib.i686 Install complained about libcrypto so had to install the 32bit openssl yum install openssl.i686 Modify the /opt/Citrix/ICAClient/util/integrate.sh script to include the correct Firefox config executable. ########## found_netscape() { ALREADY_MIMETYPE=0 ALREADY_MAILCAP=0 arch=`uname -m` if [ …

Continue reading

CYGWIN install on Windows 8 ssh-host-config as well!

Install cygwin from cygwin.com Run cygwin shell as “Administrator” Run “ssh-host-config” $ ssh-host-config *** Info: Generating /etc/ssh_host_key *** Info: Generating /etc/ssh_host_rsa_key *** Info: Generating /etc/ssh_host_dsa_key *** Info: Generating /etc/ssh_host_ecdsa_key *** Info: Creating default /etc/ssh_config file *** Info: Creating default /etc/sshd_config file *** Info: Privilege separation is set to yes by default since OpenSSH 3.3. *** …

Continue reading