How to Enable backing store in X11.app

Hi !
I want to remotely login to my schools server (solaris) to do the projects. The environment variables dont match. and it asks me to enable backing store. Can some one please tell me how to do that please..
thanks

I suggest you ask your question here:
Forum: Mac OS X Technologies > Unix

Similar Messages

  • How to enable backing store in X11?

    Hi !
    I want to remotely login to my schools server (solaris) to do the projects. The environment variables dont match. and it asks me to enable backing store. Can some one please tell me how to do that in X11.app please..
    Here is what I do to login
    DISPLAY=localhost:0.0
    export DISPLAY
    ssh -Y [email protected]
    password:
    try to invoke the IC station Tool (Design Tool for Layouts )
    Here is the error I get
    ERROR: You may have an Error in your mgclocationmap entries.
    Read Error messages carefully and correct any such problems.
    Re-invoke application after problems are resolved.
    Mentor Graphics software executing under Sun SPARC Solaris.
    // Error: MGCLOCATIONMAP set to an invalid path. Unsetting it. (from: DDMS/DDMSCore/DDMSFILE 37)
    // Note: starting to load custom userware (from: Uims/basetoolkit/ui_sessiontk 81)
    // Note: Begin Loading userware for the Design Kit (from: Uims/basetoolkit/ui_sessiontk 81)
    thanks
    and bunch of more warnings
    There is another warning I get in the beginning that tells me to Enable Backing store . By doing it it should solve the problem.
    I have searched over the internet and I have found out that in X11 Backing store is not enabled by default and I have to edit some file and remove -bs from that file .
    Can someone guide me how to do this?
    I would really appreciate it .
    Thanks
    Viky

    I suggest you ask your question here:
    Forum: Mac OS X Technologies > Unix

  • My computer crashed, had to reinstall itunes so cant sync my ipod touch 4g. How do I back up all my apps and music so that I can update to ios5?

    Hi my computer crashed, so had to reinstall itunes now I cant sync my ipod touch 4g. How do I back up all my apps and music so that I can update to ios5?
    Thanks
    Ben

    - Transfer iTuns purchases:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    - Transfer other music by using a third-party program lke one of those discussed here:
    Copy music from Ipod to new computer...: Apple Support Communities
    - Connect the iPod to the computer and make a backup by right-clicking on the iPOd under Devices in iTunes and selecting Back Up.
    - Restore the iPod from that backup. That should also get you the update.
    - If in the USA, you can also redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • HT4972 How do I back up my music, apps, & books so I can update to 5.1.1 ?

    How do I back up my Music, apps, and Books, so I can update to 5.1.1 ?

    You can copy iTunes purchases (which includes apps, music, films, ibooks etc) off the iPad to your computer's iTunes via File > Transfer Purchases (you may also want to copy photos off the iPad as well) and then force a backup of the iPad by right-clicking the iPad 'Device' on the left-hand side of iTunes and selecting 'Backup'. For music from other sources (including CDs), then if they aren't already on your computer's iTunes then you will need to find a third-party program that can copy them off.
    You may also want to copy off the iPad any important documents, notes, files etc e.g. via the file sharing section at the bottom of the device's apps tab when connected to iTunes, via wifi, email, dropbox etc - they should be included in the backup, but it's best to have a copy of them outside of the backup just in case.
    Updating to iOS 5+ : http://support.apple.com/kb/HT4972

  • How to enable soa gateway in oracle apps r12?

    how to enable soa gateway in oracle apps r12?

    Installing Oracle E-Business Suite Integrated SOA Gateway, Release 12(Doc ID 556540.1)

  • How to enable back ipad if on disabled mode?

    Anybody can help me on this , I forget my passcode. How to enable back my Ipad?

    If you've never synced then you won't have a backup on your computer and you will therefore lose all your content from the iPad. You need to connect your iPad to your computer's iTunes - see this page for a locked iPad : http://support.apple.com/kb/HT1212 . You may need to put the iPad into recovery mode first : http://support.apple.com/kb/ht1808

  • I have iphone 4 with iOS4.0, how to revert back version of facebook app?

    I have iphone 4 with iOS4.0, how to revert back version of facebook app version because i am not able to use facebook 5.0 in my iphone?

    That depends. If the phone was unlocked by the carrier, then it should be fine.
    If your phone was unlocked by unauthorized means, then yes, it will be locked again.

  • How do I back up contents of apps such as notes and office docs on my PC so that in the event of my ipad failing I can use these docs on my PC (windows op system)

    How do I back up the contents of apps such as notes and office docs on my ipad to my PC ( windows op system) so I can use them on PC if my ipad fails?

    You can use File Sharing in order to transfer the Word documents and the notes depending upon what apps you are using. Take a look at this.
    iOS: About File Sharing - Support - Apple
    There are file transfering apps like this one.
    File Manager - Folder Plus on the App Store on iTunes
    You can always email files as a last resort type of thing. That may not be practical depending upon the number of files that you have.

  • How can I back up all my apps in IPad 2 ?

    I need to back up all my apps from my ipad2 and thanks / because of a glitch in the operating system I had a an dollar account in Tanzania (weird I know) and apple cannot give me access to my apps to download again (should they be deleted or I upgrade) as I live in the k and now have a UK apple App Store account in sterling for purchases.
    Please assist as all my dollar purchases are gone in the apps store purchased page. Apple support even managed to delete all my sterling k apps store purchases now too. It has been a nightmare.

    How to Backup
    http://support.apple.com/kb/HT1766

  • How to enable "Forget Password" link on Apps 11i Login Page?

    Hi All,
    How to enable the functionality of "Forget Password" link on Apps login page?
    Apps 11i
    DB: 10g
    OS: HP-UX
    Thanks,

    Afia wrote:
    Hi All,
    How to enable the functionality of "Forget Password" link on Apps login page?
    Apps 11i
    DB: 10g
    OS: HP-UX
    Thanks,
    This topic was discussed many times in the forum before -- https://forums.oracle.com/search.jspa?view=content&resultTypes=&dateRange=all&q=Forgot+AND+Password+AND+11i&rankBy=relevance
    Thanks,
    Hussein

  • How to use backing store in JPanel?

    Below is a sketch of a class that extends JPanel. If I remove the variable "draw", the class works fine, except that the graphics drawing code is executed every time the parent window is fronted, resized, etc.
    I introduced the variable "draw" hoping that the call super.paintComponent(g) would use the backing store to refresh the display. Instead, the call simply erases the panel.
    How can I use the backing store?
    Thanks, for your help.
    public class DisplayPanel extends JPanel {
         boolean draw = true;
         public void paintComponent(Graphics g) {
             super.paintComponent(g);
             if (!draw)
                   return;
              // graphics drawing code here.
             draw = false;
         }

    Backing stores are only used on JViewpots. You will need to draw each time.

  • Xephyr / Xorg enabling backing store feature

    Hi,
    i used SunRay kiosk mode extention from
    http://blogs.sun.com/danielc/entry/meta_kiosk_how_to_run
    successful. I want to display a X11 application to dtu(s) using meta kiosk. The meta kiosk script uses Xephyr to display X11 application to dedicated dtu.
    Please see meta kiosk session script:
    # The next set are not true kiosks in the typical sense and cannot or do not
    # conform to the standard use of variables.
    run-X11-session () {
    DISPLAYNUM=0
    if [ -x /usr/X11/bin/Xephyr ]
    then
    # We are on Solaris X86, Xephyr should be vailable
    while [ $DISPLAYNUM -ne 256 ]
    do
    DISPLAYNUM=`expr $DISPLAYNUM + 1`
    --->>> /usr/X11/bin/Xephyr :$DISPLAYNUM -once -query $1 -fullscreen
    if [ $? -ne 1 ]
    then
    exit
    fi
    done
    else
    # We are on SPARC/Xnest should be available
    #You may have to execute this on your host...
    #chmod 04755 /usr/openwin/bin/Xnest
    SCREENGEOMETRY=`/opt/SUNWut/bin/utset | grep "Display Timing 1" | cut -f2 -d":" | cut -f1 -d@`
    while [ $DISPLAYNUM -ne 256 ]
    do
    DISPLAYNUM=`expr $DISPLAYNUM + 1`
    /usr/openwin/bin/Xnest -once -geometry $SCREENGEOMETRY -query $1 :$DISPLAYNUM
    if [ $? -ne 0 ]
    then
    exit
    fi
    done
    fi
    exit
    The X11 application that should be displayed uses "backing store" feature. I tried to activate "backing store" with "+bs" option. I modifed the script:
    while [ $DISPLAYNUM -ne 256 ]
    do
    DISPLAYNUM=`expr $DISPLAYNUM + 1`
    --->>> /usr/X11/bin/Xephyr :$DISPLAYNUM +bs -once -query $1 -fullscreen
    if [ $? -ne 1 ]
    then
    exit
    fi
    done
    In a second attempt i used "-wm" option, but the modification was not succesful again. So some X11 application windows are not filled with graphical information.
    Xephyr is part of the Xorg software.
    The Xorg packages used in Solaris 10 update 5 have version 1.3.0. Last available version is 1.6.0. Nevada build 106 uses 1.5.3 Xorg version. Perhaps I want to try this version to get rid of this error.
    Thanks for your help !
    Christian

    skottish wrote:
    Welcome to the forums.
    Please don't post general issues in this sub-forum. Moving...
    Oops, my bad.
    As for my issue(s), I'm not going to bother with the proprietary driver until AMD gets their act together.

  • How to enable backing bean

    Hi all,
    I want to enable backing bean for this type of input box. I know if i code this is the JSP page, i can enable the backing bean. But i want here, because the requirement is like this.
    Can anyone help me on this
    public void encodeBegin(FacesContext context) throws IOException {
    ResponseWriter writer = context.getResponseWriter();
    writer.startElement("div", this);
    public void encodeEnd(FacesContext context) throws IOException {
    ResponseWriter writer = context.getResponseWriter();
    +--- writer.startElement("input",this);
    | writer.writeAttribute("type","text","null");
    | writer.writeAttribute("name",getName(context,this),"ChildId");
    +-- writer.endElement("input");
    | writer.endElement("div");
    | }
    |
    |
    I want for this input text, backing bean has to be enabled.

    your render class should write the attribute name of your input text like this:
    writer.writeAttribute("name", (this.getClientId(context)),
    "clientId");

  • How to enable export option in oracle apps

    I have a custom form, which needs to export the data. File->Export option is disabled in all the responsibilities. How to enable this option only for this form?
    appreciate your help

    The Export function is disabled when the responsibility is opened initially .
    When we enter into a specific form its automatically enabled .
    Login to a user who has Application Developer responsibility & to Application >Register & press f11 and Ctrl f11 .

  • How to enable back the menu bar has been disable?

    I has been disable the menu bar. and i want to enable back
    == This happened ==
    Every time Firefox opened
    == when i disable the menu bar

    '''ALT V
    T
    M'''
    Be sure to do this in a blank tab.

Maybe you are looking for