DevTech101

DevTech101

redhat-6

How to mount a cdrom or disk in linux (thrue ilom)

First get the device name dmesg | egrep -i –color 'cdrom|dvd|cd/rw|writer' Create mountpoint if not exsists mkdir /media/cdrom mkdir /media/disk Syntax to mount DVD / CDROM in Linux mount -t iso9660 -o ro /dev/deviceName /path/to/mount/point For Example mount -t iso9660 -o ro /dev/sr0 /cdrom Syntax to mount disk in Linux mount /dev/deviceName /path/to/mount/point

Quick How To Install Openstack On Fedura20

How to install openstack on Fedura20 First, Install fedura20 like you would normally do. enable ssh with systemctl enable sshd.serivce disable the firewall with systemctl disable firewalld.service systemctl stop firewalld.service Disable SElinux /etc/selinux/config SELINUX=disabled Before fedura 20 yum install -y http://rdo.fedorapeople.org/rdo-release.rpm Install all needed pakges yum install -y openstack-packstack Initialize open stack packstack –allinone Reference …

Quick How To Install Openstack On Fedura20 Read More »

Allow 32bit applications on 64bit RedHat/OEL

If you don't install 32bit OS librrey's you might get errors like this. perl  perl: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.2.5, not stripped To fix this issue you will need to install at miniumem the system 32bit libryrys yum install glibc.i686