Sponsored Content
Full Discussion: Sun Video Card
Top Forums UNIX for Dummies Questions & Answers Sun Video Card Post 10534 by doeboy on Thursday 15th of November 2001 07:44:25 PM
Old 11-15-2001
You'd have to look at the SBUS connector on the card itself. Somewhere on the black connector, there is usually some kind of sticker with a bar code and a number (probably looks similar to 501-xxxx)

If the Ultra 1 is usable, look at the output for the dmesg command and look for something that refers to the graphics card. What comes up here will tell you what graphics card it is. If it is a Turbo GX+, you will most likely find references to cgsix0 or something similar.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

X Server on AIX w/o video card

Hi there, I'm a newbie so please be patient. I wanted to know if it was possible to run X server on a box w/o a video card. The reason I want to do this is I'd like to have a CDE session from sun workstation into the AIX box. Please let me know if this is feasible. Thanks for your time. (5 Replies)
Discussion started by: blah00000
5 Replies

2. UNIX for Advanced & Expert Users

redhat 7.2 dual head video card

HI. i have two monitor and two video card in one system, i want use both of the monitor, i am currently using redhat 7.2 and solaris 8, i was wondering if someone can help me set my system as a dual monitor, basically it called dual head in redhat but i dont' know what it called in sun. Im tring... (4 Replies)
Discussion started by: souldier
4 Replies

3. UNIX for Dummies Questions & Answers

Need help with video card.

http://adsl.027game.com/uploadImages/200211122321064403.jpg Help, please!!! :confused: :confused: :confused: (7 Replies)
Discussion started by: HOUSCOUS
7 Replies

4. Solaris

problems with my M3 video card and my Tatung Ultra 10 clone

i took this Elite 3D M3 video card out of my Ultra 60 machine which was replaced with an M6. the card was working w/o issue in the Ultra 60. however, i'm getting no video when i power the Tatung machine. yes, the M3 is does work with an AXi motherboard. any ideas what's causing the problem? (1 Reply)
Discussion started by: xyyz
1 Replies

5. UNIX for Advanced & Expert Users

Video Card for Lin/Unix

I am wondering if a ATI Mobile Radeon 9600 PROTURBO will work with a any version of linux or Unix (NetBSD 1.6.2, FreeBSD). (0 Replies)
Discussion started by: mentor6
0 Replies

6. Solaris

How can I get the supported video card list by solaris 10?

How can I get the supported video card list by solaris 10 (sparc)? Could you tell me that which video card was supported by solaris 10? I need all kinds of video card supported by solaris 10? I find a lot of documents,but I didn't get what I want... ... Could you help me? Thank you very much. (1 Reply)
Discussion started by: jg159993
1 Replies

7. Solaris

video card for a V440

I am looking into getting some cards for the SunFire V440. Not sure how most folks go about this but I am assuming we can find compatible cards for this server platform without going through SUN. Do you guys recommend getting this video card from SUN? Yeah we got these servers without the video... (5 Replies)
Discussion started by: bluridge
5 Replies

8. Programming

Extracting video card properties

Hi everyone. I'm looking for a way to extract the video card properties (Name, Driver version, amount of vram). I've managed to deal with nVidia cards, but nothing came for ATI/AMD cards and other kind of chipsets. Can someone point a way to do this? Thanks. (4 Replies)
Discussion started by: JB007ROLV
4 Replies

9. Hardware

Desktop System with no built in video card on linux

hi I would like to ask some of the expert advice on my propose project. I going to assemble a high end desktop system before i quit my job. I had a laptop with linux and win7 pro for just incase bored and need some spare time gaming with nice graphics. My plan is to assemble a i7 processor model... (4 Replies)
Discussion started by: jao_madn
4 Replies

10. Solaris

Very new to Solaris and Sun, need help please (video card)

Hello all, I am trying to learn about Solaris and Sun systems so I purchased a SunFire 280r running Solaris 9 with a disk array from eBay. The system had no video card so I purchased a PGX32 card for the PCI slot and installed it. The problem is I have no video what so ever. I am familiar... (3 Replies)
Discussion started by: FTBTX
3 Replies
get_gfx_mode_type(3alleg4)					  Allegro manual					get_gfx_mode_type(3alleg4)

NAME
get_gfx_mode_type - Retrieves type information for a specific graphics card. Allegro game programming library. SYNOPSIS
#include <allegro.h> int get_gfx_mode_type(int graphics_card); DESCRIPTION
This function lets you determine the types of operating modes that a specific graphics card driver operates in. It will tell you whether it is a windowed, fullscreen, definitely windowed or fullscreen, and/or a magic driver. The value returned is a bitfield consisting of these fields: GFX_TYPE_UNKNOWN GFX_TYPE_WINDOWED GFX_TYPE_FULLSCREEN GFX_TYPE_DEFINITE GFX_TYPE_MAGIC The return value will only be equivalent to GFX_TYPE_UNKNOWN when it is a driver unrecognized on that platform, or it is a bogus value. Test for the other types by using a bitwise AND. If the driver is windowed or fullscreen, it will also have the definite flag set. For example, int gfx_type = get_gfx_mode_type(GFX_AUTODETECT_WINDOWED); gfx_type would have the GFX_TYPE_WINDOWED, GFX_TYPE_DEFINITE, and GFX_TYPE_MAGIC flags set. Allegro needs to be initialized first. Example: /* Accept the use of only windowed drivers in our selection dialog */ int accept_windowed(int card , int w , int h , int color_depth) { if (get_gfx_mode_type(card) & GFX_TYPE_WINDOWED) return 0; return 1; } /* In main: */ gfx_mode_select_filter(&card, &w, &h, &color_depth, accept_windowed); RETURN VALUE
Returns a bitfield describing the graphics mode type. SEE ALSO
gfx_mode_select_filter(3alleg4), get_gfx_mode(3alleg4), set_gfx_mode(3alleg4), is_windowed_mode(3alleg4) Allegro version 4.4.2 get_gfx_mode_type(3alleg4)
All times are GMT -4. The time now is 04:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy