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
Tag: redhat-6
Quick How To Install Openstack On Fedura20
How to install openstack on Fedura20 First, Install fedura20 like you would normally do. enable ssh with
1 |
systemctl enable sshd.serivce |
disable the firewall with
1 2 |
systemctl disable firewalld.service systemctl stop firewalld.service |
Disable SElinux
1 2 |
/etc/selinux/config SELINUX=disabled |
Before fedura 20
1 |
yum install -y http://rdo.fedorapeople.org/rdo-release.rpm |
Install all needed pakges
1 |
yum install -y openstack-packstack |
Initialize open stack packstack –allinone Reference http://openstack.redhat.com/Quickstart
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