How to Mount USB Disk Drive in UNIX or Linux Cómo montar unidad de disco USB en UNIX o Linux

Most distros (distributions) of Linux include Mandrake 10.1, SuSE 9.x and Fedora Core 3 can now support plug-and-plug detection, discovery and driver installation for portable USB drive or USB disk (and any type of USB-based data storage devices devices such as hard drives, pen drives, USB keys, flash disk, thumb drive, memory key, USB zip drive and memory stick). La mayoría de distribuciones (distribuciones) de Mandrake Linux incluyen 10,1, 9.x SuSE y Fedora Core 3 pueden apoyar ahora plug-and-plug detección, el descubrimiento y la instalación del controlador de disco USB portátil o un disco USB (y de cualquier tipo de USB basados en el almacenamiento de datos dispositivos de dispositivos tales como discos duros, pen drives, llaves USB, disco flash, unidad pulgar, clave de memoria, USB y unidad zip de memoria). Some Linux operating system even can auto-mount the USB drives, especially if you’re using Gnome and KDE. Algunos sistema operativo Linux incluso puede auto-montaje en la unidades USB, especialmente si está usando Gnome y KDE. When you plug-in the USB disk, Linux will pop-up a window showing the content of USB disk just like Microsoft Windows. Cuando el plug-in de la disco USB, Linux pop-up una ventana mostrando el contenido de un disco USB como Microsoft Windows.

However, if you’re using older version of Linux, or using UNIX operating system, or your Linux distro installation unable to detect and mount the USB storage device automatically, then you will have to manually install and mount the USB drive. Sin embargo, si está utilizando versión de Linux, o el uso de sistema operativo UNIX, Linux o su distribución a instalación no puede detectar y montar el dispositivo de almacenamiento USB automáticamente, entonces usted tendrá que instalar manualmente y montar la unidad USB.

To manually mount a USB disk or USB drive or USB device in Linux or UNIX: Para montar manualmente un disco USB o unidad USB o dispositivo USB en Linux o UNIX:

  1. Login as root. Inicio de sesión como root. You can use the su command to switch to root user. Puede utilizar el comando su para cambiar al usuario root.
  2. Create a folder /mnt/USB with the command: mkdir /mnt/USB Crear una carpeta / mnt / USB con el comando: mkdir / mnt / USB
  3. Add the following line in the file /etc/fstab (fstab is the file that tells Linux where to mount the various devices, and thus simplying the mount command): Añadir la siguiente línea en el fichero / etc / fstab (fstab es el archivo que le dice a Linux que para montar los distintos dispositivos, y por lo tanto simplying el comando mount):

    /dev/sda1 /mnt/USB auto noauto,owner,kuzu 0 0 / dev/sda1 / mnt / USB auto noauto, el propietario, el kuzu 0 0

    Note: The “auto” on the above line means auto detection of filesystem. Nota: El "auto" por encima de la línea de medios de detección automática de ficheros. If your system unable to determine the filesystem type, change it accordingly to the USB drive’s filesystem (eg vfat or ntfs or ext2 or ext3). Si su sistema no puede determinar el tipo de ficheros, cambiar la forma correspondiente a la unidad USB del sistema de ficheros (por ejemplo, vfat o ntfs o ext2 o ext3).

  4. Mount the USB storage device with the following command: mount /dev/sda1 Montar el dispositivo de almacenamiento USB con el siguiente comando: mount / dev/sda1

Without the need modifying fstab (step 3), you can also straight away issue the mount command (step 4) with the following syntax: Sin necesidad de modificar el fstab (paso 3), también puede cuestión de inmediato el comando mount (paso 4) con la siguiente sintaxis:

mount /dev/sda1 /mnt/USB mount / dev/sda1 / mnt / USB

If you know the filesystem of the USB drive or the system unable to determine the correct filesystem, the -t option can be used to the filesystem type of the USB device: Si conoce el sistema de archivos de la unidad USB o el sistema no puede determinar el correcto sistema de ficheros, la opción-t puede ser usado para el sistema de ficheros tipo de dispositivo USB:

mount -t vfat /dev/sda1 /mnt/usb (for vFAT filesystem) mount-t vfat / dev/sda1 / mnt / usb (para el sistema de ficheros vfat)
mount -t ntfs /dev/sda1 /mnt/usb (for NTFS filesystem) mount-t ntfs / dev/sda1 / mnt / usb (para sistema de archivos NTFS)

Sometimes, the USB drive or USB storage device is detected by the system but been assigned a different device name from sda1. A veces, la unidad USB o dispositivo de almacenamiento USB es detectado por el sistema, pero la asignación de un nombre de dispositivo diferente de sda1. If so, the correct device name need to be determined by viewing and OS log file. En caso afirmativo, el nombre de dispositivo correcto necesidad de ser determinado por la visualización y archivo de registro OS. Usually the Linux and UNIX boot and log message is stored in /var/log/messages, and you can view the log messages with the following commands: Por lo general, el Linux y UNIX de arranque y mensaje de registro se guarda en / var / log / messages, y usted puede ver los mensajes de registro con los siguientes comandos:

tail -f /var/log/messages tail-f / var / log / messages

