Go to main content

Oracle® X4 Series Servers Administration Guide

Exit Print View

Updated: April 2016
 
 

Mount Oracle System Assistant Flash Drive on Oracle VM Host

If the server is running the Oracle VM, you must mount the Oracle System Assistant USB flash drive before you use the file system to display or access its contents.

  1. Connect to your Oracle VM server as the root user.
  2. To determine the device mapping of the Oracle System Assistant USB flash drive, type the lsscsi command.

    An example of how this command displays the storage devices on the server is shown below.

    # lsscsi
    [0:0:0:0]  disk    SEAGATE ST360057SSUN600G 0805 /dev/sda
    [0:0:1:0]  disk    SEAGATE ST32000SSSUN2.0T 0313 /dev/sdb
    [0:0:2:0]  disk    SEAGATE ST32000SSSUN2.0T 0313 /dev/sdc
    [0:0:3:0]  disk    ATA INTEL SSDSA2BZ30     0362 /dev/sdd
    [0:0:4:0]  enclosu ORACLE BLADE14           0903 -
    [7:0:0:0]  disk    SUN StorEdge 3511        421F /dev/sde
    [7:0:0:1]  disk    SUN StorEdge 3511        421F /dev/sdf
    [7:0:0:2]  disk    SUN StorEdge 3511        421F /dev/sdg
    [7:0:0:3]  disk    SUN StorEdge 3511        421F /dev/sdh
    [9:0:0:0]  disk    SUN CSM200_R             0660 /dev/sdi
    [9:0:0:1]  disk    SUN CSM200_R             0660 /dev/sdj
    [9:0:0:2]  disk    SUN CSM200_R             0660 /dev/sdk
    [9:0:0:3]  disk    SUN CSM200_R             0660 /dev/sdl
    [9:0:0:4]  disk    SUN CSM200_R             0660 /dev/sdm
    [9:0:0:5]  disk    SUN CSM200_R             0660 /dev/sdn
    [11:0:0:0] disk     ORACLE SSM              PMAP /dev/sdo

    The Oracle System Assistant USB flash drive is the disk labelled ORACLE SSM and in this example is mapped to /dev/sdo.

  3. To determine the name of the partition on the Oracle System Assistant USB device, type the fdisk -l /dev/sdo command.

    An example of the output produced by this command is shown below.

    # fdisk -l /dev/sdo
    Disk /dev/sdo: 3880 MB, 3880452096 bytes
    4 heads, 32 sectors/track, 59211 cylinders
    Units = cylinders of 128 * 512 = 65536 bytes
    
    Device Boot Start End   Blocks  Id System
    /dev/sdo1 * 17    57344 3668992 ef EFI (FAT-12/16/32)
  4. (Optional) Create a mount point to use when mounting the Oracle System Assistant USB flash drive.

    For example:

    # mkdir /mnt/OSA
  5. To mount the Oracle System Assistant USB device, use the partition name determined in Step 3 and an existing mount point or the mount point that you created in Step 4.

    Here is an example of a mount command:

    # mount -t vfat -o codepage=850 /dev/sdo1 /mnt/OSA
    # ls /mnt/OSA
    boot          Firmware    LiveOS       OracleVM    syslinux.cfg
    Documentation ldlinux.sys manifest.xml readme.html Versions.txt
    EFI           Linux       Oracle       Solaris     Windows
    #

    The Oracle System Assistant USB flash drive is now mounted at the mount location specified.