1752331 Members
5857 Online
108786 Solutions
New Discussion юеВ

backing-store

 
Kim_9
Occasional Contributor

backing-store

Hi,
How can I set backing-store to YES?
I use tru64 unix 5.1a.

Thanks.
4 REPLIES 4
Michael Schulte zur Sur
Honored Contributor

Re: backing-store

Hi,

can you explain what you need it for?
There are some references to that concerning graphics or programming.

greetings,

Michael
Kim_9
Occasional Contributor

Re: backing-store

I need to set always for my applications.
Thanks
Han Pilmeyer
Esteemed Contributor

Re: backing-store

Assuming you need it for X11, it is typically enabled by default. Which X server are you using?

If you run the xdpyinfo command, it will display whether backing store is enabled, e.g.:

# xdpyinfo | grep -i backing
options: backing-store YES, save-unders YES
Rick Retterer
Respected Contributor

Re: backing-store

** Note, there are some limitations to backingstore and saveunders... I believe that they aren't always guaranteed.***

BackingStore is enabled by default on certain graphics cards. You can only disable BackingStore and SaveUnders based on the command-line switches that are passed into the startup of the Xserver.

(see Manpages for Xdec)

On Tru64 Unix v5.1b, to explicitly turn off bs and su, you would want to edit the file /var/X11/Xserver.conf.

Down at the bottom of the file you will find a "stanza" that begins with:

! you specify command line arguments here
args <
-pn
>
!

and change it to look like this:

! you specify command line arguments here
args <
-pn -su -bs
>
!

Then restart Xdec using /sbin/init.d/xlogin.

However, if your graphics card has SU and BS disabled by default, you may be able to change it (enable it) by changing the color depth from 24 bits to 8 bits per pixel.

This is how it is done on a Radeon Graphics Card:

! you specify command line arguments here
args <
! Start Graphics Radeon required svr args.
-depth0 8
! End Graphics ATI Radeon Server args.
-pn
>
! CONFIGURED FOR DEVICE RADEON

Save the Xserver.conf file and then restart Xwindows using

/sbin/init.d/xlogin stop
-{wait for server to run-down}
-then-
/sbin/init.d/xlogin start

Login and check it again using "/usr/bin/X11/xdpyinfo"

I hope this helps you.

Rick Retterer
HP Services

- Rick Retterer