i/o drawer 7311-D20


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers i/o drawer 7311-D20
# 1  
Old 06-15-2009
i/o drawer 7311-D20

can anyone help me with the i/o drawer D20???? what firmware i need for this machine and how do i install it?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. AIX

7028-6C4 with an attached 7311-D20

A remote office that I support has a 7028-6C4 with an attached 7311-D20. Over a year ago the 7311-D20 power supply failed. We called IBM and found out it was no longer under maintenance but that the 7028-6C4 was. To get the 7311-D20 back under maintenance would cost more than that office wanted... (3 Replies)
Discussion started by: prichard
3 Replies
Login or Register to Ask a Question
egd(3erl)						     Erlang Module Definition							 egd(3erl)

NAME
egd - egd - erlang graphical drawer. DESCRIPTION
egd - erlang graphical drawer DATA TYPES
color() : egd_image() : font() : point() = {integer(), integer()} : render_option() = {render_engine, opaque} | {render_engine, alpha} : EXPORTS
color(Color::Value | Name) -> color() Types Value = {byte(), byte(), byte()} | {byte(), byte(), byte(), byte()} Name = black | silver | gray | white | maroon | red | purple | fuchia | green | lime | olive | yellow | navy | blue | teal | aqua Creates a color reference. create(Width::integer(), Height::integer()) -> egd_image() Creates an image area and returns its reference. destroy(Image::egd_image()) -> ok Destroys the image. filledEllipse(Image::egd_image(), P1::point(), P2::point(), Color::color()) -> ok Creates a filled ellipse object. filledRectangle(Image::egd_image(), P1::point(), P2::point(), Color::color()) -> ok Creates a filled rectangle object. line(Image::egd_image(), P1::point(), P2::point(), Color::color()) -> ok Creates a line object from P1 to P2 in the image. rectangle(Image::egd_image(), P1::point(), P2::point(), Color::color()) -> ok Creates a rectangle object. render(Image::egd_image()) -> binary() Equivalent to render(Image, png, [{render_engine, opaque}]) . render(Image::egd_image(), Type::png | raw_bitmap) -> binary() Equivalent to render(Image, Type, [{render_engine, opaque}]) . render(Image::egd_image(), Type::png | raw_bitmap, Options::[render_option()]) -> binary() Renders a binary from the primitives specified by egd_image(). The binary can either be a raw bitmap with rgb tripplets or a binary in png format. save(Binary::binary(), Filename::string()) -> ok Saves the binary to file. text(Image::egd_image(), P::point(), Font::font(), Text::string(), Color::color()) -> ok Creates a text object. AUTHORS
<> percept 0.8.5 egd(3erl)