Entradas

Mostrando las entradas etiquetadas como ubuntu

Mount lacie storage in ubuntu through command line

I have been trying to mount a folder share in a storage device called: LaCie 5Big Network 2. You need to install basic NFS software first with: sudo apt-get install nfs-common In the LaCie device create a share, por example "FolderShared1". Click on the button "protocols" to see if NFS is enabled. Set it up to public in case you want to access it without user and password. Create a folder that will be used as mounting point: mkdir /home/your_username/LacieMount Let's say the ip address of your LaCie device is 192.168.1.1 To mount it use: sudo mount 192.168.1.1:/shares/FolderShared1 /home/your_username/LacieMount That is all. Was this useful for you? Contact me: https://www.linkedin.com/in/bsaldivar/ https://www.facebook.com/bsaldivaremc2/

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}

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

Iniciando programación android en ubuntu

Imagen
Para iniciarse en la programación en android será requerido: Descargar android studio : IDE para programar en android.  Enlace para descargar Configurar adb server :  Para poder enviar las aplicaciones vía USB directamente a un dispositivo android  Referencia en inglés La descarga e instalación de android studio es relativamente simple siguiendo los pasos de la sección de Instalación de SDK . Pero, cuando se requiere enviar a un dispositivo android se debe: Conectar el dispositivo Android a la computadora. Habilitar las opciones de programador en el dispositivo Android. Habilitar debugging de puerto USB (Dentro de las opciones de programador)  Obtener el ID del fabricante  En la página de desarrollo de android existe una lista de identificadores (ID) de fabricantes , pero si vuestro dispositivo no figura en la lista puede obtenerse usando el comando lsusb. #lsusb Bus 002 Device 003: ID 04f2:b34f Chicony Electronics Co., Ltd Los dígit...