Sponsored Content
Full Discussion: Solaris9
Top Forums UNIX for Dummies Questions & Answers Solaris9 Post 36289 by shauche on Tuesday 27th of May 2003 05:37:41 AM
Old 05-27-2003
Lot of problems have been reported for the said combination. ( solaris and video card ).

You need the right patch and drivers to have it working.

Can try calling sun call center for support.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Solaris9 on Proliant 1850r

I am attempting to install solaris 9 for intel on a Proliant 1850r with a SmartArray 221 RAID controller. The setup program's detection routine seems to find all the required hardware and informs me that no changes are needed. However, once setup begins the GUI portion, it successfully passes the... (1 Reply)
Discussion started by: Brentetn
1 Replies

2. UNIX for Dummies Questions & Answers

how to set up user environment in Solaris9?

The follwoing is my .cshrc: and when I log in and type init, I got the follwoing message: Usage: init and also my login prompt is not ORACLE.bantest>> I believed I am running /bin/sh **************************************************** #ident "@(#)local.cshrc 1.2 ... (5 Replies)
Discussion started by: simt
5 Replies

3. Solaris

install solaris9-how to !

hi all ... I'm new in solaris i want install it, i need the good steps . my Pc is Intel i have 4 CDs for solaris9 . Can u help me plz by some websites or lessons ? I made search in the docs.sun.com but i need another websites. thanks. (1 Reply)
Discussion started by: memo
1 Replies

4. Solaris

Samba 3.0.22 on Solaris9

Hello all, I have successfully installed samba 3.0.22 on my sol 9 e250 machine. I created my share but when i try to get to my share from my windows machine, it prompts me for my username and passwd, i enter it and it just comes back prompting me for my username and passwd agai,. Has anyone been... (8 Replies)
Discussion started by: Gegestic
8 Replies

5. UNIX for Dummies Questions & Answers

how to get disks info in solaris9

hi: I know its a dummy question do you have any idea how i can get information about the HDs I have on my solaris server?? like how many disks and the size of each?? the prtdiag doesnt tell about disks. Thanks (8 Replies)
Discussion started by: aladdin
8 Replies

6. Solaris

Cant boot solaris9 after October patches

Hello! I applied the solaris9 "recomended and sequrity"-bundle Oktober release last night, and after that the system will not boot. I missed to reboot the system using "reboot -r", but I am able to mount the root disk by booting from cdrom "cdrom -s". Please advise! These are the last... (3 Replies)
Discussion started by: sap4ever
3 Replies

7. Solaris

linking in solaris9

at the end of the compilation in solaris 9. it is showing link error. like..... ld: fatal: library -lgthread-2.0 not found failed to create the binary the library is in /usr/lib and in /usr/local/lib the lib file is present --->libgthread.2.0.so ......etc if i remove... (3 Replies)
Discussion started by: biswajithit
3 Replies

8. Solaris

How to disable LDAP server on solaris9/10?

hi, I found /etc/rc2.d/S**ldap.client, while it's just the client of LDAP, where can I found the ldap server? when/where/how did it start on solaris 9/10? Could anyone help me? Best Wishes. (1 Reply)
Discussion started by: a2156z
1 Replies

9. UNIX for Dummies Questions & Answers

cut output on solaris9 and redhat

Hello, A file called test2 contains passwd entries from various servers. - On solaris9 host : > cat test1 | cut -d ":" -f3 | wc -l 18229 - The same file copied with scp to a redhat host (same cksum) : $ cat test1 | cut -d ":" -f3 | wc -l 39411 - A perl script running on the... (1 Reply)
Discussion started by: Krafton
1 Replies

10. Solaris

Which FC HBA card support Solaris9

I have JNI FCE-6460-N fc card , it is detected in OK prompt.....I connected Sun StorEDGE A5000 FC storage. in OK prompt, PROBE-SCSI-ALL showing A5000 fc hdds details in ok prompt..... but in OS level.....not showing the hdd, i tried in DEVFSADM command and FORMAT command not showing A5000... (3 Replies)
Discussion started by: anysystem
3 Replies
set_gfx_mode(3alleg4)						  Allegro manual					     set_gfx_mode(3alleg4)

NAME
set_gfx_mode - Sets a graphic video mode. Allegro game programming library. SYNOPSIS
#include <allegro.h> int set_gfx_mode(int card, int w, int h, int v_w, int v_h); DESCRIPTION
Switches into graphics mode. The card parameter should usually be one of the Allegro magic drivers (read introduction of chapter "Graphics modes") or see the platform specific documentation for a list of the available drivers. The w and h parameters specify what screen resolu- tion you want. The color depth of the graphic mode has to be specified before calling this function with set_color_depth(). The v_w and v_h parameters specify the minimum virtual screen size, in case you need a large virtual screen for hardware scrolling or page flipping. You should set them to zero if you don't care about the virtual screen size. When you call set_gfx_mode(), the v_w and v_h parameters represent the minimum size of virtual screen that is acceptable for your program. The range of possible sizes is usually very restricted, and Allegro may end up creating a virtual screen much larger than the one you request. Allowed sizes are driver dependent and some drivers do not allow virtual screens that are larger than the visible screen at all: don't assume that whatever you pass will always work. In mode-X the virtual width can be any multiple of eight greater than or equal to the physical screen width, and the virtual height will be set accordingly (the VGA has 256k of vram, so the virtual height will be 256*1024/virtual_width). Currently, using a big virtual screen for page flipping is considered bad practice. There are platforms which don't support virtual screens bigger than the physical screen but can create different video pages to flip back and forth. This means that, if you want page flipping and aren't going to use hardware scrolling, you should call set_gfx_mode() with (0,0) as the virtual screen size and later create the different video pages with create_video_bitmap(). Otherwise your program will be limited to the platforms supporting hardware scrolling. After you select a graphics mode, the physical and virtual screen sizes can be checked with the macros SCREEN_W, SCREEN_H, VIRTUAL_W, and VIRTUAL_H. RETURN VALUE
Returns zero on success. On failure returns a negative number and stores a description of the problem in allegro_error. SEE ALSO
set_color_depth(3alleg4), request_refresh_rate(3alleg4), screen(3alleg4), gfx_capabilities(3alleg4), allegro_error(3alleg4), cre- ate_video_bitmap(3alleg4), get_desktop_resolution(3alleg4), SCREEN_W(3alleg4), SCREEN_H(3alleg4), VIRTUAL_W(3alleg4), VIRTUAL_H(3alleg4) Allegro version 4.4.2 set_gfx_mode(3alleg4)
All times are GMT -4. The time now is 11:53 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy