Archive > Tag: FOSS

HowTo: Cómo liberar la cache de RAM

A veces, necesitas el espacio:

# liberar el pagecache:
echo 1 > /proc/sys/vm/drop_caches

# Para liberar los dentries y los inodes:
echo 2 > /proc/sys/vm/drop_caches

# Para liberar todo (pagecache, dentries e inodes):
echo 3 > /proc/sys/vm/drop_caches

Ésta es una operación no destructiva. Los objetos "sucios" no …


HowTo: Cómo forzar a un usuario a refrescar su password en el siguiente login

Muy fácil; solo caduca el password. Ahora, si es un usuario nuevo, en Fedora, no puede hacer login sin password. Hay que asignar uno temporal:

# te haces root
su -

# creas un usuario
useradd renich

# le das un password temporal
passwd renich

# le caducas el password
chage -d 0 renich

En …


HowTo: Como hacer que se vean los mp4 en Fedora 15

Bueno, al parecer, acá está el problema reportado:

https://bugzilla.redhat.com/show_bug.cgi?id=718013

No olvides instalar rpmfusion free y nonfree

http://www.rpmfusion.org/

También, instala los plugins de gstreamer (los devels no)

su -c 'yum -y install gstreamer gstreamer-devel gstreamer-devel-docs.noarch gstreamer-ffmpeg gstreamer-java gstreamer-plugins-bad gstreamer-plugins-bad-free gstreamer-plugins-bad-free-extras …

GNU and Numbers

Check this out:

a b c d e f g h i j  k  l  m  n  o  p  q  r  s  t  u  v  w  x  y  z
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 …

HowTo: Cómo ver la fecha de creación de un archivo en GNU & Linux

Estuve buscando al respecto y, como siempre, encontré mucho menso que dice "eso no se puede!". De hecho, encontré un artículo que afirmaba "Nunca se guardan las creation time en Linux!".

En todo caso, no es "en Linux"; es "en $X filesystem". Por favor, no leas todo lo que crees …


HowTo: Cómo conectarte a AxtelConmigo desde Fedora 15

Ah, qué chido y qué fácil!

Primero, este servicio es la onda. Te permite conectarte desde cualquier dispositivo con un SIP a tu teléfono y recibir o marcar desde ahí!

La onda es registrarse en http://www.axtelconmigo.com.mx/ y tener una línea axtel (obviamente)

Luego, viene lo interesante …


introbella is on the move!

Oh yeah! I really like making this announcement.

introbella is on it! We're making new songs and we're gonna be releasing everything in english from now on! World, get ready for some really cool music!

Our newest project is to compose a few EPs. 4-6 songs per album and let …


BoxGrinder 0.9.2 soporta a CloudSigma!

Qué buena noticia!

Hoy me contactó Robert para darme la buena noticia!

No sabes qué es BoxGrinder?! Es una madre para crear servers en la nube; con un simple comandito y una definición.

Te invito a ver el tutorial que pongo al fondo. Está de mega-pelos. Así, puedes crear servers …


HowTo: Deploy using git

This one is not mine. It's, actually, a transcript. Please, check out the source at the bottom

#
# Local
#

# Create a website
mkdir website && cd website
git init
echo 'Hello, world!' > index.html
git add index.html
git commit -q -m "The humble beginnings of my web site."

# add remotes
git …

HowTo: Change upload_max_filesize on a standard DreamHost account

Ok, recently, a good friend, needed some help. He wanted to change the upload_maz_filesize value of his DreamHost account but was so frustrated when he learned that .htaccess files don't work for him...

It is simple: you're using FastCGI and you should be using .user.ini files to set php …