$ which php
$ git clone https://github.com/angular/quickstart.git quickstart
$ cd quickstart
$ npm install
$ npm start
Se levantar谩 el sitio en http://localhost:3000/
1.- Descargar el Oracle Instant Client 'Basic' y 'SDK' ZIPs
Version 11.2.0.4.0
Instant Client Package - Basic: All files required to run OCI, OCCI, and JDBC-OCI applications
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 | |
# Autor: Andr茅s Duarte M. | |
# Crear usuario en linux | |
echo "Ingresa nombre de usuario:" | |
read user | |
useradd $user | |
passwd $user |