Last active
June 29, 2016 15:49
-
-
Save mcabreradev/4b815f8a946c52d76e46 to your computer and use it in GitHub Desktop.
Dependencias Desarrollo
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
# Build Essential | |
sudo apt-get install -y build-essential | |
#Instalacion elemental | |
sudo apt-get install apache2 libapache2-mod-php5 php5-mysql php5-pgsql php5-intl php5-sqlite php5-curl php5-xdebug php5-gd php5-geoip php5-mcrypt php5-redis php5-memcache php5-memcached git mysql-server mysql-client libmysqlclient-dev git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties | |
# Compresores | |
sudo apt install ubuntu-restricted-extras rar unace p7zip-full p7zip-rar sharutils mpack arj | |
# Escenciales | |
sudo apt-get install synaptic vlc gimp gimp-data gimp-plugin-registry gimp-data-extras y-ppa-manager bleachbit openjdk-7-jre oracle-java8-installer flashplugin-installer unace unrar zip unzip p7zip-full p7zip-rar sharutils rar uudeview mpack arj cabextract file-roller libxine1-ffmpeg mencoder flac faac faad sox ffmpeg2theora libmpeg2-4 uudeview libmpeg3-1 mpeg3-utils mpegdemux liba52-dev mpeg2dec vorbis-tools id3v2 mpg321 mpg123 libflac++6 totem-mozilla icedax lame libmad0 libjpeg-progs libdvdcss2 libdvdread4 libdvdnav4 libswscale-extra-2 ubuntu-restricted-extras ubuntu-wallpapers* | |
sudo apt-get install git tmux parcellite ssh | |
#sudo a2enmod rewrite | |
sudo service apache2 restart | |
#instalar composer | |
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer | |
#Si al actualizar los paquetes lavaravel falta el mcrypt | |
sudo ln -s /etc/php5/conf.d/mcrypt.ini /etc/php5/mods-available/mcrypt.ini | |
sudo php5enmod mcrypt | |
sudo service apache2 restart | |
#instalar node 4 | |
curl -sL https://deb.nodesource.com/setup_4.x | sudo bash - && sudo apt-get install nodejs | |
#instalar node 5 | |
curl -sL https://deb.nodesource.com/setup_5.x | sudo bash - && sudo apt-get install nodejs | |
#instalar yeoman | |
npm install -g yo | |
npm install -g generator-angular # install generator | |
yo angular # scaffold out a AngularJS project | |
bower install angular-ui # install a dependency for your project from Bower | |
grunt test # test your app | |
grunt serve # preview your app (formerly `grunt server`) | |
grunt | |
#yeoman react | |
npm install -g generator-react-fullstack | |
#fedora | |
# install PHP | |
sudo dnf install php php-common php-gd php-mcrypt php-pear php-pecl-memcache php-mhash php-mysql php-pgsql php-gd php-xml php-mbstring php-zip | |
# isntall PHP7 | |
sudo dnf install php70w php70w-opcache php70w-common php70w-dba php70w-mysql php70w-pdo php70w-pecl-xdebug php70w-pgsql php70w-mcrypt php70w-fpm | |
# install composer | |
curl -sS https://getcomposer.org/installer | php | |
sudo mv composer.phar /usr/local/bin/composer | |
# install laravel | |
composer global require "laravel/installer=~1.1" | |
sudo ln -s ~/.composer/vendor/bin/laravel /usr/local/bin/laravel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CAPO