domingo, 16 de marzo de 2014

Automontar una partición al inicio en eOS

Como sabéis, me he pasado a un SSD, dónde he puesto mi sistema eOS. Como ya tenía la carpeta de Dropbox en el disco duro y me daba palo ocupar esos 24 Gb en el nuevo disco decidí mantener la carpeta de Dropbox en el disco duro. Eso me ha provocado que al iniciar el sistema me salga un aviso de que la carpeta de Dropbox ha desaparecido, puesto que el HDD (y la partición dónde está dicha carpeta) no se cargaba al inicio. La solución paliativa era montar la unidad una vez encendido el sistema y después cerrar y abrir la aplicación de Dropbox.

Obviamente sé que la solución definitiva pasa por hacer que se monte al inicio la partición en cuestión. He encontrado un sistema bastante sencillo que funciona en Elementary Os (al igual que en Ubuntu) y se trata en utilizar las opciones de aplicaciones al inicio.

Directamente copio el mini tutorial que he encontrado. Como aclaración decir que en el punto 5, dónde dice "value-of-UUID-from-step-4" hay que poner lo que hay entre comillas del UUID del paso 4 (en el ejemplo es "30fcb748-ad1e-4228-af2f-951e8e7b56df") sin las comillas..


A mí me ha funcionado a la perfección :D fácil y rápido.


How to automount an ext4 partition that is on a secondary hard drive

  1. Open the Startup Applications window which you can get to by clicking on the gear icon in the upper right-hand corner of the Ubuntu desktop next to the clock, and selecting Startup Applicationsfrom the dropdown menu.
    enter image description here
  2. Click the Add to add a new startup program.
  3. In the Name: field type in any name for the partition that you want to automount. In the Comment:field you can optionally type a descriptive comment about the partition that you want to automount.
    enter image description here
  4. Open the terminal and run the command: sudo blkid to find the UUID of the partition you want to automount. The output will be a list of information about all the partitions including their UUIDs. Running the sudo blkid command will produce output similar to:
    /dev/sda1: TYPE="ntfs" UUID="72C0DE8EC0DE57C5" LABEL="windows" 
    /dev/sda2: UUID="30fcb748-ad1e-4228-af2f-951e8e7b56df" SEC_TYPE="ext2" TYPE="ext3" 
    /dev/sda5: TYPE="swap" UUID="8c4e69f8-5074-42c0-8134-0b2429c4c02c" 
    /dev/sdb1: SEC_TYPE="msdos" UUID="4848-E35A" TYPE="vfat" 
    
    In this example you want to automount the /dev/sda4 partition which is selected and highlighted in blue in the screenshot that is shown above. The UUID is the value of the first hyphenated hexadecimal string that appears after UUID= without including the two quotation mark characters. In the code block that is shown above the UUID of /dev/sda2 is:
    30fcb748-ad1e-4228-af2f-951e8e7b56df
  5. Edit the Command: field so that it is similar to this: /usr/bin/udisks --mount /dev/disk/by-uuid/value-of-UUID-from-step-4

No hay comentarios :

Publicar un comentario