Skip Navigation Links | |
Exit Print View | |
Oracle Solaris 11.1 Release Notes Oracle Solaris 11.1 Information Library |
SPARC: GPT Labeled Disk Support
x86: Booting in UEFI Mode From the ISO Image Is Very Slow
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)
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
Installation and Boot Support on 4kn Disks on SPARC Systems Requires a Specific PROM Version
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)
FCoE Port Is Not Online After Creation (7191873)
asr-notify Is in Maintenance Mode If Incorrect ASR Properties Are Specified (7195227)
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)
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)
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)
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)
x86: CPU Power Level Warnings During System Boot (7146341)
SPARC: Devices on PCI Box Cannot Be Configured by hotplug on Fujitsu M10 Systems (7196117)
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
This section describes graphics and imaging issues in the Oracle Solaris 11.1 release.
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.
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:
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.
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
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