Sponsored Content
Operating Systems Solaris Solaris 9 installation problem Post 302238890 by enke1234 on Monday 22nd of September 2008 09:41:37 AM
Old 09-22-2008
thanks for the tips but still not working properly

hi.. now the cd tray does not close at all. whenever i close it with a cd or without , it keeps on comming out. I cant understand whats going on here.
is there a command that i can give to forefully keep the cd tray in. Why this cd tray is keep on comming out.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Solaris 8 Installation problem on Intel !

I've tried to install solaris 8 on the Intel ,but in lan card detecting that i should give IP address ,it fails & doesn't accept it. So i tried to install without networking ,but after that it has strange behaviour ,( eng. when i want to poweroff machine by init 5 it doesn't do anything) ... (1 Reply)
Discussion started by: nikk
1 Replies

2. Solaris

boot problem in Installation i86 sun solaris

Hello everybody, I installed sun solaris i86 , the programme installation install the "Mini Root" and after that he doing shutdown. the camputer coming up and he can't boot. how i can to resuled this problem ??? Thenk you in advence..... (2 Replies)
Discussion started by: yanly
2 Replies

3. Solaris

Installation problem: Solaris 10

Hello all, I downloaded Solaris 10 and installed it on my Pentium 4 (1.7 Ghz), 256MB RAM, with LG StudioWorks Monitor. Everything went fine till installation completed and when after installation computer rebooted, rather than displaying the graphical login screen the monitor goes out of... (4 Replies)
Discussion started by: varunnarang
4 Replies

4. Solaris

Problem during installation of Solaris 2.6

Hello, For testing purpose, I need to install SOLARIS 2.6 on a machine SUN FIRE 880 which is installed with Solaris 2.8. When I boot on the cdrom 2.6, the system answers : boot : cannot open /kernel/unix In the documentation, I saw that I need to reset the boot file value in the PROM. I did it... (1 Reply)
Discussion started by: aribault
1 Replies

5. UNIX for Dummies Questions & Answers

solaris 10 installation problem

Hi, I have sun enterprise server which uses an lineox box as its mail server and for also storing backups. the mail is linked from the lineox box to sun server and theres a mount on the sun server linking the box for partition, I want to get rid of lineox OS and install solaris 10. But i want... (0 Replies)
Discussion started by: stakes20
0 Replies

6. Solaris

Problem with solaris 10 installation package

Hi, I want to install man pages package from solaris 10. Solaris 10 has already been installed on my servor but I have to add the man pages packages. I search for a long time on internet this package but I didn't find a compatible one... So I downloaded Solaris 10 from Sun site to get this... (12 Replies)
Discussion started by: MasterapocA
12 Replies

7. Solaris

Problem in locale installation through solaris 10 cds

Dear All I am in a problem where i have to install en_us locale through solaris 10 05/08 which is in 5 cds as I download from internet. when I use the following command after putting disk 1 of solaris 10 loceladm -a en_us -d /cdrom/cdrom0/s0/Solaris_10/Product It install few packages but... (3 Replies)
Discussion started by: girish.batra
3 Replies

8. Solaris

Solaris 10 Core Installation wsftpd make problem

Hello, I have just installed a Solaris10 server with core installation option. I tried to install vsftp on this server but it's asking me "make" to compile the program. But I could'nt find make. I searched that on web and installed SUNWarc SUNWbinutils SUNWgcc SUNWgccruntime SUNWgcmn... (2 Replies)
Discussion started by: shadowfaxxxx
2 Replies

9. Solaris

SUN SPARC rebooting problem, after Solaris 10 installation

Hi All, I had install the solaris 10 into the SUNFIRE V890 server, after installed, it keep rebooting. I wish to enter the OK mode again, and install back the Solaris 10. i had try the "break" button and "stop+A" button, but all fail. kindly advice... (4 Replies)
Discussion started by: SmartAntz
4 Replies

10. Solaris

Solaris 10 flash installation - fatal error. Solaris installation program exited.

Not very helpful to say the least. Seems to read the flar file and go through the upgrade and then come up with this error. Any ideas? (1 Reply)
Discussion started by: psychocandy
1 Replies
Tray(3I)						    InterViews Reference Manual 						  Tray(3I)

NAME
Tray - compose interactors into arbitrary or constrained layouts SYNOPSIS
#include <InterViews/tray.h> DESCRIPTION
A tray is a scene of interactors that overlap, tile, or have other constraints on their alignment relative to each other. One of the interactors in a tray can serve as a background for the other interactors. Constraints on the layout of interactors are made by aligning interactors to each other. Two interactors are aligned by specifying which edges coincide. For example, the lower left corner of one interactor may be aligned to the upper right of another. TGlue objects can be used to introduce transparent space between aligned interactors. TGlue has a natural size, shrinkability, and stretchability (though TGlue objects are not interactors). Trays stretch or shrink the TGlue along with the aligned interactors to satisfy the alignment constraints. The tray adopts the shape of the background interactor if there is one; otherwise, the tray's shape depends on the shapes of its components and potentially on their alignments. By default, a tray without a background takes on a width and height equal to the largest of the widths and heights of its components. However, alignments involving the tray can in effect override this default. For example, if the left and right sides of a particular component are aligned to the tray's left and right sides, respectively, then the tray's sides are constrained to coincide with the component's sides. Thus the tray will adopt the width, horizontal shrinkability, and horizontal stretchability of that component. Another example: To ensure that a tray circumscribes a collection of (mutually aligned) com- ponents, align the outer edges of the components on the periphery of the collection to the outer edges of the tray, thereby constraining the tray to assume the shape of the collection. TGLUE PUBLIC OPERATIONS
TGlue(int w = 0, int h = 0, int hstretch = hfil, int vstretch = vfil); Define TGlue of a minimum size. The TGlue can stretch from the given size but cannot shrink. TGlue(int, int, int hshrink, int hstretch, int vshrink, int vstretch); Define general TGlue with a given natural size (width and height), shrinkability, and stretchability. TRAY PUBLIC OPERATIONS
Tray(Interactor* background = nil) Create a new tray, optionally having an interactor as a background. void Align(Alignment, Interactor*, TGlue* = nil) void Align(Alignment, Interactor*, Alignment, Interactor*, TGlue* = nil) Align an interactor to another interactor (the tray itself by default), optionally with TGlue between them. Align operations insert interactors into the tray if they have not been inserted already. void Align(Alignment, Interactor*, ..., Interactor* = nil) Apply an alignment to a set of interactors. This operation is shorthand for aligning the interactors to each other explicitly. For example, Align(Left, i1, i2, i3, i4) aligns the left sides of interactors i1 through i4. Two to seven interactors can be aligned at once. void HBox(Interactor*, ..., Interactor* = nil) void VBox(Interactor*, ..., Interactor* = nil) The HBox and VBox operations align the specified interactors such that they tile left-to-right and top-to-bottom, respectively. These operations align in one dimension only. Two to seven interactors can be aligned at once. If the first (last) component is the tray or the background interactor, then the leftmost (rightmost) component will be aligned with the left (right) side of the tray. void Insert(Interactor*) Insert an interactor into the tray without an alignment. The interactor will appear in the lower left corner of the tray. void Change(Interactor*) Notify the tray that the given interactor's shape has changed. The tray will recompute the layout of its component interactors to satisfy any alignments. If the tray does not contain a background, then a change in the shape of one of its components may in turn change the tray's shape. If the tray has a background, then the tray's shape will change only if the shape of the background changes. void Remove(Interactor*) Take an interactor out of a tray and eliminate any alignments that have been made to it. SEE ALSO
Interactor(3I), Scene(3I), Shape(3I) InterViews 8 September 1988 Tray(3I)
All times are GMT -4. The time now is 02:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy