This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "*****************************************" | |
| echo " Add the 10gen repository - after you press" | |
| echo " enter add the following lines and then" | |
| echo " cntl-X to save:" | |
| echo " [10gen]" | |
| echo " name=10gen Repository" | |
| echo " baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64" | |
| echo " gpgcheck=0" | |
| echo "*****************************************" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "*****************************************" | |
| echo " get superuser and install all updates " | |
| echo "*****************************************" | |
| sudo su | |
| yum –y update | |
| echo "*****************************************" | |
| echo " Installing Development Tools" | |
| echo "*****************************************" | |
| yum install gcc gcc-c++ make -y |
NewerOlder