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/sh | |
| # This command will update & upgrade your system | |
| sudo apt update && sudo apt-get upgrade --fix-missing | |
| # Install the package build-essential for making the package and checkinstall for putting it into your package manager | |
| sudo apt install build-essential checkinstall | |
| # Install Ubuntu Restricted Extras | |
| sudo apt install ubuntu-restricted-extras |
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 | |
| # Run as root | |
| set -e | |
| apt-get update | |
| apt-get install -y build-essential | |
| apt-get install -y libncurses5-dev | |
| useradd mysql |
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
| sudo wget https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.3.zip | |
| sudo unzip ruby-2.5.3.zip | |
| cd ruby-2.5.3/ | |
| sudo ./configure | |
| sudo make | |
| sudo make install | |
| ruby --version | |
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 | |
| If you need installation help, contact with me: | |
| Skype: aataur1 | |
| Telegram: @AutoDevOps | |
| WhatsApp: +8801751643484 | |
| Email: afahitech@gmail.com |
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
| If you need installation help, contact with me: | |
| Skype: aataur1 | |
| Telegram: @AutoDevOps | |
| WhatsApp: +8801751643484 | |
| Email: afahitech@gmail.com | |
| =========================================================== | |
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/sh | |
| If you need installation help, contact with me: | |
| Skype: aataur1 | |
| Telegram: @AutoDevOps | |
| WhatsApp: +8801751643484 | |
| Email: afahitech@gmail.com | |
| =========================================================== |
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 | |
| If you need installation help, contact with me: | |
| Skype: aataur1 | |
| Telegram: @AutoDevOps | |
| WhatsApp: +8801751643484 | |
| Email: afahitech@gmail.com | |
| =========================================================== |
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/sh | |
| If you need installation help, contact with me: | |
| Skype: aataur1 | |
| Telegram: @AutoDevOps | |
| WhatsApp: +8801751643484 | |
| Email: afahitech@gmail.com | |
| =========================================================== |
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 | |
| If you need installation help, contact with me: | |
| Skype: aataur1 | |
| Telegram: @AutoDevOps | |
| WhatsApp: +8801751643484 | |
| Email: afahitech@gmail.com | |
| =========================================================== |
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/sh | |
| # Docker Install | |
| sudo apt-get update -y | |
| sudo apt-get upgrade -y | |
| sudo apt-get install apt-transport-https ca-certificates curl software-properties-common -y | |
| sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| sudo add-apt-repository \ | |
| "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ |
OlderNewer