Archive

Author Archive

I want out – Helloween

May 22nd, 2009 jpill No comments

I want out – Helloween

YouTube Preview Image

From all lives beginning on
We are pushed in little forms
No one asks us how we like to be
In school they teach us what to think
But everyone says different things
But theyre all convinced that
Theyre the ones to see

So they keep talking and they never stop
And at certains point you give it up
So the only thing thats left to think is this

I want out… to live my life alone
I want out… leave me be
I want out… to do things on my own
I want out… to live my life and to be free

People tell me a and b
They tell me how I have to see
Things that I have seen already clear
So they push me then from side to side
Theyre pushing me from black to white
Theyre pushingtil theres nothing more to hear

But dont push me to the maximum
Shut your mouth and take it home
cause I decide the way things gonna be

I want out… to live my life alone
I want out… leave me be
I want out… to do things on my own
I want out… to live my life and to be free

Theres a million ways to see the things in life
A million ways to be the fool
In the end of it, none of us is right
Sometimes we need to be alone

I want out… to live my life alone
I want out… leave me be
I want out… to do things on my own
I want out… to live my life and to be free

Categories: Musica, Video Tags: , , , ,

Relanzamiento portal Linux.com

May 14th, 2009 jpill 1 comment
Tux - Mascota Kernel Linux

Tux - Mascota Kernel Linux

Saludos.

Hace algunos meses la Linux foundation decidió formatear el sitio linuxfoundation.org, enfocandolo mas a  los intereses de la comunidad, o al menos así lo he sentido; el día de hoy recibí una noticia que también habia realizado el formateo de linux.com con algunas actividades para atraer mas visitantes y un aspecto simple, agradable y con contenidos interesantes, me parece que son medidas buenas, esto permite mayor comunicación entre los desarrolladores , los administradores y los usuarios.

Categories: Linux Tags:

Shell Fu

May 7th, 2009 jpill No comments

Ayer ví una página nueva llamada Shell Fu.

Categories: Linux Tags:

Videos Linux Foundation

May 4th, 2009 jpill No comments

Encontré estos videos de la Linux Foundation en youtube, realmente es dificil encontrar videos que no hagan ataque al windows, la verdad es que me molesta promocionar linux atacando windows, Linux es mucho mas que un sistema operativo inmune a los virus de windows y a la pantalla azul, es como si Linux estuvierá en la sombra de windows.

Linux no es una alternativa, es una opción

YouTube Preview Image YouTube Preview Image

[youyube=http://www.youtube.com/watch?v=H_0oWqOLpo4&feature=related]

YouTube Preview Image

Por supuesto una opinión contra Linux:

YouTube Preview Image

Ustedes juzgen.

Categories: Linux Tags: , ,

Anunciado Assassin Creed II

May 3rd, 2009 jpill 1 comment

He visto con gran agrado esta noticia, el anunció del release del juego Assassin Creed II, en esta ocasión el personaje principal será un descendiente de Altair llamado Ezio, este personaje ya podrá nadar y planeará como un murcielago, en la primer parte, hubó momentos en que me aburria por la repetición de acciones del juego, pero la segunda parte promete traer algo mas.

assassins_creed_wallpaper

Assassin Creed II

Categories: videogame Tags: , , , , ,

Noticias 3 de Mayo de 2009

May 3rd, 2009 jpill No comments
YouTube Preview Image
Categories: Linux Tags: , , , , , , ,

Primerazo

April 30th, 2009 jpill No comments
YouTube Preview Image

Primer Clip

Categories: Eventos Tags:

Install PostgreSQL 8.3.7 en Centos 5.3

April 30th, 2009 jpill No comments

La versión de Postgres para CentOS es la 8.1.x, lo que necesito es instalar la ultima version estable hasta la fecha (8.3.7), para hacerlo realizé lo siguiente:

  • Excluir postgres del repositorio Base de Centos:

# vi /etc/yum.repos.d/CentOS-Base.repo
[base]
name=CentOS-$releasever – Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
# Excluir postgres
exclude=postgresql*

#released updates
[updates]
name=CentOS-$releasever – Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
# Excluir postgres
exclude=postgresql*

  • Añadir el nuevo repositorio de postgres desde http://yum.pgsqlrpms.org/reporpms/repoview/pgdg-centos.html, un nivel mas arriba de esta página estan los repositorios para Fedora y Red Hat

# wget http://yum.pgsqlrpms.org/reporpms/8.3/pgdg-centos-8.3-6.noarch.rpm
# rpm -ivh pgdg-centos-8.3-6.noarch.rpm

  • Instalación de PostgreSQL server:

# yum install postgresql postgresql-server
… lot of output ….

despúes de la instalación necesito cambiar la ubicación de las bases de datos para una partición mayor, en mi caso ‘/home’, antes debo iniciar el servidor:

# service initdb postgresql -> Crea los archivos necesario e inicia el servidor
# su – postgres -c psql -> inicia sesión como postgres para poder cambiar la ubicación
Digite:  \copyright para ver los términos de distribución
\h para ayuda de órdenes SQL
\? para ayuda de órdenes psql
\g o punto y coma («;») para ejecutar la consulta
\q para salir
postgres=# initdb -D /home/postgres -> Esta carpeta debe existir y el dueño debe ser el usuario postgres
postgres=# \q -> Salir

Ahora los datos se guardan en /home/postgres, al hacer initdb -D /home/postgres los archivos necesario se crean allí.