Vector Linux 5.9

Documentation

 

External Storage Devices with VectorLinux 5.9

CONTENTS

1. Introduction
2. Floppy Drive
3. CDROM
4. CDWRITER
5. USB Storage
6. How They Work
7. Credits

 


1. Introduction

In the past many new Linux users, especially those that come from Windows, were immediately struck by the somewhat inconvenient floppy or cdrom drive access. Well, that used to be the case in older versions of Linux, but not anymore. This manual will quickly point out the features of how to access your external storage devices. If none of this makes sense to you please read Section 6 below to understand the underlying mechanisms, and hopefully that might give you the background understanding you require.

Top


2. Floppy Drives

We assume that you are working with the xfce desktop environment. The most important thing is that you should see desktop icons, and one of them is "Floppy". To work with a floppy, simply:

  1. Insert your floppy diskette in the floppy drive
  2. Click the "floppy" icon (in xfce you must double click). The Thunar file manager will be launched for you.
  3. The floppy is usually mounted on /mnt/floppy. You may now use the file manager to read/write the data from or to the floppy.
  4. After you are finished, you MUST close the file manager.
  5. Remove the floppy disk from the floppy drive.

That´s all. If you want to know the details of what is happening: clicking the floppy icon mounts the floppy and launches the file manager. Then when you close the file manager, the floppy will be unmounted. You must remember one thing though, do not remove the floppy diskette before you close the file manager, or while the floppy-drive light is still flashing. Doing so could damage your floppy data.

Top


3. CDROM Drives

You access these in the same manner as the floppy drive. Simply:

  1. Insert your CD into the cdrom drive.
  2. If you use the HAL system the Thunar file manager will immediately show the files on your CD. If you use the vl-hot system a CDROM icon will appear on your desktop. Click the "cdrom" icon. Thunar will be launched for you with the CDROM contents on the /mnt/cdrom folder.
  3. Use the file manager to read the data from the cdrom.
  4. After you're finished, you MUST close the file manager and if using the vl-hot system right click on the icon and choose "Unmount".

Note that music CD's are not a proper filesystem and therefore cannot be mounted via this method. You can check a music CD's contents with a ripping program such as RipperX or a CD Player such as xmms. IF you use the HAL system, inserting a music CD will immediately launch xmms and begin to play the CD.

Top


4. CDWRITER Drive

Ok, this is a bit different. We cannot use a file manager to write data onto a CDR platter. You must launch a cd-burning program from the user menu. Those programs available to you with VL5.9 Standard are k3b or xfburn.

Top


5. USB Storage with either vl-hot or HAL

Technically, USB storage devices (including Pen Drives, flash memory readers, external hard drives and mp3 players, etc.) are a different story than floppy or CDROM drives because they are handled by either the vl-hot hotplug system or the HAL system, depending what you chose when you installed VL.

Theoretically, if you have vl-hot running when you plug in a USB or PCMCIA device it should automatically display an icon for the device on the desktop. Click that new icon and you should then be able to browse the files on that device with the Thunar file manager. vl-hot is a purely udev based automount system for any kind of pluggable storage device that conforms to the block device specification and so uses scsi emulation. Hardware known to work with vl-hot are USB pendrives, hard disks, digital cameras, memory card readers, PCCARD (or PCMCIA) memory cards and drives. Firewire devices should work, but there are no user reports on this kind of hardware yet. The working specifications of vl-hot are:

  • the mount base directory will be "/mnt/vl-hot/".
  • each drive will have a "sd?" directory (where "?" represents a letter of the alphabet).
  • each mounted partition will have a "vol#" directory (where "#" represents a number) within the drive directory. An exception to this rule is in the case of non-MBR devices, where there is no partition table.
  • desktop icons are dynamically created/deleted. With KDE these have unmount options in the context (right-click) menu.
  • the unmount operation has completed succesfully once the desktop icon disappears.
  • for window managers other than xfce or KDE you should: 1) close down the file manager, 2) remove the device and then, 3) use the command "umount /mnt/vl-hot/sd?" as root, to correctly unmount the device.

For systems using HAL the device will be automatically mounted and the Thunar file manager should launch showing the files on your device. HAL tends to mount devices in the /media file direc tory.

Top


6. How They Work

This is the explanation if you want to know the underlying mechanisms of filesystem mounting. Normally, all of these are configured by VL autosetup during installation and only in unusual circumstances will you need to concern yourself with manually mounting a device. However, problems may occur and this information may assist you:

6.1 Floppy and CDROM drives

All storage devices (like everything else in Unix/Linux) are treated as a file. To this end they are usually given a filename in the /dev directory (e.g. /dev/cdrom). Before accessing a storage device it must be "mounted". Floppy and CDROM drives both work on the same principle.

  1. Firstly, during the install process VectorLinux autodetection makes a symbolic link to the actual device. Usually, /dev/floppy links to /dev/fd0 and /dev/cdrom links to one of the IDE controllers (/dev/hdb, /dev/hdc, etc). Think of the symlink as an alias that hides the actual device. You can check it out by using:

    tux@engrob4:$ ls -l /dev/cdrom
    lrwxrwxrwx  1 root root 8 2004-10-06 00:33 /dev/cdrom -> /dev/hdc
    

    You may set that up manually, or use vcdset.


  2. Then, the symlink is registered on /etc/fstab like this

    # The 'noauto' option indicates that the file system should not be mounted
    # with 'mount -a' 'user' indicates that normal users are allowed to mount it
    /dev/cdrom      /mnt/cdrom      iso9660 defaults,noauto,ro,user 0 0
    /dev/fd0        /mnt/floppy     auto    defaults,noauto,user    0 0
    
  3. When the user clicks the floppy/cdrom icon, it launches a script that actually does the mounting for you. This is the simplified version.

    #!/bin/sh
    mount /mnt/cdrom
    file_manager /mnt/cdrom/
    umount /mnt/cdrom
    
  4. Look at the script, after launching the file manager, it waits for it to exit then unmounts the /mnt/cdrom. That's why you have to close the file manager.

 

6.2 CDWRITER

For CDWRITER, k3b and xfburn will access the device directly. So we don't have to bother about mounting it.

 

6.3 USB-STORAGE

USB storage is handled by vl-hot or HAL. If everything goes right ??? How vl-hot works can be read in more detail at "Joe1962"'s website.

Top


7. Credits

Copyright 2008 Vector Linux
Released under [GNU Free Document License [ http://www.gnu.org/licenses/fdl.html ]
Contributed By: Kocil, Joe1962, Lagagnon, LLL

Top