JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris 11.1 Release Notes     Oracle Solaris 11.1 Information Library
search filter icon
search icon

Document Information

Preface

1.  Before You Begin

2.  Installation Issues

3.  Update Issues

4.  Runtime Issues

Firmware Issues

x86: Some Systems With BIOS Firmware Do Not Boot If the EFI_PMBR Entry in the Master Boot Record Is Not Active (7174841)

SPARC: GPT Labeled Disk Support

x86: Booting in UEFI Mode From the ISO Image Is Very Slow

x86: Oracle Solaris Does Not Boot on Disks With More Than Two-Terabyte LUN/Disk With 4 GB Emulex and Qlogic FC HBA Cards (7187083, 7188696)

System Configuration Issues

Custom SMF Site Profiles Should Be Placed in a Subdirectory (7074277)

sysconfig configure Command With the -c Option Flattens Directory Tree (7094123)

SPARC: System Fails to Boot an iSCSI LUN on an iSCSI Storage Array (7148479)

File System Issues

zfs set/inherit mountpoint Shows a Failure Message on Oracle Solaris 10 Branded Zones (7195977)

System Reboots Continuously Because of a ZFS-Related Panic (7191375)

Issues When Replacing or Using New Advanced Format Disk Drives on Oracle Solaris Systems

Lack of a Power Safe Feature on Certain Models of Advanced Format 512e Disk Drives Can Result in Data Loss

Installation and Boot Support on 4kn Disks on SPARC Systems Requires a Specific PROM Version

System Administration Issues

RDSv3 Support Is Required for Successful HCA DR Operation (7098279)

zoneadm attach Command Might Hang With the -a and -n Options (7089182)

svccfg validate Command Fails on a Split Manifest (7054816)

SPARC: System Fails to Boot When SP Is in Degraded Mode (6983290)

Sporadic Runtime Failures in an OpenMP Application (7088304)

32-bit: PCSXREG Triggers EINVAL Error for YMM and Floating-Point Registers (7187582)

Incorrect Disk Can Be Selected by Interactive Installers When Two Disks With the Same volname Exist (7195880)

FCoE Port Is Not Online After Creation (7191873)

asr-notify Is in Maintenance Mode If Incorrect ASR Properties Are Specified (7195227)

x86: cfgadm -c configure and hotplug enable Commands Fail to Configure a Hotplug or PCIe EM Slot (7198763)

Networking Issues

SPARC: IPsec Packet Might Be Dropped on T2 and T3 Series Platforms (7184712)

System Might Hang When Running the tshark Command on an Interface With Network Traffic (7202371)

Network Is Unreachable for the First Time After an Installation When Switching From Automatic NCP to DefaultFixed NCP (15824547)

Desktop Issues

Evolution Application Crashes After New Installation (7077180)

SPARC: Desktop Issues With USB Keyboard, Mouse, and Physical Monitor (7024285)

D-Bus System Daemon Has a Small File Descriptor Limit for Sun Ray or XDMCP Server Use (7194070)

Graphics and Imaging Issues

x86: Bitmapped Console Is Not Shown Properly on the NVIDIA Graphics Chipset (7106238)

x86: Bundled Driver Panics When X Server Is Started in UEFI Mode (7116675)

Performance Issues

x86: ZFS Pool Information Becomes Stale After Running the stmsboot Command With -e Option (7168262)

Performance of an Uncached Random Write Workload on a Pool of SSD Devices Is Low (7185015)

Hardware Issues

x86: CPU Power Level Warnings During System Boot (7146341)

SPARC: Devices on PCI Box Cannot Be Configured by hotplug on Fujitsu M10 Systems (7196117)

Localization Issues

Non-GTK Applications Fail to Connect to ATOK Language Engine on Non-UTF-8 Locales (7082766)

A.  Previously Documented Bugs That Are Fixed in the Oracle Solaris 11.1 Release

Graphics and Imaging Issues

This section describes graphics and imaging issues in the Oracle Solaris 11.1 release.

x86: Bitmapped Console Is Not Shown Properly on the NVIDIA Graphics Chipset (7106238)

On some systems with NVIDIA graphics adapters, the text mode console is not shown properly after the Xorg server has run. When you switch from an Xorg server to a text virtual terminal, the console is shown as vertical bars instead of readable characters.

Workaround: Disable the bitmapped console. Instead, use the VGA mode text console.

x86: Bundled Driver Panics When X Server Is Started in UEFI Mode (7116675)

The NVIDIA bundled driver panics when X server is started in the UEFI mode.

Workaround: In the GRUB menu, add the following text before the $multiboot line of the specified boot entry:

[...]
cutmem 0x9b000 1M
$multiboot /ROOT/transition/@/$kern $kern -B console=graphics -B $zfs_bootfs

To make this change permanent:

  1. Create a custom.cfg file in rpool/boot/grub, which is the same directory that contains the grub.cfg file.

    For more information about creating and managing the custom.cfg file, see Customizing the GRUB Configuration in Booting and Shutting Down Oracle Solaris 11.1 Systems.

  2. Copy the menu entry from the grub.cfg file to the custom.cfg file.

    The menu entry in the grub.cfg file looks similar to the following:

    menuentry "s11sru" {
      insmod part_msdos
      insmod part_sunpc
      insmod part_gpt
    
      insmod zfs
    
      search --no-floppy --fs-uuid --set=root f3d8ef099730bafa
      zfs-bootfs /ROOT/s11sru/@/ zfs_bootfs
      set kern=/platform/i86pc/kernel/amd64/unix
      echo -n "Loading ${root}/ROOT/s11sru/@$kern: "
      $multiboot /ROOT/s11sru/@/$kern $kern -B $zfs_bootfs
      set gfxpayload="1024x768x32;1024x768x16;800x600x16;
            640x480x16;640x480x15;640x480x32"
      insmod gzio
      echo -n "Loading ${root}/ROOT/s11sru/@/platform/i86pc/amd64/boot_archive: "
      $module /ROOT/s11sru/@/platform/i86pc/amd64/boot_archive
  3. Add the cutmem command before the $multiboot entry.

    The information shown in bold in the following example is added to custom.cfg.

    menuentry "s11sru" {
       insmod part_msdos
       insmod part_sunpc
       insmod part_gpt
    
       insmod zfs
    # Workaround for nVIDIA Driver
            cutmem 0x9b000 1M
    # End Workaround for nVIDIA Driver
       search --no-floppy --fs-uuid --set=root f3d8ef099730bafa
       zfs-bootfs /ROOT/s11sru/@/ zfs_bootfs
       set kern=/platform/i86pc/kernel/amd64/unix
       echo -n "Loading ${root}/ROOT/s11sru/@$kern: "
       $multiboot /ROOT/s11sru/@/$kern $kern -B $zfs_bootfs
       set gfxpayload="1024x768x32;1024x768x16;800x600x16;
            640x480x16;640x480x15;640x480x32"
       insmod gzio
       echo -n "Loading ${root}/ROOT/s11sru/@/platform/i86pc/amd64/boot_archive: "
       $module /ROOT/s11sru/@/platform/i86pc/amd64/boot_archive