or o

dmesg dmesg

Check for the name of the device that appears after operating system detects the USB devices. Por favor, el nombre del dispositivo que aparece después de sistema operativo detecta los dispositivos USB.

After using the USB disk, remember to unmount the USB drive with the following command to avoid any possible loss to the data or changes and risk messing up your partition. Después de usar el disco USB, no olvide desmontar la unidad USB con el siguiente comando para evitar cualquier posible pérdida de datos o los cambios y el riesgo de perder su partición.

umount /mnt/USB umount / mnt / USB

Configure Gnome to automatically detect, install and mount USB drive Configurar Gnome para detectar automáticamente, instalar y montar unidad USB

If you’re using Gnome yet unable to automatically detect and mount USB drive for usage, a few packages needed to be install. Si utilizas Gnome aún no puede detectar automáticamente y montar unidad USB para su uso, unos cuantos paquetes hay que instalar. The packages to install are dbus, hald and Gnome-Volume-Manager. Los paquetes a instalar son dbus, hald y gnome-volume-manager. After installing these packages, configure dbus and hald setup to run via init scripts. Después de instalar estos paquetes, configurar y dbus hald de configuración para ejecutar a través de scripts de inicio. Then in Gnome, some configuration has to be done. Luego, en Gnome, algunas configuraciones que hay que hacer. Click on the ‘Desktop’ menu, then go to ‘Preferences’, and then to ‘Removable Drives and Media’. Haga clic en el 'Escritorio' del menú, y luego ir a "Preferencias" y, a continuación, a 'Removable Drives y Medios de Comunicación'. Configure the settings to your liking. Configurar los ajustes a su gusto. Once you plug-in a usb drive, an icon for the drive will appear on the desktop. Una vez que el plug-in de una unidad USB, un icono para la unidad aparecerá en el escritorio. Other possible setting is to have Gnome opens a window showing the contents of the USB drive. Otras posibles establecimiento es contar con Gnome abre una ventana mostrando el contenido de la unidad USB.

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Se trata de una máquina que traduzca la página se proporciona "tal cual" sin garantía. Machine translation may be difficult to understand. La traducción automática puede resultar difícil de entender. Please refer to Por favor, consulte original English article artículo original Inglés whenever possible. siempre que sea posible.

Share and contribute or get technical support and help at Compartir y contribuir o recibir apoyo técnico y ayudar a My Digital Life Forums Mi vida digital Foros .



5 Responses to “How to Mount USB Disk Drive in UNIX or Linux” 5 Respuestas a "cómo montar los discos duros USB en Linux o UNIX"

  1. Gervase Chavasse Gervase Chavasse
    January 24th, 2007 17:18 24 de enero de 2007 17:18
    1

    Thanks for an excellent article. Gracias por su excelente artículo. But after upgrading to Suse 10.1 (10.2 wouldn’t install), I cannot access my USB Iomega ZIP drive and receive msg “Mount with signature “ssas” on interface “org.freedesktop.Hal.Device.Volume” doesn’t exist”. Pero después de actualizar a Suse 10,1 (10,2 no instalar), no puedo acceder a mi USB de Iomega unidad ZIP y recibir msg "Monte con la firma" AAE "en la interfaz" org.freedesktop.Hal.Device.Volume "no existen" . It seems that the introduction of HAL has complicated matters and I have been unable to find an answer on the forums. Parece ser que la introducción de HAL ha complicado las cuestiones y no he podido encontrar una respuesta en los foros. Can you help, please, perhaps with an updated article? ¿Puede ayudarme, por favor, tal vez con una versión actualizada del artículo? All my back-up data is on the ZIP which is unreadable either by Windows or Knoppix. Todas mis copias de seguridad de datos se encuentra en el ZIP que es ilegible, ya sea de Windows o Knoppix.

  2. Ogryzek
    February 17th, 2007 11:25 17 de febrero de 2007 11:25
    2

    Please note that there is a small typo in the main article above. Tenga en cuenta que hay un pequeño error tipográfico en el artículo principal.

    /dev/sda1 /mnt/USB auto noauto,owner,kuzu 0 0 / dev/sda1 / mnt / USB auto noauto, el propietario, el kuzu 0 0

    Should read: Debe decir:

    /dev/sda1 /mnt/USB auto noauto,owner,kudzu 0 0 / dev/sda1 / mnt / USB auto noauto, propietario, kudzu 0 0

    Still, the article did help… thanx Sin embargo, el artículo no ayuda… thanx

  3. admin
    February 17th, 2007 13:42 17 de febrero de 2007 13:42
    3

    I believe kuzu would work, kudzu is kind of for cdrom. Creo que kuzu trabajo, kudzu es de tipo para cdrom.

  4. BlogSplat » Blog Archive » Adventures In Linuxland BlogSplat »Blog Archive» Aventuras en LinuxLand
    August 10th, 2008 16:03 10 de Agosto, 2008 16:03
    4

    [...] I eventually find a helpful post that explains in better detail than most how mounting volumes [...] [...] I eventualmente encontrar una útil puesto que mejor explica en detalle la forma en que la mayoría de montaje de volúmenes [...]

  5. David
    August 13th, 2008 05:44 Agosto 13, 2008 05:44
    5

    When I mount dev/sda1 it mounts my main filesystem drive not the usb. Cuando me monte dev/sda1 que monta mi principal sistema de ficheros no la unidad usb. I can’t get my usb to mount no matter what I do (running Ubuntu) but windows reads it fine. No puedo obtener mi usb para montar no importa lo que hago (corriendo Ubuntu), pero las ventanas lo lee bien.

