Sponsored Content
Full Discussion: X86-Graphics problem
Operating Systems Solaris X86-Graphics problem Post 302446045 by fpmurphy on Tuesday 17th of August 2010 12:37:51 PM
Old 08-17-2010
Either
Code:
/usr/X11/bin/Xorg -configure

or
Code:
/usr/X11/bin/xorgconfig

This User Gave Thanks to fpmurphy For This Post:
 

9 More Discussions You Might Find Interesting

1. Solaris

Problem mounting DVD on Solaris 10 (x86)

I have just installed Solaris 10. I have read various threads on how to mount CDs put can't get mine going. My Sony DVD RW-U14A is attached to IDE2 as the master. If I type iostat -En I get c1t0d0 soft errors 0 hard errors 0 transport errors 0 Vendor Sony Product DVD RW-U14A Size 0Gb etc.... (3 Replies)
Discussion started by: christian_hicks
3 Replies

2. Solaris

problem with installing Solaris 10 on x86 stand-alone computer

hi. I'm using Intel-based processor for my stand-alone computer running Windows XP Professional with a broadband connection. By navigating through Solaris 10 documentations via the following paths: 'Solaris 10 Release and Installation Collection' > 'Solaris 10 Installation Guide: Basic... (5 Replies)
Discussion started by: ninelives1980
5 Replies

3. UNIX for Dummies Questions & Answers

Problem installing Solaris 8 on x86

I am trying to install Solaris 8 on a pentium based machine with hardware listed on the HCL. I am booting off of Solaris 8 CD1 and getting to the webstart portion of the installation. However, after selecting option 1 for Interactive Installation, the screen goes to a white screen with blinking... (0 Replies)
Discussion started by: subminimal
0 Replies

4. Solaris

Solaris 10 x86 instalation problem.

Hello, my objective is to install Unix Solaris 10 on an x86 system with serial ata and also be able to chose between it and windows during boot. I have a segate sata 150 7200rpm baracuda 80 gb hdd on an sil 3112 controller, I've searched and discovered that Solaris 10 supports sata and my... (4 Replies)
Discussion started by: Gravesent
4 Replies

5. Solaris

Solaris 10 installaion problem in X86

Hi, I have x86 machine with P4, 512 MB with 17" ViewSonic TFT screen. I installed Solaris 10 and i am geeting the error messages like "Notice: failed to initialize inband hot plug controllers." while booting. Later am getting the shrinked window in single line. I thought itd because of video... (4 Replies)
Discussion started by: paventhan
4 Replies

6. Solaris

Problem after Install SUN solaris x86

after install solaris x86 on my computer success, but it can't boot. When the machine start, and i choose option 1 - default, it shows "W" on screen and system restart . Anyone can help me. My computer : dual core - 1gb ram - x86 (7 Replies)
Discussion started by: quan0509
7 Replies

7. Solaris

Solaris 10 x86 bge0 network problem

Hi, Server --Dell Poweredge 2550. OS--Solaris 10 Network switch --cisco --port setting- 1000Mbps full duplex The network LED goes off when the solaris console screen comes up but prior to that(while booting is in progess) it is green. The system is not able to come on network,ping to switch... (3 Replies)
Discussion started by: anilzoc
3 Replies

8. Solaris

Graphics problem in solaris 10

Hi, I have installed solaris 10/09 release in dell gx 520 desktop, it doesn't support graphics, i installed through text mode, can anyone tell how to get graphics on dell gx520 (1 Reply)
Discussion started by: rajasekg
1 Replies

9. OS X (Apple)

[Solved] links2 --enable-graphics from source, configure error: no graphics driver found.

Howdy I am trying to install links2 with graphics support on snow leopard 10.6.8 (xcode installed). I have had the program running last year, also installed from source - but then I had installed some image libraries with mac ports and fink - cannot reproduce that setup. Plus I would like to not... (6 Replies)
Discussion started by: butterbaerchen
6 Replies
Tk_GetGC(3)						       Tk Library Procedures						       Tk_GetGC(3)

__________________________________________________________________________________________________________________________________________________

NAME
Tk_GetGC, Tk_FreeGC - maintain database of read-only graphics contexts SYNOPSIS
#include <tk.h> GC Tk_GetGC(tkwin, valueMask, valuePtr) Tk_FreeGC(display, gc) ARGUMENTS
Tk_Window tkwin (in) Token for window in which the graphics context will be used. unsigned long valueMask (in) Mask of bits (such as GCForeground or GCStipple) indicating which fields of *valuePtr are valid. XGCValues *valuePtr (in) Pointer to structure describing the desired values for the graphics context. Display *display (in) Display for which gc was allocated. GC gc (in) X identifier for graphics context that is no longer needed. Must have been allocated by Tk_GetGC. _________________________________________________________________ DESCRIPTION
Tk_GetGC and Tk_FreeGC manage a collection of graphics contexts being used by an application. The procedures allow graphics contexts to be shared, thereby avoiding the server overhead that would be incurred if a separate GC were created for each use. Tk_GetGC takes arguments describing the desired graphics context and returns an X identifier for a GC that fits the description. The graphics context that is returned will have default values in all of the fields not specified explicitly by valueMask and valuePtr. Tk_GetGC maintains a database of all the graphics contexts it has created. Whenever possible, a call to Tk_GetGC will return an existing graphics context rather than creating a new one. This approach can substantially reduce server overhead, so Tk_GetGC should generally be used in preference to the Xlib procedure XCreateGC, which creates a new graphics context on each call. Since the return values of Tk_GetGC are shared, callers should never modify the graphics contexts returned by Tk_GetGC. If a graphics con- text must be modified dynamically, then it should be created by calling XCreateGC instead of Tk_GetGC. When a graphics context is no longer needed, Tk_FreeGC should be called to release it. There should be exactly one call to Tk_FreeGC for each call to Tk_GetGC. When a graphics context is no longer in use anywhere (i.e. it has been freed as many times as it has been gotten) Tk_FreeGC will release it to the X server and delete it from the database. KEYWORDS
graphics context Tk Tk_GetGC(3)
All times are GMT -4. The time now is 07:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy