Privacy Overview
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Siempre activas
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.

No hay cookies para mostrar.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No hay cookies para mostrar.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.

No hay cookies para mostrar.

Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.

No hay cookies para mostrar.

Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.

No hay cookies para mostrar.

jekyll

Tutorial instalar Ruby Gems Jekyll en Linux Ubuntu 12.04

En este tutorial veremos cómo instalar en Linux Ubuntu 12.04 el lenguaje de  programación Ruby, más Gems y Jekyll, que es utilizado en Github.com para crear los sitios webs de los proyectos y las organizaciones allí hospedadas. Por último veremos cómo crear nuestro primer sitio web.

Comenzamos:

  1. Abrimos un terminal y escribimos nuestro primer comando para actualizar la lista de paquetes de software:

sudo apt-get update

  1. Ahora actualizamos el sistema operativo y los paquetes:

sudo apt-get upgrade

  1. Instalamos Ruby:

sudo apt-get install ruby

  1. Instalamos Gems:

sudo apt-get install rubygems

  1. Instalamos json:

sudo gem install json

  1. Finalmente instalamos Jekyll:

sudo gem install jekyll

  1. Ahora ya podemos crear nuestro primer sitio web de pruebas con Jekyll:

jekyll new sitioweb-pruebas

  1. Cambiamos al directorio del sitio web:

cd sitioweb-pruebas

  1. Escribimos este comando y ya podemos navegar por el sitio web abriendo el navegador en http://localhost:4000:

jekyll serve

Enlaces:

Ubuntu: [ubuntu.com]
Lenguaje de programación: [ruby-lang.org]
Alojamiento de «gems» de la comunidad Ruby: [rubygems.org]
Creador de sitios web/blogs estáticos: [jekyllrb.com]
Github: [github.com]


Comentarios

Una respuesta a «Tutorial instalar Ruby Gems Jekyll en Linux Ubuntu 12.04»

  1. Información Bitacoras.com
    Valora en Bitacoras.com: Tutorial instalar Ruby Gems Jekyll en Linux Ubuntu 12.04