0 comments
Published miércoles, abril 18, 2007 by ::Skauch::.
- Make sure your Zune is not plugged in and your Zune software isn’t running
- open up regedit by going to the start menu and selecting “run”. Type regedt32 and hit “OK”
- Browse to HKEY_LOCAL_MACHINE\System\ControlSet001\Enum\USB\
- Search for “PortableDeviceNameSpace”. This should be contained in the Vid_####&Pid_####\########_-_########_-_########_-_########\Device Parameters within the above …\USB\ The ##’s listed here will be numbers and letters specific to your Zune
- Change the following values:
- EnableLegacySupport to 1
- PortableDeviceNameSpaceExcludeFromShell to 0
- ShowInShell to 1
- Plug in your Zune, and make sure the Zune Software starts up.
- Hopefully at this point you can open up “My Computer” and browse your device, though it does NOT show up as a drive letter.
Right now I can access it both as a harddrive and sync through the Zune Software.
0 comments
Published lunes, abril 02, 2007 by ::Skauch::.
(
Apache + PHP + Mysql + phpMyAdmin)
Apache 2 + PHP 5 + Mysql 5 + phpMyAdmin 2.10.0.2 :
- 1. Instalación & Configuración de Apache, PHP, Mysql
echo "dev-lang/php ctype pcre session unicode mysql mysqli" >>/etc/portage/package.use
emerge -av apache dev-lang/php dev-db/mysql
Configuramos rapidamente apache
nano /etc/conf.d/apache2
Debe quedar asi:
APACHE2_OPTS="-D DEFAULT_VHOST -D PHP5 -D SSL"
Editar el archivo /etc/apache2/httpd.conf y descomentar las siguientes lineas :
ServerName localhost
Configurez maintenant mysql en vous laissant guider :
emerge --config dev-db/mysql
Iniciamos apache y mysql :
/etc/init.d/apache2 start ; /etc/init.d/mysql start
Conectamos a MySQL para probarlo :
mysql -u root -p
Creamos un archivo /var/www/localhost/htdocs/test.php para probar si PHP funciona
Escribimos esta dirección en el navegador http://localhost/test.php y vemos el resultado.
- 2. Instalación & Configuración de phpMyAdmin
Instalamos phpMyAdmin :
emerge -av phpmyadmin
Configuración simple:
cd /var/www/localhost/htdocs/phpmyadmin
cp libraries/config.default.php config.inc.php
Etapa clave : Importar el .sql de configuración
mysql -u root -p < /usr/share/webapps/phpmyadmin/2.9.1.1/sqlscripts/mysql/2.10.0.2_create.sql
0 comments
Published martes, octubre 17, 2006 by ::Skauch::.
Te recuerdo aquí y parece que fue ayer entre barricadas, molotov y una bandera del Che. Te recuerdo aquí en el Peda y en la Utem, en la toma, en el paro, y por las calles marchando.
Y ahora estas en la moneda, no reprimes desde la intendencia. Pero eso ya lo has olvidado, ahora eres viejo y renovado.
Esta canción de Los Miserables es para todos los alcades, intendentes, diputados, alcaldes y presidentes (si gordis, tu también) que reprimieron con casi un ejercito a escolares por manifestar su pensamiento en las tomas estudiantiles.
0 comments
Published domingo, octubre 08, 2006 by ::Skauch::.
1) Abre una terminal
2) Abre el archivo /etc/apt/sources.list
sudo gedit /etc/apt/sources.list
3) Descomenta las siguientes lineas:
deb http://us.archive.ubuntu.com/ubuntu dapper universe
deb-src http://us.archive.ubuntu.com/ubuntu dapper universe
4) Añade esta linea:
deb http://wine.budgetdedicated.com/apt dapper main
5) Cierra gedit. Haz un update e instala wine y cabextract:
sudo apt-get update
sudo apt-get install wine cabextract
6) Baja IEs 4 Linux e instalalo
wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz
tar zxvf ies4linux-latest.tar.gz
cd ies4linux-*
./ies4linux
powered by performancing firefox
0 comments
Published domingo, agosto 13, 2006 by ::Skauch::.
Automatix te simplifica la vida al instalar algunos programas que no vienen en los repositorios oficiales de ubuntu. Para poder ocupar e instalar Automatix , primero debemos instalarlo:
sudo gedit /etc/apt/sources.list
agregar a la ultima linea:
deb http://www.getautomatix.com/apt dapper main
guardamos, y ahora bajamos las llaves GPG
wget http://www.getautomatix.com/apt/key.gpg.asc
gpg --import key.gpg.asc
gpg --export --armor 521A9C7C | sudo apt-key add -
luego actualizamos apt-get e instalamos automatix
sudo apt-get update
sudo apt-get install automatix
0 comments
Published jueves, junio 15, 2006 by ::Skauch::.
Escribe en una consola los siguientes comandos:
sudo apt-get install totem-xine
sudo gedit ~/.gnome2/totem_config
Luego en la sección que se muestra
# video driver to use
# string, default: auto
#video.driver:auto
añade la siguiente linea
video.driver:opengl
0 comments
Published lunes, junio 12, 2006 by ::Skauch::.
Está de moda ver videos en linea a travez de YouTube o VideoGoogle. Aquí hay un tip para bajar los videos de estas páginas y luego convertirlas a formatos como avi o mpg.
Primero hay que bajar el video en formato .flv con una extensión de Firefox llamada
VideoDownloader. [instalar]La solución es
FFmpeg, un sencillo conversor de vídeo que convertirá a mpg o avi. Para instalarlo hay que activas los repositorios universe y ejecutar en una terminal:
$sudo aptitude install ffmpeg
Luego para convertir en fichero a un formato avi por ejemplo se hace:
$ffmpeg -i video.flv -ab 56 -ar 22050 -b 500 -s 320×240 video.avi