Leave a Reply Deja Responder

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Puede usar estos tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q Cite=""> <strike> <strong>

Subscribe without commenting Suscribirse sin comentar


Custom Search

New Articles Nuevos Artículos

Incoming Search Terms for the Article Próximos Términos de búsqueda para el artículo

ubuntu mount usb Ubuntu Monte USB - -- mount usb ubuntu Monte USB Ubuntu - -- mount usb disk Monte disco USB - -- ubuntu mount usb drive Ubuntu Monte unidad USB - -- mount usb drive ubuntu Monte unidad USB Ubuntu - -- ubuntu mount usb device Ubuntu Monte dispositivo USB - -- linux mount usb disk Linux Monte disco USB - -- ubuntu usb mount Ubuntu USB Monte - -- mount usb disk ubuntu Monte disco USB Ubuntu - -- ubuntu mount usb hard drive Ubuntu Monte disco duro USB - -- ubuntu mount usb disk Ubuntu Monte disco USB - -- fedora mount usb drive Fedora Monte unidad USB - -- mount USB linux Monte USB Linux - -- linux usb disk Linux en disco USB - -- mount usb Monte USB - -- usb disk linux Linux en disco USB - -- linux mount usb Linux Monte USB - -- unix mount usb Unix Monte USB - -- usb mount USB Monte - -- mount usb unix Monte USB Unix - -- linux mount usb drive Linux Monte unidad USB - -- mounting usb ubuntu USB montaje Ubuntu - -- mount usb fedora Monte USB Fedora - -- usb mount ubuntu USB Monte Ubuntu - -- mount usb device ubuntu Montar dispositivo USB Ubuntu - -- ubuntu usb drive mount Ubuntu unidad USB Monte - -- mount usb hard drive ubuntu Montar disco duro USB Ubuntu - -- mount usb drive unix Monte unidad USB Unix - -- ubuntu mounting usb Ubuntu montaje USB - -- UNIX mount usb drive UNIX Monte unidad USB - -- mount thumb drive linux Monte pulgar unidad de Linux - -- ubuntu mount external usb drive Ubuntu Monte unidad USB externa - -- mount usb drive fedora Monte unidad USB Fedora - -- ubuntu mount usb hdd Ubuntu Monte USB HDD - -- mount usb drive linux Monte unidad USB Linux - -- ubuntu mount usb Ubuntu Monte USB - -- usb unix USB Unix - -- mount usbdisk Monte usbdisk - -- all todo - -- usb disk mount Monte disco USB - -- mount usb on ubuntu Montar USB en Ubuntu - -- mount usb in linux Montar USB en Linux - -- fedora mount usb Fedora Monte USB - -- how to mount usb in linux cómo montar usb en linux - -- ubuntu automount usb drive Ubuntu automount unidad USB - -- how to mount usb disk cómo montar un disco USB - -- mount usb drive in unix Monte unidad USB en Unix - -- how to mount usb drive in ubuntu cómo montar unidad USB en ubuntu - -- mount external usb drive ubuntu Monte unidad USB externa Ubuntu - -- ubuntu mount usb harddrive Ubuntu Monte disco duro USB - -- mounting a USB drive in Ubuntu montaje de una unidad USB en Ubuntu - -- mount USB drive Monte unidad USB - -- mounting usb drive ubuntu montaje unidad USB Ubuntu - -- vmware mount usb drive VMware Monte unidad USB - -- fedora mount usb disk Fedora Monte disco USB - -- mount usb drive in fedora Monte unidad USB en Fedora - -- montare usb ubuntu montare USB Ubuntu - -- automount usb drive ubuntu automount unidad USB Ubuntu - -- how to mount usb drive in linux cómo montar unidad USB en Linux - -- mount usb drive in linux Monte unidad USB en Linux - -- how to mount usb ubuntu cómo montar USB Ubuntu - -- unix usb Unix USB - -- Ubuntu USB mounten Ubuntu USB mounten - -- ubuntu how to mount usb drive ubuntu cómo montar unidad USB - -- linux on usb disk Linux en disco USB - -- ubuntu auto mount Ubuntu auto Monte - -- mount usb in ubuntu Montar USB en Ubuntu - -- mount usb drive in ubuntu Monte unidad USB en Ubuntu - -- mount ubuntu usb Monte Ubuntu USB - -- usb drive mount ubuntu unidad USB Monte Ubuntu - -- how to mount usb on linux cómo montar usb en linux - -- mount usb harddrive ubuntu Montar disco duro USB Ubuntu - -- mount usb ubuntu Monte USB Ubuntu - -- unix usb drive Unix unidad USB - -- mount usb on unix Montar USB en Unix - --