Solaris 10 on a T2000 - no GUI

Hi,
I try to install Solaris 11/06 on a T2000, but the installer runs in text-modus.
Also after the install I only have console, no GUI.
In this document (http://docs-pdf.sun.com/817-0544/817-0544.pdf) they say you need at least 384 MB, but I have 32760 MB!
How can I get a GUI?!?
Thanks,

After the 2 first commands it says it can't find dtlogin.
From the logs I understand it doesn't find the video-card. (it's a XVR-200, which is supported for the T2000)
Does it depend on the slot in which the videocard is installed? Shouldn't Solaris detect which card it is, and start the setup in GUI-modus?
Edited by: Fileandreos on Oct 11, 2007 4:33 AM

Similar Messages

  • Solaris 10 Sparc T2000/T1000 slow scp/sftp between hosts

    We have 4 x t2000 and 2 x t1000 sun servers all running solaris 10 sparc edition and when uploading an agent to all these servers I was unable to maintain a connection faster than 6MB. All our OEL 6.3 hosts on the same vlans/network/swithes are able to copy the same files around at 85MB/s.
    Our entire network is GB and have been trouble shooting along the way and have got down to two sun hosts on the same switch and vlan to rule out firewalling and other factors.
    The switchports on the cisco show no errors and no errors are seen on the solaris servers and training up at the GB speed as configured.
    So I'm faily certain there is something on the solaris hosts OS wise that is affecting perfomance that is causing some of our backup jobs to be quite long but I'm not sure at what to do now.
    I've seen some online articles relating to tuning and adjusting certain tcp options but unsure as to what would be best.
    Has anyone else experienced issues such a this and if so what was done to resolve it, thanks.

    Hi,
    this is just a guess, but the T1000 and T2000 are really slow when doing single-thread cpu stuff. When you do scp, a single thread or process on each machine has to do all the encryption and this is most likely what is slowing you down. To analyze this further, look at the output of prstat (or top). If I am right, you will see one scp/ssh process using all cpu time of one of your cores/threads. In a T2000 with 8 cores, 32threads, this will be shown in prstat as 6.7% utilization.
    Bjoern

  • Broken pipe - Solaris 10, Sun T2000

    Hi,
    I have some problems..
    So, there's one system I'm working with. It's made of 2 parts (both written in Java):
    - "normal" application, that works as a business logic server,
    - web application (build on Turbine framework, running on a Resin Application Server) - it works as a presentation layer,
    These 2 parts are connected via TCP/IP socket connection - we use an ObjectOutputStream.
    It normally works just fine (it's running on several different systems), but recenlty it has been installed on a new server machine and it's started to throw strange exceptions. Below there are informations about server machine, exceptions and code making connections.
    We think, that It may be a problem with configuration of Solaris kernel or TCP/IP stack, but have no idea how to fix it.
    SERVER CONFIGURATION:
    Machine: Sun T2000
    System: Solaris 10
    JVM: 1.4 or 1.5 (both were tested)
    EXCEPTION:
    ERROR 2006-11-28 11:28:59,377 [pl.com.ttsoft.vixen.currentday.server.ClientServiceThread] - IOException while sending data to the client. Closing output stream.
    java.net.SocketException: Broken pipe
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at java.io.ObjectOutputStream$BlockDataOutputStream.drain(ObjectOutputStream.java:1682)
    at java.io.ObjectOutputStream$BlockDataOutputStream.setBlockDataMode(ObjectOutputStream.java:1591)
    at java.io.ObjectOutputStream.writeFatalException(ObjectOutputStream.java:1401)
    at java.io.ObjectOutputStream.writeUnshared(ObjectOutputStream.java:371)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendMessageToClient(ClientServiceThread.java:679)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendModificationData(ClientServiceThread.java:432)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.serveDataModification(ClientServiceThread.java:308)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.run(ClientServiceThread.java:185)
    ERROR 2006-11-28 11:28:59,400 [pl.com.ttsoft.vixen.currentday.server.ClientServiceThread] - IOException while closing client connection.
    java.net.SocketException: Broken pipe
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at java.io.ObjectOutputStream$BlockDataOutputStream.drain(ObjectOutputStream.java:1682)
    at java.io.ObjectOutputStream$BlockDataOutputStream.flush(ObjectOutputStream.java:1627)
    at java.io.ObjectOutputStream.flush(ObjectOutputStream.java:666)
    at java.io.ObjectOutputStream.close(ObjectOutputStream.java:687)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.closeClientConnection(ClientServiceThread.java:706)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendMessageToClient(ClientServiceThread.java:691)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.sendModificationData(ClientServiceThread.java:432)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.serveDataModification(ClientServiceThread.java:308)
    at pl.com.ttsoft.vixen.currentday.server.ClientServiceThread.run(ClientServiceThread.java:185)
    STANDALONE APPLICATION CODE:
    /* i've simplified it */
    /* OPENING CONNECITON */
              Socket socket = = new Socket(hostName, hostPort);
              ObjectOutputStream outStream = new ObjectOutputStream( socket.getOutputStream() );
              ClientDescriptor clientDescriptor =
                new ClientDescriptor(socket, outStream, info.getLogin(), info.getSystem(),
                    info.getDay(), info.getCurrentDaySessionId());
    /* SENDING DATA */
         private boolean sendMessageToClient( MessageDTO messageDTO, ClientDescriptor clientDescriptor )
              throws CurrentDayException {
              logger.info( "sendMessageToClient " + messageDTO.getClientId() );
              ObjectOutputStream outputStream = clientDescriptor.getOutputStream();
              try {
                  outputStream.writeUnshared( messageDTO ); // THIS WRITE THROWS EXCEPTIONS
                  outputStream.flush();
              } catch ( IOException exc ) {
                logger.error( " IOException while sending data to the client. Closing output stream. ", exc );
                // close client connection
                closeClientConnection( clientDescriptor );
                return false;
            return true;       
        private void closeClientConnection( ClientDescriptor clientDescriptor ) {
            try {
                synchronized ( clientDescriptorMap ) {
                    clientDescriptor.setState( ClientDescriptor.TO_REMOVE );           
                    clientDescriptor.getOutputStream().close();
                    clientDescriptor.getSocket().close();
            } catch ( IOException exc ) {
                logger.error( " IOException while closing client connection. ", exc );
    /* WEB APPLICATION */
    /* RECIEVING DATA */
    /* it routes this data to 3-rd party applet */
            SocketChannel vixenSocket = (SocketChannel)key.channel();
            Socket clientSocket = (Socket)objClientServers.get(key);
            // read the information from the socket....
            ByteBuffer buffer = ByteBuffer.allocate(16 * 1024);
            while (vixenSocket.read(buffer) > 0) {
                buffer.flip();
                byte[] bytespassed = new byte[buffer.remaining()];
                logger.debug("buffer.remaining() (1)=" + buffer.remaining());
                buffer.get(bytespassed, 0, bytespassed.length);
                clientSocket.getOutputStream().write(bytespassed);
                buffer.compact();
            buffer.flip();
            while (buffer.hasRemaining()) { // make sure the buffer is fully readed.
                byte[] bytespassed = new byte[buffer.remaining()];
                logger.debug("buffer.remaining() (2)=" + buffer.remaining());
                buffer.get(bytespassed, 0, bytespassed.length);
                clientSocket.getOutputStream().write(bytespassed);
            buffer.clear();We think, that It may be a problem with configuration of Solaris kernel or TCP/IP stack, but have no idea how to fix it.
    Thanks for help,
    Ziemek Obel.

    We solve problem changing tcp/ip window parameters on T2000 server:
    ndd -set /dev/tcp tcp_xmit_hiwat 400000
    ndd -set /dev/tcp tcp_recv_hiwat 400000
    ndd -set /dev/tcp tcp_conn_req_max_q 81920
    ndd -set /dev/tcp tcp_conn_req_max_q0 81920
    ndd -set /dev/tcp tcp_time_wait_interval 60000
    Arkadiusz Malinowski

  • Can you install solaris 10 without installig the gui?

    Hi all. As you see I am new to solaris but not new to the unix world. I finally got some hardware to install the solarais 10 dvd I had hanging around. Since it was my first install I told it to install the kitchen sink (also b/c I wasn't quite sure of what the different options were that I was presented with). Well I have been flloored the last 3 days playing with it as it is simply AWESOME. I actually am having gasp fun. I am old school and have general disdain for gui on unix. Sun implementation is great though. Still though I am curious, can I simply install the "base " operating system without the gui for a server project? if so what install option should I look out for, none is obvious like all the linux distros that have "install desktop environment" option. I would just wipe it out and explore the other install options but I actually was able to setup all services I was curious about and I have a test group using it. After some more stability tests I would like to wipe and go production with commandline only. thank you

    Two excellent answers. Thank you so much. The bit about disabling graphical login is great. I gotta be honest. I am younger than the unix kernel. My inexperience makes it hard to navigate unices that have gui's installed because the directories get filled with so much shit. I really do prefer commandline cause it simple and leaves me with files that I can figure out what they mean if I need to.
    Like I mentioned, I had this disk on hand for about 1.5 years. I tried installing once and kinda gave up for lack of interest. Ever since I have occasionally hit the web and tried to find more info about the various options in the installer. Since it is so slow I didn't have much time to dilly dally with it and try different permutations. I'm so glad I had nothing to do this sunday and fired up an old server with it. I am very impressed so far. If the installer and a few bugs with it were clarified I would say I had almost a perfect experience so far. That is something I intend to contribute to the community. While I do not have solid coding background, I am a workflow and layout "master" and have lots of experience implementing interactive devices.

  • Sun N1 System Manager 1.3.3 install on Solaris 10 u4/T2000 fails

    Hi all,
    I am trying to install 1.3.3 on Sol 10 u4: SunOS 5.10 Generic_120011-14 sun4v sparc SUNW,Sun-Fire-T200
    by going to /mountpoint/Solaris_sparc/Product/installer
    and running "install".
    It fails with this:
    N1SM Installer (version 1.3.3 on SunOS)
    1. Install OS packages. [Completed]
    2. Install Expect. [Completed]
    3. Install IPMI tool. [Completed]
    4. Install JDK 1.5. [Completed]
    5. Install service provisioning components. [Completed]
    6. Install OS provisioning components. [Partially Run]
    7. Copy DHCP configuration file. [Not Completed]
    8. Install user interface components. [Not Completed]
    9. Install service container components. [Not Completed]
    10. Install N1 System Manager. [Not Completed]
    Failed Step: Install OS provisioning components.
    The following is a portion of the installer
    log which may indicate the cause of the error.
    If this does not indicate the cause of the
    error, you will need to view the full log
    file. More information on how to do that is
    available below.
    createdb: database creation failed
    ERROR : Cannot create the database
    pg_ctl: postmaster or postgres is not running
    ERROR: Database initialization failed
    Info: Postinstall complete
    Please fix the problem and then try this step again.
    For a full log of the failed install see the file: /var/tmp/installer.log.751.
    t. Try this step again (correct the failure before proceeding)
    x. Exit
    Enter selection: (t/x)
    =============================================================
    # tail -30 /var/tmp/installer.log.751
    Fixing permissions on existing directory /var/opt/SUNWscs/data/db/mgmt... ok
    creating directory /var/opt/SUNWscs/data/db/mgmt/base... ok
    creating directory /var/opt/SUNWscs/data/db/mgmt/global... ok
    creating directory /var/opt/SUNWscs/data/db/mgmt/pg_xlog... ok
    creating directory /var/opt/SUNWscs/data/db/mgmt/pg_clog... ok
    creating template1 database in /var/opt/SUNWscs/data/db/mgmt/base/1... ok
    creating configuration files... ok
    initializing pg_shadow... ok
    enabling unlimited row size for system tables... ok
    creating system views... ok
    loading pg_description... ok
    vacuuming database template1... ok
    copying template1 to template0... ok
    Success. You can now start the database server using:
    /opt/sun/N1_Grid_Service_Provisioning_System_5.1/server/postgres/bin/postmaster -D /var/opt/SUNWscs/data/db/mgmt
    or
    /opt/sun/N1_Grid_Service_Provisioning_System_5.1/server/postgres/bin/pg_ctl -D /var/opt/SUNWscs/data/db/mgmt -l logfile start
    postmaster successfully started
    psql: could not connect to server: No such file or directory
    Is the server running locally and accepting
    connections on Unix domain socket "/tmp/.s.PGSQL.5434"?
    createdb: database creation failed
    ERROR : Cannot create the database
    pg_ctl: postmaster or postgres is not running
    ERROR: Database initialization failed
    Info: Postinstall complete
    ===================================================================
    It looks like postgres is started by the script but it exits for unknown reason and the
    installation breaks. Can somebody gives me a hint how to resolve this?
    Thanks a lot in advance!
    vladimir

    draglev -
    I had this same error with the same configuration. If SUN set up your box they problem configured root to execute a .profile-EIS. Modify root's .profile so that it does not execute the .profile-EIS. Then try your install again. This worked for me.
    Thanks

  • Oracle 11g client installation on Solaris in non GUI mode

    Hi,
    I want to know if there is a way i can install Oracle 11g client on Solaris 10 machine in non GUI mode (ie. i want to do it from a command based terminal)
    Thanks
    Anup

    Hi Anup
    You have two ways to install it
    1) Client installation without response file
    Please Refer to Doc ID 885643.1
    2) With Response file
    Refer to the document available in Document library
    Document Oracle® Database Client Installation Guide
    11g Release 2 (11.2) for Solaris Operating System
    Note: from 11gR2 onwards you can create a response file from GUI also and then use it later on for silent installation.
    Hope this is helpful for You
    Regards
    Sudhir
    Edited by: user13090769 on Sep 1, 2010 10:55 AM
    Edited by: user13090769 on Sep 1, 2010 10:56 AM

  • Numlock Problem with Sun Solaris 10 remote login into Linux

    Hi,
    I am using a Sun Solaris 10 system in a network. The Num lock key works fine when launching application locally on the the Solaris system.
    However, when I login from the Solaris 10 machines remotely into a Linux machine, set the display to my machine(i.e solaris 10) and then launch GUI applications, the Num Lock key does not work as expected.
    Can any of you help me with this issue ?? Is this a documented problem ?
    Is there any workaround for this issue ??
    Thanks in advance
    Regards,
    Philip

    dj_phil, any luck on finding the problem and/or solution here?
    thanks -12

  • Open files in Solaris

    Hello,
    I need to open a pdf file when somenone clicks a button.
    I don't want to execute an specific program, like for example Acrobat Reader, because the user might not have it installed,
    so I use the following code to open the file with the default program for that extension in the OS
    java.lang.Runtime.getRuntime().exec("cmd.exe /c " + docPath);This works for Windows, but I need to do the same for Solaris. Does anyone know how to do this?
    Thanks...

    well, you call whatever would open a pdf, in solaris.
    i dont know about your solaris, but it my solaris, i dont have a GUI, and i do everything using the shell, opening pdfs of the shell is not a very good idea.

  • Help me in Installing Solaris Express, Developer Edition  X 86

    Hi,
    Help me in installing Solaris Express, Developer Edition
    When i am trying to install Solaris, system hangs and the moniter is switcher off when the system goes in GUI mode.
    i have intel 945GTP mother board with as on board Intel Graphics Media Accelerator Drives , Chipset -> Intle 945G , 160 SATA Hard Disk, 1 GB DDR2 Ram , P4 3.Ghz Processer , on board Intel PRO/100 VE Network Card.
    Please,Help me.
    Thanking you,
    P.Sathish Kumar

    Hello,
    first of all: Try to run the HCTS (Hardware
    Compatibility Test Suite) first, it's available
    here:
    http://www.sun.com/bigadmin/hcl/hcts/device_detect.htm
    l
    This you can run from Windows, and it will list all
    hardware that has drivers, and all those, that do not
    have drivers (including some public domain drivers).
    After that, you have the possibility to install
    Solaris WITHOUT a GUI, use one of the two "terminal"
    modes. The first Is still a GUI, as it only starts X
    and opens a terminal, in which then the installer
    runs. The second does NOT start X, but runs the
    installer on the console. Try this one, and once you
    get through that, you can afterwards figure out the
    settings of the Xserver.Hi ,
    i have installed the solaris using console.
    Still GUI is not starting, the moniter is switched off when GUI gets started
    I used Hardware Compatibility Test Suite, its say that system is supported
    by Solaris.
    Should i have change BIOS setting to stated the system
    Bye
    P.Sathish Kumar

  • Help me in installing Solaris Express, Developer Edition X86

    Hi,
    Help me in installing Solaris Express, Developer Edition
    When i am trying to install Solaris, system hangs and the moniter is switcher off when the system goes in GUI mode.
    i have intel 945GTP mother board with as on board Intel Graphics Media Accelerator Drives , Chipset -> Intle 945G , 160 SATA Hard Disk, 1 GB DDR2 Ram , P4 3.Ghz Processer , on board Intel PRO/100 VE Network Card.
    Please,Help me.
    Thanking you,
    P.Sathish Kumar

    Hello,
    first of all: Try to run the HCTS (Hardware
    Compatibility Test Suite) first, it's available
    here:
    http://www.sun.com/bigadmin/hcl/hcts/device_detect.htm
    l
    This you can run from Windows, and it will list all
    hardware that has drivers, and all those, that do not
    have drivers (including some public domain drivers).
    After that, you have the possibility to install
    Solaris WITHOUT a GUI, use one of the two "terminal"
    modes. The first Is still a GUI, as it only starts X
    and opens a terminal, in which then the installer
    runs. The second does NOT start X, but runs the
    installer on the console. Try this one, and once you
    get through that, you can afterwards figure out the
    settings of the Xserver.Hi ,
    i have installed the solaris using console.
    Still GUI is not starting, the moniter is switched off when GUI gets started
    I used Hardware Compatibility Test Suite, its say that system is supported
    by Solaris.
    Should i have change BIOS setting to stated the system
    Bye
    P.Sathish Kumar

  • Solaris unable to reboot

    Hi brother,
    We have Solaris 10 in T2000 which unable to reboot after apply BSM, how can I fix it? both reboot and shutdown command is no response. I need to use poweroff the shutdown the server. Pls help

    you need to ask Oracle to support.

  • T2000 ipge network issue

    I have a T2000 with JES 2005Q4 installed on it. I have had some complaints about timeouts connecting to the mail server. I can find nothing in the mail logs or system logs for why this might be happening, and my network admin says no errors on any of the network infrastructure.
    Are there any known issues with ipge, Solaris 10 or T2000, where they might be dropping packets?

    Ok, Two more drives in and the order seems a little strange. I suspect the tech who replace dthe MB flipped a pair of the SAS cables? Is this controller 2 channels?
    The 2 - 73GB disks are in the bottom (drive slots 0 and 1)
    The 2 - 146GB disks are in the top (drive slots 2 and 3)
    Here is what I am seeing in OBP
    {0} ok show-children
    MPT Version 1.05, Firmware Version 1.09.00.00
    Target 0
    Unit 0 Disk SEAGATE ST914602SSUN146G0400 286739329 Blocks, 146 GB
    SASAddress 5000c5000672aab1 PhyNum 0
    Target 1
    Unit 0 Disk FUJITSU MBB2073RCSUN72G 0505 143374738 Blocks, 73 GB
    SASAddress 500000e0186212b2 PhyNum 1
    Target 2
    Unit 0 Disk FUJITSU MBB2073RCSUN72G 0505 143374738 Blocks, 73 GB
    SASAddress 500000e017bd0402 PhyNum 2
    Target 3
    Unit 0 Disk SEAGATE ST914602SSUN146G0400 286739329 Blocks, 146 GB
    SASAddress 5000c5000679416d PhyNum 3

  • Why Solaris 10 could not remember my new configured IP?

    Hello, All,
    My problem/question is that:
    Solaris 10 on T2000 server seems not remembering IP configuration,
    I searched the past posts, there are some topics related, but after all that
    suggestions/solutions I've tried, it still doesn't work.
    What I wanted to do:
    1. Add a logic IP address on ipge0,
    e.x.
    ifconfig ipge0:1 plumb 10.1.200.69 netmask 255.255.0.0 up
    check with ifconfig -a
    it is up running
    2. Add a new NIC,
    e.x.
    ifconfig ipge3 plumb 192.168.1.11 netmask 255.255.255.0 up
    After reboot, it is back to all the original configuration which ipge0 only has original address,
    and No ipge3 configuration AT ALL!
    BTW. I have configured /etc/inet/ipnodes files
    /etc/inet/hosts
    /etc/nsswitch.conf
    /etc/netmasks
    /etc/resolv.conf
    Please suggest what i missed here?
    Thanks
    ---wangk

    Hi, Paul,
    Thanks for the reply, yes, I did create those files, and you are right, I missed "hostname.ipge3" file
    hostname.ipge0:1
    hostname.ipge3
    defaultrouter
    Now, some how, the virtual NIC ipge0:1 always gets the wrong Netmask, and BOTH ipge0:1 and ipge3 have to be manually brought up after reboot, here is a copy/paste after system reboot, you can see a different Netmask and "No up" status, please ANY Idea?
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    ipge0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 10.1.200.68 netmask ffff0000 broadcast 10.1.255.255
    ether 0:14:4f:7e:4e:d0
    ipge0:1: flags=1000842<BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 10.1.200.69 netmask ff000000 broadcast 10.255.255.255
    ipge3: flags=1000842<BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
    inet 192.168.1.11 netmask ffffff00 broadcast 192.168.1.255
    ether 0:14:4f:7e:4e:d3
    Thanks alot
    ----wangk

  • Using DSEE 6.3.1 on T2000 - cool threads

    I'm starting to wonder if we purchased the wrong hardware for our LDAP server upgrade. We are replacing DS5.2 on Solaris 9 running on V240 hardware with DSEE 6.3.1 Solaris 10 on T2000 hardware.
    It seems the DSEE6.3.1 instance only takes advantage of one of the 32 cool thread processors, basically a waste for the rest of them. Furthermore, it seems that each of the 32 cool thread processors runs slower than the dual processor V240 by about 20% (using LDAP SDK searchrate tool). I do note the CPU utilization being way down on the T2000 (10%) versus the V240 (60- 80%), but why the slower performance? We have enough RAM to fit the entire directory into memory - cache settings set appropriately for database cache and entry cache (99% hit ratio). Indexes are identical on the two systems.
    So, are all the observations I've made seem consistent with the T2000 design? Is there anything more I can do to improve performance? Any way to get the DSEE instance to use more than one cool thread concurrently? Would changing nsslapd-ds-home-directory to /tmp help with performance? Thought this should only be done on systems in which the entire directory could not fit into memory.

    DS 6.x cannot really make use of all the threads available in your T2000. In some cases, it has actually been observed that DS performance degrades when too many vcpus are available. The sweet spot seems to be around 12 - 16. One configuration that has been used in the past is to create a zone for the DS that only has 12 - 16 CPUs and then to run DPS on another zone to make use of the rest of the hardware resources.
    There is also the polling thread count, which was added to DSEE 6 specifically to remove a bottleneck encountered in the T2K platform. Before the T2K, there wasn't a need to consider more than one polling thread (that's the thread that manages the incoming request queue), but with so many vcpus, only having one polling thread was a significant bottleneck. You can experiment with raising that.
    That said, I would not really consider the T2K an ideal hardware platform for the DS. The new Nehalem or AMD rigs are likely to give you better bang for your buck.

  • Install online patch solaris 10

    Dear All ,
    I have try install lates solaris OS on t2000 and try configure updatemanager for get new patch release , we sun spectrum contrac ,After updatemanager running i get new patch list but when i am try install it , the proses still going analysing until 2 days .Any one can advise me .
    Regards
    Hadi

    hi Haspans ,
    thanks for your reply , i try command
    bash-3.00# smpatch list | more
    Patch: 118367-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118371-07 Obsoletes: 119265-02 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWtoo
    Patch: 118373-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118812-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWcsd
    Patch: 118872-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118918-17 Obsoletes: 116781-02, 121473-01, 121476-01, 121478-01, 121282-02, 121284-02, 121292-01, 121786-01
    , 119012-03 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWcnetr, SUNWckr, SUNWcakr, SUNWhea,
    SUNWcslr, SUNWmdb, SUNWmdbr
    Patch: 119042-09 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsd, SUNWtnamr, SUNWkrbr,
    SUNWtnetr, SUNWocfr, SUNWvolr, SUNWnfscr, SUNWgssc, SUNWpmr, SUNWnisr, SUNWypr, SUNWzoner, SUNWmdr, SUNWaccr, SUNW
    bsr, SUNWdhcsr, SUNWatfsr, SUNWkdcr, SUNWbnur, SUNWcnsr, SUNWpcr, SUNWpsr, SUNWdcsr, SUNWefcr, SUNWnfssr, SUNWntpr
    , SUNWftpr, SUNWpiclr, SUNWrcapr, SUNWrcmdr, SUNWslpr, SUNWsndmr, SUNWsshdr
    Patch: 119573-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 119574-02 Obsoletes: 119267-01 Requires: Incompatibles: Packages: SUNWcsu
    Patch: 119578-24 Obsoletes: 119330-01, 119331-01, 119559-01, 119576-01, 120635-02, 122396-01 Requires: Incompatib
    les: Packages: SUNWcsu, SUNWcsl, SUNWckr, SUNWhea, SUNWfmd, FJSVfmd, SUNWarc
    Patch: 119824-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 119984-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120044-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120050-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120062-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWloc
    Patch: 120128-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWxcu6
    Patch: 120618-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120737-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120816-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWesu, SUNWxcu4
    Patch: 120830-04 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWtoo, SUNWxcu4, SUNWxcu6
    Patch: 120845-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl
    .................................etc
    BUT
    bash-3.00# smpatch download -n t2000 -u root -p 321
    Loading Tool: com.sun.admin.patchmgr.cli.PatchMgrCli from t2000
    Login to t2000 as user root was successful.
    Download of com.sun.admin.patchmgr.cli.PatchMgrCli from t2000 was successful.
    Assessing patches for machine t2000. Please wait...
    RMIERROR
    what means RMIERROR ?
    regards
    Hadi

Maybe you are looking for

  • I Think I'm In Trouble ( Big Time)

    Hi good people of Adobe forums, I'm in need of your help yet again, this time with Encore CS 4. A little history, I had problems with Encore a few months ago, when it decided to not even start up when icon clicked. So l uninstalled Encore, ran CC cle

  • Connection goes on and off

    I have ATT Yahoo! DSL and a bridged siemens speedstream dsl modem connected to a Airport Extreme Base Station (802.11n). They work fine usually but sometimes, more often than not, all the computers connected wirelessly and hard wired are not able to

  • How to get 'IOPlatformUUID' on OS X 10.4?

    I need to get UUID value on 10.4 but the command seems not to be supported here. ioreg -rd1 -c IOPlatformExpertDevice | awk '/IOPlatformUUID/ { split($0, line, "\""); printf("%s\n", line[4]); }' Above command is working fine on 10.5. Is this not supp

  • Importing a package recursively (with subpackages)

    Hello everyone, I'm a 1st-year CS major and am new to Java. I had a question about importing packages. As I understand it, when you use a wildcard when importing, it will import the classes within the package specified before the asterisk, but none o

  • Error scr timecode cpp 995

    I have pre 7 and all of the sudden it won't get media from my canon elura camcorder. i get the same error (scr timecode cpp 995). I'm using firewire connection and have updated drivers on video card, quicktime, and tried everything that is listed on