发布新日志

  • dos2unix

    2008-11-12 17:19:56

    转换文件的换行格式:

    1.直接用 dos2unix demo.txt 命令

    2.或者使用 cat demo.txt | tr -d '\r' > demo_new.txt

  • how to install solaris

    2008-11-12 17:17:29

    1.将光盘放入cd-rom.

    2.telnet 192.168.xxx.xxx (PLOM地址)

    3.enter root username/passwd

    4.break (取得server control)

    5.console -f

    6.enter #

    7.{0}ok: boot cdrom

  • Configure your DISPLAY variable to be your PC IP address

    2008-11-12 17:12:36

    DISPLAY=192.168.xxx.xxx:0.0;export DISPLAY

    run /usr/openwin/bin/xclock to make sure it is set correctly

  • 在后台运行程序/将程序移到前台

    2008-11-12 17:10:22

    1.按Control+Z将程序挂起,并获得作业号[n]。 # n means number

    2.输入 bg n 将程序移动到后台运行。

    3.输入 fg n 将程序移动到前台运行。

  • kick solaris online user

    2008-11-12 17:07:47

    1. who

    2. pkill -9 -u "username"

  • mount其他solaris服务器上的目录

    2008-11-12 17:05:53

    1. vi /etc/dfs/dfstab
    add 1 line:
    share -F nfs -o ro=192.168.120.50 /usr/oracle_install

    2. /etc/init.d/nfs.server stop

    3. /etc/init.d/nfs.server start

    4. cd /mnt

    5. mkdir oracle

    6. mount -F nfs 192.168.120.47:/usr/oracle_install /mnt/oracle

  • 重启solaris的几种方式

    2008-11-12 17:01:46

    #重启
    sync;sync;init 0

    sync;sync; /etc/shutdown -y -i6 -g0

    #关机
    sync;sync; shutdown immediate

  • 使用bash环境

    2008-11-12 16:57:56

    将/etc/passwd 的第一行 /sbin/sh 改为 /bin/bash
    通常在~/.bash_profile初始文件中设置PATH, CDPATH等变量的值。
  • 允许telnet登录

    2008-11-12 16:54:50

    修改下面的文件允许telnet方式登录
    /etc/default/login

    注释掉下面的行
    # If CONSOLE is set, root can only login on that device.
    #CONSOLE=/dev/console

  • [转]Xmanager不能登录Solaris的解决方案

    2008-11-12 16:31:35

    Xmanager不能登陆Solaris的解决方案

    近日在Dell690上装了Solaris Express Community Edtion b77(已升级内核到b78),但是通过Xmanager远程登陆就是不能成功,用ps查看也确实有dtlogin进程存在。

     

    bash-3.00# ps -ef | grep dtlogin

    root 23441 23357   0 07:58:11 pts/2       0:00 grep dtlogin

    root   500     1   0   Nov 05 ?           5:58 /usr/dt/bin/dtlogin -daemon -udpPort 0

    root 22789   500   0 14:31:31 ?           0:00 /usr/dt/bin/dtlogin -daemon -udpPort 0

     

    实际上问题就出在-udpPort 0,查看dtlogin的帮助文件:

     

    # man dtlogin

    ...

    -udpPort port_number

                 Specifies the value for  the  requestPort  resource.

                 This  sets the port-number that dtlogin monitors for

                 XDMCP requests.  Since  XDMCP  uses  the  registered

                 well-known  udp port 177, this resource should prob-

                 ably not be changed except for debugging.

    ...

     

    所以这里系统缺省监听udp port 0,当然就无法监听到177端口上的XDMCP请求了。

     

    常规解决方案如下:

    /etc/init.d/dtlogin stop      #关掉dtlogin服务

    /usr/dt/bin/dtlogin -daemon & #daemon启动方式或者显式指定dtlogin -udpPort 177

     

    由于Solaris 10引入了一套新的服务管理框架,因此也可以使用其服务管理命令来修改相应参数:

    # ps -ef | grep dtlogin

        root 101252 100995   0 15:09:01 ?           0:00 /usr/dt/bin/dtlogin -daemon -udpPort 0

        root 101420 101419   0 15:13:47 pts/3       0:00 grep dtlogin

        root 101267 100995   0 15:13:23 ?           0:00 /usr/dt/bin/dtlogin -daemon -udpPort 0

        root 100995      1   0 15:07:59 ?           0:00 /usr/dt/bin/dtlogin -daemon -udpPort 0

    # svccfg

    svc:> select application/graphical-login/cde-login

    svc:/application/graphical-login/cde-login> listprop dtlogin/args

    dtlogin/args  astring  " -udpPort 0"

    svc:/application/graphical-login/cde-login> setprop dtlogin/args = "\ -udpPort 177"

    svc:/application/graphical-login/cde-login> listprop dtlogin/args

    dtlogin/args  astring  " -udpPort 177"

    svc:/application/graphical-login/cde-login> quit

    #

    # svcs | grep cde-login

    online         15:07:59 svc:/application/graphical-login/cde-login:default

    # svcadm restart cde-login      

     

    重新启动服务进入cde后再用ps命令查看dtlogin进程就可以看到-udpPort端口已经修改为177了。

     

    Xmanager使用的都是缺省设置

    新建 New Xmanager Session

    修改 属性

    xdmcp Conection Method: XDM Query

    xdmcp Host: Solaris服务器的IP地址

    xdmcp Port: 177

    xdmcp Local Address: Auto Select

  • view group

    2008-11-12 16:17:32

    groups
    cat /etc/group
  • view environment variable

    2008-11-12 16:16:23

    set
  • view disk info

    2008-11-12 16:14:57

    df -h
    df -k

  • unzip Z file

    2008-11-12 16:12:34

    gzip -d ems.6.0.0.0.34.tar.Z
    tar -xvf ems.6.0.0.0.34.tar

    以上两个命令可以合并为一个(注意结尾的'-'不能少):
    gunzip -c ems.6.0.0.0.34.tar.Z | tar -xvf -

  • simple ftp command

    2008-11-12 16:10:56

    ftp 192.168.120.47
    cnshroot/shroot
    cd /user
    lcd /opt/download   #(change local directory)
    bin
    get filename
  • create a symbolic link

    2008-11-12 16:09:09


    //create a symbolic link
    ln -s /usr/tmp symlink
    cd symlink
    pwd
    /usr/tmp
  • add the temporary ip address and route

    2008-11-12 16:07:45

    1.add a ip address
    ifconfig bge0 192.168.121.xxx netmask 255.255.255.0 up

    2.add a route
    route add default 192.168.121.1

    以上只在solaris运行时有效,若系统重启则丢失。

  • set static ip address

    2008-11-12 16:05:11

    Modify some files to set static ip address:
    /etc/hosts
    /etc/hostname.bge0   (hostname)
    /etc/defaultrouter
    /etc/nodename             (hostname)
    /etc/resolv.conf
    /etc/netmasks
    /etc/nsswitch.conf
  • installation solaris 9 log

    2008-11-12 16:02:09

    sc> break
    Are you sure you want to send a break to the system [y/n]? y
    sc> console -f
    Warning: User < > currently has write permission to this console and forcibly removing them will terminate any current write action]
    SC Alert: SC Request to send Break to host.

    Warning: User < > currently has write permission to this console and forcibly removing them will terminate any current write action]
    Warning: User < > currently has write permission to this console and forcibly re
    Warning: User < > currently has write permission to this console and forcibly re
    moving them will terminate any current write actions and all work will be lost.
     Would you like to continue? [y/n]y
    Enter #. to return to ALOM.

    {0} ok banner

    Sun Fire V210, No Keyboard
    Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
    OpenBoot 4.18.10, 4096 MB memory installed, Serial #73641178.
    Ethernet address 0:14:4f:63:ac:da, Host ID: 8463acda.

     

    {0} ok boot cdrom

    SC Alert: Host System has Reset
    Probing system devices
    Probing memory
    Probing I/O buses

    Sun Fire V210, No Keyboard
    Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
    OpenBoot 4.18.10, 4096 MB memory installed, Serial #73641178.
    Ethernet address 0:14:4f:63:ac:da, Host ID: 8463acda.

     

    Rebooting with command: boot cdrom
    Boot device: /pci@1e,600000/ide@d/cdrom@0,0:f  File and args:
    SunOS Release 5.9 Version Generic_118558-11 64-bit
    Copyright 1983-2003 Sun Microsystems, Inc.  All rights reserved.
    Use is subject to license terms.
    Hardware watchdog enabled
    SC unretrieved msg MAR 04 01:41:26 2008 UTC [Host System has Reset]
    Configuring /dev and /devices
    Using RPC Bootparams for network configuration information.
    Skipping interface bge3
    Skipping interface bge2
    Skipping interface bge1
    Skipping interface bge0
    Searching for configuration file(s)...
    Search complete.

     

     

     

     

     

     

     

     

     

     

     


    Select a Language

       0. English
       1. French
       2. German
       3. Italian
       4. Japanese
       5. Korean
       6. Simplified Chinese
       7. Spanish
       8. Swedish
       9. Traditional Chinese

    Please make a choice (0 - 9), or press h or ? for help: 0

     

     

     

     

     

     

     

     

     

     

     


    Select a Locale

       0. English (C - 7-bit ASCII)
       1. Albania (ISO8859-2)
       2. Australia (ISO8859-1)
       3. Belgium-Flemish (ISO8859-1)
       4. Belgium-Flemish (ISO8859-15 - Euro)
       5. Bosnia (ISO8859-2)
       6. Brazil (ISO8859-1)
       7. Brazil (UTF-8)
       8. Bulgaria (ISO8859-5)
       9. Canada-English (ISO8859-1)
      10. Catalan, Spain (ISO8859-1)
      11. Catalan, Spain (ISO8859-15 - Euro)
      12. Croatia (ISO8859-2)
      13. Czech Republic (ISO8859-2)
      14. Denmark (ISO8859-1)
      15. Denmark (ISO8859-15 - Euro)
      16. Egypt (ISO8859-6)
      17. Egypt (UTF-8)
      18. Estonia (ISO8859-15)

    Press Return to show more choices.
    Please make a choice (0 - 59), or press h or ? for help: 0

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

    What type of terminal are you using?
     1) ANSI Standard CRT
     2) DEC VT52
     3) DEC VT100
     4) Heathkit 19
     5) Lear Siegler ADM31
     6) PC Console
     7) Sun Command Tool
     8) Sun Workstation
     9) Televideo 910
     10) Televideo 925
     11) Wyse Model 50
     12) X Terminal Emulator (xterms)
     13) CDE Terminal Emulator (dtterm)
     14) Other
    Type the number of your choice and press Return: 1
    The system is coming up. Please wait.
    Begin system identification...
    in.rdisc: No interfaces up
    - The Solaris Installation Program ---------------------------------------------

      The Solaris installation program is divided into a series of short sections
      where you'll be prompted to provide information for the installation. At
      the end of each section, you'll be able to change the selections you've
      made before continuing.

      About navigation...
            - The mouse cannot be used
            - If your keyboard does not have function keys, or they do not
              respond, press ESC; the legend at the bottom of the screen
    --------------------------------------------------------------------------------
    - Identify This System ---------------------------------------------------------

      On the next screens, you must identify this system as networked or
      non-networked, and set the default time zone and date/time.

      If this system is networked, the software will try to find the information
      it needs to identify your system; you will be prompted to supply any
      information it cannot find.

    --------------------------------------------------------------------------------
    - Network Connectivity ---------------------------------------------------------

      Specify Yes if the system is connected to the network by one of the Solaris
      or vendor network/communication Ethernet cards that are supported on the
      Solaris CD. See your hardware documentation for the current list of
      supported cards.
      Specify No if the system is connected to a network/communication card that
      is not supported on the Solaris CD, and follow the instructions listed under
      Help.


          Networked
          ---------
          [X] Yes
    --------------------------------------------------------------------------------
    - DHCP -------------------------------------------------------------------------

      On this screen you must specify whether or not this system should use DHCP
      for network interface configuration.  Choose Yes if DHCP is to be used, or
      No if the interfaces are to be configured manually.

      NOTE: DHCP support will not be enabled, if selected, until after the system
      reboots.

          Use DHCP
          --------
          [ ] Yes
    --------------------------------------------------------------------------------
    - Primary Network Interface ----------------------------------------------------

      On this screen you must specify which of the following network adapters is
      the system's primary network interface.  Usually the correct choice is the
      lowest number.  However, do not guess; ask your system administrator if
      you're not sure.

      > To make a selection, use the arrow keys to highlight the option and
          Primary network interface
          -------------------------
          [X] bge0
          [ ] bge1
          [ ] bge2
    --------------------------------------------------------------------------------
    - Host Name --------------------------------------------------------------------

      On this screen you must enter your host name, which identifies this system
      on the network.  The name must be unique within your domain; creating a
      duplicate host name will cause problems on the network after you install
      Solaris.

      A host name must be at least two characters; it can contain letters, digits,
    --------------------------------------------------------------------------------
    - IP Address -------------------------------------------------------------------

      On this screen you must enter the Internet Protocol (IP) address for this
      system.  It must be unique and follow your site's address conventions, or a
      system/network failure could result.

      IP addresses contain four sets of numbers separated by periods (for example
    --------------------------------------------------------------------------------
        IP address: 192.168.120.13


        IP address: 192.168.120.13


    - Subnets ----------------------------------------------------------------------

      On this screen you must specify whether this system is part of a subnet.  If
      you specify incorrectly, the system will have problems communicating on the
      network after you reboot.

      > To make a selection, use the arrow keys to highlight the option and
          System part of a subnet
          -----------------------
          [X] Yes
    --------------------------------------------------------------------------------
    - Netmask ----------------------------------------------------------------------

      On this screen you must specify the netmask of your subnet.  A default
      netmask is shown; do not accept the default unless you are sure it is
      correct for your subnet.  A netmask must contain four sets of numbers
    --------------------------------------------------------------------------------
    - IPv6 -------------------------------------------------------------------------

      On this screen you should specify whether or not IPv6, the next generation
      Internet Protocol, will be enabled on this machine.  Enabling IPv6 will have
      no effect if this machine is not on a network that provides IPv6 service.
      IPv4 service will not be affected if IPv6 is enabled.

      > To make a selection, use the arrow keys to highlight the option and
          Enable IPv6
          -----------
          [ ] Yes
    --------------------------------------------------------------------------------
      Please wait...
    --------------------------------------------------------------------------------
    - Set the Default Route --------------------------------------------------------

      To specify the default route, you can let the software try to detect one
      upon reboot, you can specify the IP address of the router, or you can choose
      None.  Choose None if you do not have a router on your subnet.

      > To make a selection, use the arrow keys to select your choice and press
          Default Route
          --------------------------
          [X] Detect one upon reboot
          [ ] Specify one
    --------------------------------------------------------------------------------
          [X] Detect one upon reboot
          [ ] Detect one upon reboot
    - Default Route IP Address -----------------------------------------------------

      Enter the IP address of  the default route. This entry will be placed in the
      /etc/defaultrouter file and will be the default route after you reboot
    --------------------------------------------------------------------------------
    - Confirm Information ----------------------------------------------------------

      > Confirm the following information.  If it is correct, press F2;
                        Networked: Yes
                         Use DHCP: No
        Primary network interface: bge0
                        Host name: sunshapp13
                       IP address: 192.168.120.13
          System part of a subnet: Yes
                          Netmask: 255.255.255.0
                      Enable IPv6: No
                    Default Route: Specify one
    --------------------------------------------------------------------------------
      Just a moment...
    --------------------------------------------------------------------------------

    --------------------------------------------------------------------------------
    - Configure Security Policy: ---------------------------------------------------

      Specify Yes if the system will use the Kerberos security mechanism.

      Specify No if this system will use standard UNIX security.

          Configure Kerberos Security
          ---------------------------
          [ ] Yes
    --------------------------------------------------------------------------------
    - Confirm Information ----------------------------------------------------------

      > Confirm the following information.  If it is correct, press F2;
    --------------------------------------------------------------------------------
      Please wait...
    --------------------------------------------------------------------------------

    --------------------------------------------------------------------------------
    - Name Service -----------------------------------------------------------------

      On this screen you must provide name service information.  Select the name
      service that will be used by this system, or None if your system will either
      not use a name service at all, or if it will use a name service not listed
      here.

      > To make a selection, use the arrow keys to highlight the option
          Name service
          ------------
          [X] NIS+
          [ ] NIS
          [ ] DNS
          [ ] LDAP
    --------------------------------------------------------------------------------
          [X] NIS+
          [ ] NIS
          [ ] DNS
          [ ] LDAP
          [ ] LDAP
          [ ] DNS
          [ ] NIS+
          [ ] NIS
    - Domain Name ------------------------------------------------------------------

      On this screen you must specify the domain where this system resides.  Make
    --------------------------------------------------------------------------------
    - DNS Server Addresses ---------------------------------------------------------

      On this screen you must enter the IP address of your DNS server(s).  You
      must enter at least one address.  IP addresses must contain four sets of
        Server's IP address:
        Server's IP address:
    --------------------------------------------------------------------------------
    - DNS Search List --------------------------------------------------------------

      On this screen you can enter a list of domains that will be searched when a
      DNS query is made.  If you do not enter any domains, DNS will only search
      the DNS domain chosen for this system.  The domains entered, when
        Search domain:
        Search domain:
        Search domain:
        Search domain:
        Search domain:
    --------------------------------------------------------------------------------
    - Confirm Information ----------------------------------------------------------

      > Confirm the following information.  If it is correct, press F2;
              Name service: DNS
               Domain name: 192.168.120.18
    --------------------------------------------------------------------------------
      Just a moment...
    --------------------------------------------------------------------------------

    --------------------------------------------------------------------------------
    - Name Service Error -----------------------------------------------------------

      Unable to find an address entry for sunshapp13 with the specified DNS
          Enter new name service information?
          -----------------------------------
          [X] Yes
    --------------------------------------------------------------------------------
          [X] Yes
          [ ] Yes
     done.
    - Time Zone --------------------------------------------------------------------

      On this screen you must specify your default time zone.  You can specify a
      time zone in three ways:  select one of the continents or oceans from the
      list, select other - offset from GMT, or other - specify time zone file.

      > To make a selection, use the arrow keys to highlight the option and
          Continents and Oceans
          ----------------------------------
      -   [ ] Africa
      |   [ ] Americas
      |   [ ] Antarctica
      |   [ ] Arctic Ocean
      |   [ ] Asia
      |   [ ] Atlantic Ocean
      |   [ ] Australia
      |   [ ] Europe
      v   [ ] Indian Ocean

    --------------------------------------------------------------------------------
      -   [ ] Africa
      |   [ ] Americas
      |   [ ] Antarctica
      |   [ ] Arctic Ocean
    - Country or Region ------------------------------------------------------------

      > To make a selection, use the arrow keys to highlight the option and
          Countries and Regions
          ------------------------
      -   [ ] Afghanistan
      |   [ ] Armenia
      |   [ ] Azerbaijan
      |   [ ] Bahrain
      |   [ ] Bangladesh
      |   [ ] Bhutan
      |   [ ] Brunei
      |   [ ] Cambodia
      |   [ ] China
      |   [ ] Cyprus
      |   [ ] East Timor
      |   [ ] Georgia
      v   [ ] Hong Kong

    --------------------------------------------------------------------------------
      -   [ ] Afghanistan
      |   [ ] Armenia
      |   [ ] Azerbaijan
      |   [ ] Bahrain
      |   [ ] Bangladesh
      |   [ ] Bhutan
      |   [ ] Brunei
      |   [ ] Cambodia
      Please wait...
    --------------------------------------------------------------------------------

    --------------------------------------------------------------------------------
    - Date and Time ----------------------------------------------------------------

      > Accept the default date and time or enter
        new values.

      Date and time: 2008-03-04 09:54

        Year   (4 digits) : 2008
        Month  (1-12)     : 03
        Day    (1-31)     : 04
        Hour   (0-23)     : 09
      Date and time: 2008-03-04 09:54

    --------------------------------------------------------------------------------
    - Confirm Information ----------------------------------------------------------

      > Confirm the following information.  If it is correct, press F2;
            Time zone: PRC
    --------------------------------------------------------------------------------
      Please wait...
    --------------------------------------------------------------------------------

    --------------------------------------------------------------------------------
    System identification is completed.
    System identification complete.
    Generating software table of contents [this may take a few minutes...]
    Table of contents complete.
    Starting Solaris installation program...
    Executing JumpStart preinstall phase...
    Searching for SolStart directory...
    Checking rules.ok file...
    Using begin scrīpt: install_begin
    Using finish scrīpt: patch_finish
    Executing SolStart preinstall phase...
    Executing begin scrīpt "install_begin"...
    Begin scrīpt install_begin execution completed.
    - Solaris Interactive Installation ---------------------------------------------

      This system is upgradable, so there are two ways to install the Solaris
      software.

      The Upgrade option updates the Solaris software to the new release, saving
      as many modifications to the previous version of Solaris software as
      possible.  Back up the system before using the Upgrade option.

      The Initial option overwrites the system disks with the new version of
      Solaris software.  This option allows you to preserve any existing file
      systems.  Back up any modifications made to the previous version of Solaris
      software before starting the Initial option.

      After you select an option and complete the tasks that follow, a summary of
      your actions will be displayed.  If you want to install the system with a
    --------------------------------------------------------------------------------
    - Solaris Interactive Installation ---------------------------------------------

      You'll be using the initial option for installing Solaris software on the
      system. The initial option overwrites the system disks when the new Solaris
      software is installed.

      On the following screens, you can accept the defaults or you can customize
      how Solaris software will be installed by:

            - Selecting the type of Solaris software to install
            - Selecting disks to hold software you've selected
            - Specifying how file systems are laid out on the disks

      After completing these tasks, a summary of your selections (called a
      profile) will be displayed.

      There are two ways to install your Solaris software:

       - "Standard" installs your system from a standard Solaris Distribution.
       - "Flash" installs your system from one or more Flash Archives.


    --------------------------------------------------------------------------------
      Loading install media, please wait...
    --------------------------------------------------------------------------------

    --------------------------------------------------------------------------------
    - Select Geographic Regions ----------------------------------------------------

      Select the geographic regions for which support should be installed.

      > [ ] Australasia
      > [ ] Central America
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      > [ ] North America
      > [ ] Asia
      > [ ] Northern Europe
      > [ ] Eastern Europe
       Press Return to show components
       Move left, right, up, down using the arrow keys
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      > [ ] Australasia
      > [ ] Central America
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      > [ ] North America
      V [ ] Australasia
        [ ]     Australia (ISO8859-1)
        [ ]     New Zealand (ISO8859-1)
      > [ ] Central America
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      > [ ] North America
      > [ ] Asia
      > [ ] Northern Europe
      > [ ] Eastern Europe
      > [ ] South America

     

       Press Return to hide components
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      V [ ] Australasia
        [ ]     Australia (ISO8859-1)
        [ ]     New Zealand (ISO8859-1)
      V [ ] Central America
        [ ]     Costa Rica (ISO8859-1)
        [ ]     El Salvador (ISO8859-1)
        [ ]     Guatemala (ISO8859-1)
        [ ]     Nicaragua (ISO8859-1)
        [ ]     Panama (ISO8859-1)
        [ ]     Spanish
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      > [ ] North America

       Press Return to hide components
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      V [ ] Central America
        [ ]     Costa Rica (ISO8859-1)
        [ ]     El Salvador (ISO8859-1)
        [ ]     Guatemala (ISO8859-1)
        [ ]     Nicaragua (ISO8859-1)
        [ ]     Panama (ISO8859-1)
        [ ]     Spanish
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [ ] North America

       Press Return to hide components
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Australia (ISO8859-1)
        [ ]     New Zealand (ISO8859-1)
      V [ ] Central America
        [ ]     Costa Rica (ISO8859-1)
        [ ]     El Salvador (ISO8859-1)
        [ ]     Guatemala (ISO8859-1)
        [ ]     Nicaragua (ISO8859-1)
        [ ]     Panama (ISO8859-1)
        [ ]     Spanish
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [ ] North America
        [ ]     Canada-English (ISO8859-1)


    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     New Zealand (ISO8859-1)
      V [ ] Central America
        [ ]     Costa Rica (ISO8859-1)
        [ ]     El Salvador (ISO8859-1)
        [ ]     Guatemala (ISO8859-1)
        [ ]     Nicaragua (ISO8859-1)
        [ ]     Panama (ISO8859-1)
        [ ]     Spanish
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [ ] North America
        [ ]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)


    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      V [ ] Central America
        [ ]     Costa Rica (ISO8859-1)
        [ ]     El Salvador (ISO8859-1)
        [ ]     Guatemala (ISO8859-1)
        [ ]     Nicaragua (ISO8859-1)
        [ ]     Panama (ISO8859-1)
        [ ]     Spanish
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [ ] North America
        [ ]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French


    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Costa Rica (ISO8859-1)
        [ ]     El Salvador (ISO8859-1)
        [ ]     Guatemala (ISO8859-1)
        [ ]     Nicaragua (ISO8859-1)
        [ ]     Panama (ISO8859-1)
        [ ]     Spanish
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [ ] North America
        [ ]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)


    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     El Salvador (ISO8859-1)
        [ ]     Guatemala (ISO8859-1)
        [ ]     Nicaragua (ISO8859-1)
        [ ]     Panama (ISO8859-1)
        [ ]     Spanish
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [ ] North America
        [ ]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish


    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Guatemala (ISO8859-1)
        [ ]     Nicaragua (ISO8859-1)
        [ ]     Panama (ISO8859-1)
        [ ]     Spanish
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [ ] North America
        [ ]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [ ]     U.S.A. (UTF-8)


    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Nicaragua (ISO8859-1)
        [ ]     Panama (ISO8859-1)
        [ ]     Spanish
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [ ] North America
        [ ]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [ ]     U.S.A. (UTF-8)
        [ ]     U.S.A. (en_US.ISO8859-1)


    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     U.S.A. (UTF-8)
        [ ]     U.S.A. (UTF-8)
        [ ]     U.S.A. (en_US.ISO8859-1)

        [ ]     Panama (ISO8859-1)
        [ ]     Spanish
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [ ] North America
        [ ]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [ ]     U.S.A. (UTF-8)
        [ ]     U.S.A. (en_US.ISO8859-1)
      > [ ] Asia

       Region is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      > [ ] Asia

        [ ]     U.S.A. (UTF-8)
        [ ]     U.S.A. (en_US.ISO8859-1)
        [ ]     Spanish
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [ ] North America
        [ ]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [ ]     U.S.A. (UTF-8)
        [ ]     U.S.A. (en_US.ISO8859-1)
      > [ ] Asia
      > [ ] Northern Europe

       Region is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      > [ ] Northern Africa
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [ ] North America
        [ ]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [ ]     U.S.A. (UTF-8)
        [ ]     U.S.A. (en_US.ISO8859-1)
      > [ ] Asia
      > [ ] Northern Europe
      > [ ] Eastern Europe

       Region is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      V [/] North America
       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [X]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [X]     U.S.A. (UTF-8)
       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [X]     U.S.A. (en_US.ISO8859-1)
       Region is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      > [X] Asia
      > [ ] Northern Europe
      V [X] Asia
        [X]     Hindi UTF-8
        [X]     Japanese EUC (ja)

       Press Return to hide components
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      V [X] Asia
      V [/] Asia
       Locale is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Hindi UTF-8
      > [ ] Middle East
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [/] North America
        [X]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [X]     U.S.A. (UTF-8)
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [X]     Japanese EUC (ja)
        [X]     Japanese PC Kanji (ja_JP.PCK)

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      > [ ] Western Europe
      > [ ] Central Europe
      > [ ] Southern Europe
      V [/] North America
        [X]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [X]     U.S.A. (UTF-8)
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [X]     Japanese EUC (ja)
        [X]     Japanese PC Kanji (ja_JP.PCK)
        [X]     Japanese UTF-8 (ja_JP.UTF-8)

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      > [ ] Central Europe
      > [ ] Southern Europe
      V [/] North America
        [X]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [X]     U.S.A. (UTF-8)
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [X]     Japanese EUC (ja)
        [X]     Japanese PC Kanji (ja_JP.PCK)
        [X]     Japanese UTF-8 (ja_JP.UTF-8)
        [X]     Korean EUC

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
       Locale is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Japanese EUC (ja)
       Locale is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Japanese PC Kanji (ja_JP.PCK)
       Locale is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC

       Locale is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      > [ ] Southern Europe
      V [/] North America
        [X]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [X]     U.S.A. (UTF-8)
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [X]     Korean UTF-8

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Korean UTF-8

       Locale is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      V [/] North America
        [X]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [X]     U.S.A. (UTF-8)
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [X]     Canada-English (ISO8859-1)
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [X]     U.S.A. (UTF-8)
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC
        [X]     Simplified Chinese GB18030

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Canada-French (ISO8859-1)
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [X]     U.S.A. (UTF-8)
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC
        [X]     Simplified Chinese GB18030
        [X]     Simplified Chinese GBK

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     French
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [X]     U.S.A. (UTF-8)
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC
        [X]     Simplified Chinese GB18030
        [X]     Simplified Chinese GBK
        [X]     Simplified Chinese UTF-8

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Mexico (ISO8859-1)
        [ ]     Spanish
        [X]     U.S.A. (UTF-8)
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC
        [X]     Simplified Chinese GB18030
        [X]     Simplified Chinese GBK
        [X]     Simplified Chinese UTF-8
        [X]     Thai TIS620

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Spanish
        [X]     U.S.A. (UTF-8)
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC
        [X]     Simplified Chinese GB18030
        [X]     Simplified Chinese GBK
        [X]     Simplified Chinese UTF-8
        [X]     Thai TIS620
        [X]     Thai UTF-8

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
       Locale is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Thai TIS620
        [ ]     Thai UTF-8

       Locale is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [X]     U.S.A. (UTF-8)
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC
        [X]     Simplified Chinese GB18030
        [X]     Simplified Chinese GBK
        [X]     Simplified Chinese UTF-8
        [ ]     Thai TIS620
        [ ]     Thai UTF-8
        [X]     Traditional Chinese (Hong Kong) BIG5+HKSCS

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [X]     U.S.A. (en_US.ISO8859-1)
      V [/] Asia
        [ ]     Hindi UTF-8
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC
        [X]     Simplified Chinese GB18030
        [X]     Simplified Chinese GBK
        [X]     Simplified Chinese UTF-8
        [ ]     Thai TIS620
        [ ]     Thai UTF-8
        [X]     Traditional Chinese (Hong Kong) BIG5+HKSCS
        [X]     Traditional Chinese (Hong Kong) UTF-8

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      V [/] Asia
        [ ]     Hindi UTF-8
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC
        [X]     Simplified Chinese GB18030
        [X]     Simplified Chinese GBK
        [X]     Simplified Chinese UTF-8
        [ ]     Thai TIS620
        [ ]     Thai UTF-8
        [X]     Traditional Chinese (Hong Kong) BIG5+HKSCS
        [X]     Traditional Chinese (Hong Kong) UTF-8
        [X]     Traditional Chinese BIG5

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Hindi UTF-8
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC
        [X]     Simplified Chinese GB18030
        [X]     Simplified Chinese GBK
        [X]     Simplified Chinese UTF-8
        [ ]     Thai TIS620
        [ ]     Thai UTF-8
        [X]     Traditional Chinese (Hong Kong) BIG5+HKSCS
        [X]     Traditional Chinese (Hong Kong) UTF-8
        [X]     Traditional Chinese BIG5
        [X]     Traditional Chinese EUC

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Japanese EUC (ja)
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC
        [X]     Simplified Chinese GB18030
        [X]     Simplified Chinese GBK
        [X]     Simplified Chinese UTF-8
        [ ]     Thai TIS620
        [ ]     Thai UTF-8
        [X]     Traditional Chinese (Hong Kong) BIG5+HKSCS
        [X]     Traditional Chinese (Hong Kong) UTF-8
        [X]     Traditional Chinese BIG5
        [X]     Traditional Chinese EUC
        [X]     Traditional Chinese UTF-8

       Locale is selected.  Press Return to deselect
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
        [ ]     Japanese PC Kanji (ja_JP.PCK)
        [ ]     Japanese UTF-8 (ja_JP.UTF-8)
        [ ]     Korean EUC
        [ ]     Korean UTF-8
        [X]     Simplified Chinese EUC
        [X]     Simplified Chinese GB18030
        [X]     Simplified Chinese GBK
        [X]     Simplified Chinese UTF-8
        [ ]     Thai TIS620
        [ ]     Thai UTF-8
        [X]     Traditional Chinese (Hong Kong) BIG5+HKSCS
        [X]     Traditional Chinese (Hong Kong) UTF-8
        [X]     Traditional Chinese BIG5
        [X]     Traditional Chinese EUC
        [X]     Traditional Chinese UTF-8
      > [ ] Northern Europe

       Region is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
      > [ ] Northern Europe

       Region is deselected.  Press Return to select
    -----Esc-2_Continue    Esc-3_Go Back    Esc-5_Exit    Esc-6_Help----------------
    - Select Software --------------------------------------------------------------

      Select the Solaris software to install on the system.

      NOTE: After selecting a software group, you can add or remove software by
      customizing it. However, this requires understanding of software
      dependencies and how Solaris software is packaged. The software groups
      displaying 64-bit contain 64-bit support.

          [ ]  Entire Distribution plus OEM support 64-bit  3296.00 MB
          [X]  Entire Distribution 64-bit ................. 3252.00 MB
          [ ]  Developer System Support 64-bit ............ 2690.00 MB
          [ ]  End User System Support 64-bit ............. 2140.00 MB
    --------------------------------------------------------------------------------
          [X]  Entire Distribution 64-bit ................. 3252.00 MB
          [ ]  Entire Distribution 64-bit ................. 3252.00 MB
          [ ]  Entire Distribution 64-bit ................. 3252.00 MB
          [ ]  Entire Distribution plus OEM support 64-bit  3296.00 MB
          [X]  Entire Distribution plus OEM support 64-bit  3296.00 MB
          [ ]  Entire Distribution 64-bit ................. 3252.00 MB
       Please wait ...
    --------------------------------------------------------------------------------
    - Select Disks -----------------------------------------------------------------

      On this screen you must select the disks for installing Solaris software.
      Start by looking at the Suggested Minimum field; this value is the
      approximate space needed to install the software you've selected. Keep
      selecting disks until the Total Selected value exceeds the S

  • crontab -- solaris 定时运行脚本命令

    2008-11-12 15:49:16

    -bash-3.00# crontab -l # view crontab file
    -bash-3.00# crontab -e # edit crontab file

    #use the following way to edit crontab file
    -bash-3.00# crontab -l > newcron

    # edit crontab file
    -bash-3.00# vi newcron
    #add lines...

    -bash-3.00# crontab newcron

Open Toolbar