How to startup CDE

How can I make my Solaris 8 to start up CDE? I boot up my Solaris 8 with "Reboot" from the prompt. I used Hyperterminal to access my Solaris from myPC. I went into LOM by entering "#." and "console". Then, it booted up my Solaris. After that it gave me the Console Login User and Password prompt. I logged in as "root".
But how can I start up CDE?
Many thanks in advance.

BTW, the Xerrors log file contains the following lines:
Server for dispaly 0 terminated unexpectedly 1
/dev/fb: No such file or directory
/dev/fb: No such file or directory
Graphics Adapter Device /dev/fb is of unknown type
Fatal server error
InitOutput Error loading module for /dev/fb
It looks like dtlogin failed to start up because of unknown /dev/fb. How do I create the frame buffer device, /dev/fb? I did 'ls /dev/fb' and there is none.
Pls. help!
Many thanks in advance.

Similar Messages

  • How to startup a report in a popup after committing a form (solution)

    How to startup a report in a popup window after succesfull submission of a form</p>
    In Portal Applications you can create forms in which e.g. users can enter
    order-entries. When a user submits his order, it's a good practice to show his
    filled-in order-form, containing the delivery address, items, descriptions,
    prices etc etc.</p>
    In this solution the order-report is started up in a popup window after
    succesfully completing the order-entry form.</p>
    Once you've created the form and report, you have to take two extra steps
    (the abbrevation mos represents MyOrderSystem and offcourse you should replace
    that by the schema- and applicationname you use).</p>
    1  Create a package to startup the report</p>
    <font face="Courier">create package MOS.MOS_POPUP_ORDER 
    as 
     procedure show ( order_id varchar2, backurl varchar2 );
    end; </font></p>
    <font face="Courier">create package body MOS.MOS_POPUP_ORDER 
    as 
     procedure show ( order_id varchar2 , backurl varchar2 ) 
     is 
      l_url varchar2(2000);
    begin 
     if order_id is not null 
     then
    -- URL to startup the report. Surf to the Develop tab while managing the
    -- portal-report and click on Show the call interface.
      l_url := 'http://www.mydomain.com/pls/portal30/' 
            &#0124; &#0124; 'MOS.MOS_ORDER_REP.show?'
            &#0124; &#0124;
    'p_arg_names=_show_header&;p_arg_values=YES&;'
            &#0124; &#0124; 'p_arg_names=order_id&;p_arg_values=' 
            &#0124; &#0124; order_id;
    -- Display the popup window and startup the report.
      htp.p('<SCRIPT> var MyWindow = window.open(&quot;'
            &#0124; &#0124; l_url
            &#0124; &#0124;
    '&quot;,&quot;MyOrderWindow&quot;,&quot;toolbar=no,location=yes,directories=no,'
            &#0124; &#0124;
    'status=no,menubar=yes,scrollbars=yes,resizable=yes,'
            &#0124; &#0124;
    'height=400,width=600,left=150,top=150&quot;);'
            &#0124; &#0124;
    'MyWindow.focus();</SCRIPT>');
    -- Now you have two options:
    -- 1. When you have your form in a Portal Page, you want to return to the page.
    -- 2. When you have your form in a full window, you only have to return to that
    --    window.
    -- The coding is as followed:
    -- 1. Copy this URL from the navigator pointing to the page.
      l_url := 'http://www.mydomain.com/pls/portal30/'
            &#0124; &#0124;
    '!portal30.wwpob_page_util.redirect?'
            &#0124; &#0124;
    '_pageid=123&;_mode=3&;_tabstring=&;_portletmode=&;_cache=1';
    -- 2. Parameter backurl contains automatically the correct url to return
    --    to the form in full browser mode.
      l_url := backurl;
    -- Now return to the original window.
      htp.p('<SCRIPT>self.location.href=&quot;'
           &#0124; &#0124; l_url
           &#0124; &#0124; '&quot;</SCRIPT>');</font></p>
    <font face="Courier"> end if;
    end;</font></p>
    2  Modify the form</p>
    In the &quot;on succesful submission of a form&quot; part you enter this
    PLSQL. Note that the order is identified by the column ORDER_ID and the CALL
    procedure needs two parameters: the url for starting up the report and the
    parameter name for the back-url. </p>
    <font face="Courier">declare
     l_order_id integer;
    begin
     l_order_id := p_session.get_value_as_NUMBER(
     p_block_name => 'DEFAULT',
     p_attribute_name => 'A_ORDER_ID');
     call('mos.mos_popup_order.show?order_id='&#0124; &#012 4;l_order_id,'backurl');
    end;</font></p>
     </p>
    null

    Excellent tip! Thank you for that!
    One question - where you have hardcoded the URL to navigate to the report and back again, I'd like to be able to do this without the hardcoding. The domain of my development environment is different from the domain of my production environment, and I don't want to have to remember to change the URL when I handover code. How could I do this?

  • How to startup DB in client?

    Hi there,
    How to startup DB in client?
    SQL> conn scott/tiger@mytestdb  as sysdba
    Connected.
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup
    ORACLE instance started.
    ORA-12528: Message 12528 not found;  product=RDBMS; facility=ORAI used all default setting when creating DB.
    What other setting is needed?

    You have 2 problems:
    1) ORACLE_HOME not set as environment variable (you don't see a real error message)
    2) dynamic service registration with the listener
    Error is:
    Error:     ORA-12528 (TNS-12528)
    Text:     TNS:listener: all appropriate instances are blocking new
         connections
    That means , listener does not know the service, because there's no one defined statically in your listener.ora . Dynamic registration requires an open database.
    By the way in my opinion it's not a good idea to grant user scott the sysdba privilege.
    Werner

  • How to startup the database from pfile?

    Hi guys.
    hope all of you fine.
    how to startup the database from pfile?
    Thanks.

    You can create pfile from spfile
    SQL>create pfile='/tmp/pfile.ora' from spfile;
    then
    SQL>startup pfile='/tmp/pfile.ora';
    You can edit pfile.ora file and startup your database with this newly changed database parameter using pfile
    And you can define you're using pfile or spfile by issuing:
    SQL> show parameter spfile;

  • How to startup 10G automatically after reboot????

    How to startup 10G automatically after reboot????
    Is the same thing that we did with 9i?
    Create a script e link this on /etc/rc......?? Is that?
    Please send me an example.
    Tks,
    Paulo Portugal.

    Yes, use /etc/rc. The following are 3 start scripts. Modify it to fit it into /etc/rc start/stop model.
    ==> 1. start the DB:
    #!/bin/ksh
    # ==> start the DB:
    ORACLE_SID=xadv1
    export ORACLE_SID
    ORACLE_HOME=/software/xadv1_infra
    export ORACLE_HOME
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORIG_LD_LIBRARY_PATH
    PATH=$ORACLE_HOME/bin:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/opmn/bin:$ORIG_PATH
    lsnrctl start
    lsnrctl status
    PASSWD=`cat $HOME/xadv1/sh/system_passwd.pwd`
    sqlplus /nolog<<EOF
    connect SYSTEM/$PASSWD as SYSDBA
    startup
    EOF
    #!/bin/ksh
    # ==> 2. start infra HTTP
    ORACLE_SID=xadv1
    export ORACLE_SID
    ORACLE_HOME=/software/xadv1_infra
    export ORACLE_HOME
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORIG_LD_LIBRARY_PATH
    export LD_LIBRARY_PATH
    PATH=$ORACLE_HOME/bin:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/opmn/bin:$ORIG_PATH
    export PATH
    echo "############# Starting OPMN ############################"
    opmnctl startall
    echo "############# Starting EM ############################"
    emctl start iasconsole
    echo "############# OPMN Status ############################"
    opmnctl status
    #!/bin/ksh
    # ==> 3. start iAS
    ORACLE_SID=xadv1
    export ORACLE_SID
    ORACLE_HOME=/software/xadv1_ias
    export ORACLE_HOME
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORIG_LD_LIBRARY_PATH
    PATH=$ORACLE_HOME/bin:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/opmn/bin:$ORIG_PATH
    echo "############# Starting OPMN ############################"
    opmnctl startall
    echo "############# Starting EM ############################"
    emctl start iasconsole
    echo "############# OPMN Status ############################"
    opmnctl status

  • How to switch CDE to GNOME and vice versa?

    hi, May I know how to switch CDE to GNOME and vice versa? I understand that only the 1st time login, system will pop up a box to let user choose either CDE and GNOME. But afterthat, when user login, system will use the default as deskto.
    So how to switch? or which configuration file should I edit?
    thanks
    regards
    Raymond

    Odd.
    I answered exactly the same question yesterday, the answer is in:
    http://forum.sun.com/jive/thread.jspa?threadID=105048
    .. the file you are (might be) looking for is $HOME/.dt/sessions/lastlogin
    7/M.

  • How to startup the database

    Hi,
    i have installed oracle database 11gr1 in oel5(32 bit).How to start the database?
    Solution needed

    Dear user8818950 Muvendran!
    Have you created a database yet? If yes then you could do the following steps to start it:
    1.) Execute the oraenv script. It should be located in the /usr/local/bin directory
    . oranev
    ORACLE_SID = [ORCL] ? Please fill in your Oracle SID after the questionmark.
    2.) Start your listener
    lsnrctl start3.) Start SQL*Plus and connect as sysdba
    sqlplus sys/password as sysdba4.) Type in startup to start your database
    startupAfter that everything should be fine.
    Yours sincerely
    Florian W.
    Edited by: Florian W. on 05.11.2009 13:54
    P.S. If you don't know the name of your database (ORACLE_SID) than you may look into the file /etc/oratab. E. g,
    ORCL:/u01/app/oracle/product/10.2.0:NThe first column shows your ORACLE_SID. If you want to start your database everytime your sever starts than you may change the N in the last column to Y.
    Best Regards

  • Undo Datafile deleted, How to startup database?

    Hi
    I was getting that message when startup database
    SQL> startup
    ORACLE instance started.
    Total System Global Area 167772160 bytes
    Fixed Size 1218292 bytes
    Variable Size 83888396 bytes
    Database Buffers 75497472 bytes
    Redo Buffers 7168000 bytes
    Database mounted.
    ORA-01157: cannot identify/lock data file 7 - see DBWR trace file
    ORA-01110: data file 7: '/u01/app/oracle/oradata/impl2pk/undotbs02.dbf'
    Later on got to know that a datafile was deleted.
    Anybody help me how to start database now?
    Thanks

    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:5669213349582Khurram

  • How to startup db with date error?

    Hi all,
    11.2.0.1
    I issue the command > " ALTER SYSTEM set nls_date_format='mm/bb/yyyy' SCOPE=SPFILE;"
    Then I shutdown immediate and startup database. But I got error >  ORA-01821: date format not recognized
    I noticed that instead of "dd" I typed "bb" hence the error. I do not have backup of init.ora or spfile.
    How do I correct this mistake? I can not startup anymore my db
    Thanks,

    YES!!! you are right nagul
    C:\Users>sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Wed Nov 27 19:48:10 2013
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to an idle instance.
    SQL> create pfile='d:\initorcl.ora' from spfile;
    File created.
    (then edit it)
    SQL> startup pfile='d:\initorcl.ora';
    ORACLE instance started.
    Total System Global Area  535662592 bytes
    Fixed Size                  1375792 bytes
    Variable Size             318767568 bytes
    Database Buffers          209715200 bytes
    Redo Buffers                5804032 bytes
    Database mounted.
    Database opened.
    SQL>
    Anar, Fran did you think of that tip?
    Thanks all anyways

  • How to startup from CD, if CD not in drive?

    i bought a brand new Mac Pro, and i have not turned it on yet.
    on my first power-up of this machine, i want to startup from my system CD (instead of the internal system drive it shipped with)
    how do i do this, since the CD is not IN the machine at present, and i have no way to open the tray w/out starting up the machine
    i.e. if i hold down "C"with no CD, will the drive open to let me insert the CD OR will the machine default to the built-in HD instead?

    Assuming you have a USB connected keyboard, hold the "Option" key while powering up the system. This should bring you up into a mode that allows you to select your boot device. Insert your CD/DVD media now.

  • How to startup and repair my database?

    I delete a datafile(.dbf, not in main folders) incautionly, now, I can not startup my oracle, how should I do to startup and repair my database(there is some important data in the database)? will you please give me some advice? thank you!

    We recommend that you post this question in the appropriate Database forum. The OTN Suggestions/Feedback forum does not answer technical questions and offers assistance with the OTN site and other customer support issues.
    Best Regards, OTN Team

  • [How] Reformart Startup Drive

    I am wanting to reformat my start up drive.
    I assume after reformat, as I want it fresh and clear, the OS is not installed. I want to subsequently install the OS onto the drive.
    I have downloaded the Mountain Lion OS from the App Store. I then made a bootable flash drive with it.
    I am unsure what to do now. From what I read, but don't really trust, is that I need to insert the drive that I have made with the aid of the following instructions:
    http://www.cultofmac.com/180925/how-to-make-a-bootable-disk-or-usb-drive-of-os-x -mountain-lion/
    Now that I have the disk. I read that I need to boot into recovery holding COMMAND+R during boot up.
    After I am in I reformat the hard drive and somehow reinstall the OS.
    Confused, tired and in need of some help if possible.
    Cheers,
    46

    Ok so this is what you are saying:
    #1. Insert USB into mac
    #2. Reboot mac and when restarting press and hold the "option" key.
    #3. Select the USB as my Startup Disk.
    However from there how do I reformatt my Macintosh HD drive? Is there an option or selection to choose disk utility from there? I thought you can only select your Mac Startup Disk from there no?
    If you can, after selecting your startup disk, reformat via Disk Utility please do let me know.

  • How disable startup sound mountain lion?

    How do I disable startup sound OSX 10.8.2?

    no problem:
    before going deep, some points here:
    I own about 13 Apple Devices since almost 7 years and my country is the first where Apple has the most OS market share:
    http://royal.pingdom.com/2011/03/16/the-10-most-mac-friendly-countries-on-the-pl anet/
    Also, I have about 50 "close" friends that have Mac OS products (imacs, MacBook, Air...)
    I never, ever had a recovery problems in 7 years and that's why I buy Apple products.I never, ever heard a friend, in my country or in another that was stuck because of the start sound. (i already have had a friend that have to replace it, but starting sound was not necessary on this case).Here 4 situations with a MacBook Air:
    You try to start the Mac, nothing happen, even if the sound would work. In this case, battery was completly down. So you plug it, wait 3 mn and start it. What would be the use of the sound here? Should they not "spare" some battery just to make the sound work? No I do not think so.
    You try to start the Mac, you disabled the sound and nothing happen. You bring it to Apple and they discover that your screen is dead. What would be the use of the sound here?
    You try to start the Mac, you disabled the sound and nothing happen. You bring it to Apple and they discover that your processor is dead. What would be the use of the sound here?
    You try to start the Mac, you disabled the sound and nothing happen. You bring it to Apple and they discover that you could repaired the problem if the starting sound could be heared. But you just putted on mute before the last shutdown. (so why not make the sound work, even though you putted on mute on this case?)
    Seeing your "level" and points, I am pretty sure you will come with many counter arguments and I do not really care about them frankly.
    My point is, after 7 years using Apple products, I am more than happy to have them and I will continue to buy them because they are so amazing, it never appear to me that I need this starting sound that causes me more trouble when i start it and my wife or kids are sleeping not too far, trying everytime to put me far away and try to hide the Air under pillows when I start it.
    Frankly, if that's going to happen to me in the next 7 years, I would be more than happy to go to my Apple store and bring them back to their specialists and hear I was a bad boy, i should not have disabled the sound. I will not care 1 second trying to fix it myself if I do not see how to fix it. And I will return home, with new Apple products I would have buyed in the meantime.
    My turn to ask you a question, if your car tomorrow does not start (you do not hear the starting sound ;-)), are you going to try to remove the motor and see if perhaps you can do something yourself?
    If you are a mecanics, maybe, if no, I doubt.
    If there so many threads about this and some software build around this, it means there is something about it.
    I guess you are going to defend your point telling other things...
    If that happen to me, I am sure Apple guys will fix it. That's my ultimate solution. Period.

  • How to STARTUP multiple Oracle Databases, using sqlplus (SOLARIS)

    Hi guys,
    I am pretty new at solaris and oracle, right now i have oracle 11gr2 installed in my Solaris 10 machine.
    I managed to create 2 databases with 2 different ORACLE_SID, (e.g. A & B)
    my question is, is it possible to have both of this Databases mounted and opened??
    here is the step i have done so far:
    - go to /ORACLE_HOME/bin
    - I started my one and only LISTENER - ./lsnrctl start LISTENER
    - ORACLE_SID=A
    - ./sqlplus / as sysdba
    - SQL>STARTUP
    Everything went well, until i set another ORACLE_SID (in another terminal) to ORACLE_SID=B, and when i tried to start it up using SQLPLUS, i get this "Segmentation Fault - core dumped".
    It seems like i start the 2nd database wrongly, is there proper way to do this?
    i need the 2 databases (SID A & SID B) to be running concurrently.
    thanks

    Hi guys,
    I am pretty new at solaris and oracle, right now i have oracle 11gr2 installed in my Solaris 10 machine.
    I managed to create 2 databases with 2 different ORACLE_SID, (e.g. A & B)
    my question is, is it possible to have both of this Databases mounted and opened??
    here is the step i have done so far:
    - go to /ORACLE_HOME/bin
    - I started my one and only LISTENER - ./lsnrctl start LISTENER
    - ORACLE_SID=A
    - ./sqlplus / as sysdba
    - SQL>STARTUP
    Everything went well, until i set another ORACLE_SID (in another terminal) to ORACLE_SID=B, and when i tried to start it up using SQLPLUS, i get this "Segmentation Fault - core dumped".
    It seems like i start the 2nd database wrongly, is there proper way to do this?
    i need the 2 databases (SID A & SID B) to be running concurrently.
    thanks

  • How to startup the iasconsole with R12.1.1

    Hi Guys,
    Platform: Linux
    Version: 12.1.1
    I need to start the IASconsole with R12 as I need to do deployments.
    So I login as appsuser
    Set environment and run emctl start iasconsole.
    But after logging into the ias console.. I dont see anything or any applications or java components.
    So I am thinking this is the AS server for forms and reports..
    So how do I start the Ias console in R12 to be able to do deployments
    Thanks in advance.

    Hi,
    I have tried secret and oafm and they do not work...
    do you know what the default password for oc4jadmin is on R12? You already have the default password -- See (Note: 454811.1 - Upgrading to the Latest OracleAS 10g 10.1.3.x Patch Set in Oracle E-Business Suite Release 12).
    or how to reset the password for oc4jadmin?Please see this thread.
    unable to reset ias_admin password
    Re: unable to reset ias_admin password
    Regards,
    Hussein

Maybe you are looking for

  • How to call a Java Web Service from another Java package ?

    Please, does anybody know a simple way to access to a JWSDP Web Service deployed under Tomcat with another java application ? I've tried with ServiceFactory and Service class from JaxRPC API but it doesn't work .... Thanx.

  • CS3 JS flag which page has empty frame

    I am trying to put together a script that will detect pages that have 2 types of elements. 1. blank graphic frames 2. graphic frames with images larger than the frame holding it. I've created a simple 5 page doc and placed images on page 1 and 3. So

  • What is the correct architecture for retrieving several complex decision reports

    The project that I am currently working on is required to save decision reports for several complex outputs.  These outputs are needed for each person entity contained in the request. All of the person entities are joined via relationships and the mo

  • Repeat On/Off in Account Assignment tab of PO

    Dear All, Working in ECC 6. Kindly explain Repeat On/Off in Account Assignment tab of PO and its usage. Where it is to be activated? Regards

  • Can we Copy a Webdynpro Component. If so, How??

    I frequently get a situation where I want to keep a copy of the web dynpro component developed and make changes such that they do no update the copy. I have tried making a copy of it in the same project. BUt this gets updated when we deploy the compo