Entradas

Micro sd read only ubuntu

I wasn't able to format a micro sd card using ubuntu. So I saw several threads but none worked on my device. The following steps allowed me to format it. This wasn't my sd card so I was able to validate all once, but not find if all steps are required. #Find the device you want to access: sudo fdisk -l #Example output: /dev/sdb1 #Set some variables to ease the access to your device DEV=dev/sdb DEVX=dev/sdb1 #The following code lines seemed to fix the problem, including the last one. Them alone don't seem to work sudo chown ${USER}:${USER} -R ${DEV} sudo chown ${USER}:${USER} -R ${DEVX} find ${DEV} -type d -execdir chmod 777 -Rv {} + find ${DEVX} -type d -execdir chmod 777 -Rv {} + chmod 777 ${DEV} chmod 777 ${DEVX} sudo mount -orw,remount ${DEV}

Check the information you leave while browsing the internet

Check the information you leave while browsing the internet. Here I show you some of the variables that your device sends every time you visit a website:

Sine signal sound generator

Frecuencia (0 a 24kHz) Play Stop

Xencenter on GNU/Linux

In this publication will be present the steps to install Xencenter on Linux. Software used: Ubuntu 16.04.1 LTS (To see this use the comand lsb_release -a ) PlayOnLinux 4.2.10 XenCenter version 6.5 (build 6.5.2.2477) 32-bit As may be seen the way to do it is by using playonlinux, for which the way to install it is: sudo apt-get install playonlinux Once installed playonlinux, select Install, Install a non-listed program, after this select Install a program in a new Virtual Drive. When you be asked What would you like to do before installation , select the three checkboxes. When you be asked to configure a version of wine to use, you can choose 1.7.37 or 1.9.17 (Tested). In the popped up windows for wine configuration check that the Windows version box is set on Windows XP. Select a 32-bit installation. In the component installation select the following components (They appear in that order): POL_install_dotnet40 POL_Install_ie8 POL_Install_tahoma2 During the n...

QR en GNU/linux - Ubuntu

Imagen
Para obtener la información de una imagen con código QR, instalar Zbar . $ sudo apt-get install zbar-tools Guardar la imagen con el código QR en un archivo como qr_image.png , y luego obtener la información con: $ zbarimg qr_image.png QR-Code:http://aca_viene_el_resultado.html scanned 1 barcode symbols from 1 images in 0.12 seconds Referencia 1 ¿Desea donar?/Do you wish to give some money to the author? Give money to the author/writer 1 USD $1.00 USD 5 USD $5.00 USD 10 USD $10.00 USD 20 USD $20.00 USD 50 USD $50.00 USD 100 USD $100.00 USD 1000 USD $1,000.00 USD

Android x86 en virtualbox y Xenserver 6.5

Imagen
El objetivo de esta publicación es modificar un iso de androidx86 para que cuente con acceso a internet cuando se utiliza en virtualbox, habilitando la interfaz ethernet para adquirir una dirección IP al iniciar el sistema por DHCP y habilitar un servidor DNS. Se recomienda probar que los comandos que se incorporarán al iso funcionan en el iso que se haya seleccionado. Para esta prueba se usó el iso android-x86-4.0-r1-eeepc.iso . La prueba consiste en iniciar en modo Live el iso, aceptar todas las opciones hasta tener el mensaje de que está listo para usarse. Una vez ahí, iniciar una consola con Alt+F1 , para regresar a la interfaz gráfica usar Alt+F7 , y una vez ahí seguir los pasos descritos en un foro netcfg eth0 up netcfg eth0 dhcp setprop net.dns1 8.8.8.8 Para probar que están funcionando los comandos, después del comando dhcp, ejecutar solo netcfg con el fin de ver que hemos adquirido una dirección IP. Tras este paso, probar ...

Instalar guvcview en ubuntu - error webcam de color negro

Imagen
Si habéis instalado guvcview, pero al momento de probar y querer grabar la webcam ésta aparece con un fondo negro, este post es para ti. La razón principal es porque hay conflictos con el kernel de vuestra versión de ubuntu. Hay dos soluciones, agregar un ppa ( Enlace a post de PPA ), o descargar la última versión de guvcview y resolver sus dependencias manualmente, este último caso es el que se explica. Primero, descargad la última versión desde la página oficial del proyecto Enlace . Una vez descargado, y descomprimido el paquete con tar -xzvf paquete.tar.gz , al ejecutar ./configure los siguientes paquetes no están presentes en el sistema y si se busca explícitamente con apt-get install, no serán encontrados, algunos vienen con otros paquetes, no se instalan directamente, mas otros solo hay que saber el nombre apropiado para descargarlos. No package 'libv4l2' found No package 'libudev' found No package 'libusb-1.0' fou...