How do I open a console window in the Solaris 11 Gnome Desktop?
This question comes up occasionally- especially in my transition courses where I have administrators migrating from previous version of Solaris.  In those versions of Solaris, administrators used the Java Desktop (Solaris 10) and the Common Desktop Environment also called CDE (Solaris 9).  The console window was a special window where system generated messages were displayed.  Any messages sent to  
 
 Add
Add  Or view ALL of the boot messages by specifying both options as follows:
Or view ALL of the boot messages by specifying both options as follows:
				/dev/console by syslogd appeared in this window.
When using the Gnome Desktop in Solaris 11, there is an option to open a terminal window, but not a console window.   To view the console messages from the Gnome Desktop, use these keystrokes:
Press Ctrl+Alt+F1 and the screen switches out of the GUI environment into console mode
solaris console login:solaris vt2 login:solaris vt3 login:Viewing the Console During the Boot Process
On Solaris x86 systems, when the Gnome Desktop is installed, you don’t see the console messages displayed during the boot process. You only see the white splash screen shown in figure 1: You could simply press Ctrl+Alt+F1 when you see the splash screen and the console screen will be shown. The Ctrl+Alt+F1 toggles the screen from the GUI mode to the console mode. But, the system will boot in a quiescent mode and the detailed boot messages will still not be displayed. To change the configuration, so that boot messages are displayed during the boot process, edit the GRUB menu. The GRUB menu can be changed either temporarily or permanently. Make a temporary change to the boot screen by pressing the “e” key when the GRUB menu is displayed during the boot process as shown in figure 2 
Figure 2
The edit screen will open as shown in Figure 3: 
Figure 3
Change the following line from “graphics“:
$multiboot /ROOT/solaris/@/$kern -B console=graphics -B $zfs_bootfsto “text” as follows:
$multiboot /ROOT/solaris/@/$kern -B console=text -B $zfs_bootfs-m verbose  to the end of the line as shown next, to display all of the SMF services as they start:
$multiboot /ROOT/solaris/@/$kern -B console=text -B $zfs_bootfs -m verbose Add
Add -v to the end of the line to display the kernel messages, but not the SMF service messages:
$multiboot /ROOT/solaris/@/$kern -B console=text -B $zfs_bootfs -v Or view ALL of the boot messages by specifying both options as follows:
Or view ALL of the boot messages by specifying both options as follows:
$multiboot /ROOT/solaris/@/$kern -B console=text -B $zfs_bootfs -m verbose -vbootadm utility from the command line to modify the GRUB menu.  First display the current GRUB configuration as follows:
In the above example, the GRUB menu has one entry, entry# bootadm list-menuthe location of the boot loader configuration files is: /rpool/boot/grubdefault 0console graphicstimeout 300 Oracle Solaris 11.1
0 with a title of “Oracle Solaris 11.1."    To permanently change entry 0 in the GRUB menu so that it boots in verbose mode, type:
# bootadm change-entry -i 0 kargs="-v"text as follows:
# bootadm set-menu console=textThe above list shows that the console is set to# bootadm list-menuthe location of the boot loader configuration files is: /rpool/boot/grubdefault 0console texttimeout 300 Oracle Solaris 11.1
text, but it does not display the -v option which was also set.   You’ll need to list the details for entry 0 in the GRUB menu to see the boot string for that entry as follows:
Now, every time the system boots, you’ll see the kernel boot messages displayed. After the system boots, the Gnome Desktop login will be displayed. I hope this helps out and if you have questions, please submit them in the comment section at the bottom of this page. Be sure to check out one of my online courses too!# bootadm list-menu "Oracle Solaris 11.1"the location of the boot loader configuration files is: /rpool/boot/grubtitle: Oracle Solaris 11.1kernel: /platform/i86pc/kernel/amd64/unixkernel arguments: -vboot archive: /platform/i86pc/amd64/boot_archivebootfs: rpool/ROOT/solaris


 
													
Thanks, I miss that window.