Sponsored Content
Operating Systems Solaris SUN E250 Console connectivity Post 53578 by mhersant on Tuesday 20th of July 2004 05:57:58 AM
Old 07-20-2004
If your 250 doesn't have a monitor, or you want to permanently use a serial console:

1. press stop-a during boot
2. type "ttya io"
3. this will push all input/output through ttya serial port, until you reboot.

If you want to permanently use ttya for i/o:

1. from ok prompt type "setenv input-device ttya", and "setenv output-device ttya"
2. Bewaare that this will disable your keyboard.
3. These variables can also be modified at run level 3 using the eeprom command

You can setup a Sun workstation as a dumb terminal using the "tip" command.
 

8 More Discussions You Might Find Interesting

1. UNIX Benchmarks

Sun E250 / 512MB Ram

============================================================== BYTE UNIX Benchmarks (Version 3.11) System -- SunOS xxxxx 5.8 Generic_108528-13 sun4u sparc SUNW,Ultra-250 Start Benchmark Run: Sun Jan 11 19:47:12 EST 2004 1 interactive users. Dhrystone 2 without register variables ... (0 Replies)
Discussion started by: kduffin
0 Replies

2. Solaris

Hooking up to Console's on sun's

it there any docs out there anyhwre that have the specs for cabing to a sun console. I have an e420 here, i cant seem to get a console connection, i have triewd the silver serial connectors that come with the new dsun servers, but no luck with those. (1 Reply)
Discussion started by: BG_JrAdmin
1 Replies

3. Gentoo

Uses for a Sun e250?

We are retiring a Sun e250 at work, and I wondered if I could put it to any good use. Will I have any problems loading Linux as opposed to Solaris? Should I use any particular flavor of Linux that might be more Sun friendly? Assuming I manage to load Linux on this server, then what? Will it be... (9 Replies)
Discussion started by: kccrusher
9 Replies

4. Solaris

SUN E250 Cluster

Hi, I need some help, since I am new to cluster. I am handling a site where I have look after two SUN E250 server. I have been asked to configure Active-Active Clustering on these servers. I would like to know how to configure both the servers for clustering. Below are the things which... (5 Replies)
Discussion started by: RajaRC
5 Replies

5. Solaris

Sun Solaris 9 E250 -- Suggestions For External Hard Drives

Hello, Running a Sun Solaris 9 E250 and need advice or suggestions on what type of external hard disks are compatible and or available. It's an old machine and is due for replacement soon but in the short term need an external hard drive for backup etc as the partner/backup machine has just... (2 Replies)
Discussion started by: KenLynch
2 Replies

6. Solaris

sun 8 unable to communicate through console

Hi : I have a e450 sun server that I just started up and I connect my laptop to the serial connection using a null modem cable and it just does not connect. I use hyperterminal, I dont connect a keyboard to the sun machine? Any ideas? Thanks a lot Al (3 Replies)
Discussion started by: alanj4
3 Replies

7. Solaris

Problem with connecting with Sun Java Web console

Hi, I have Solaris 10 8/07 on SPARC and I can't log in Web console. When I opened browser (Firefox 3) at localhost:6789 I get Save file dialog which asks me to save some file with .part at the end. What information should I provide to find out where is the trouble?.. Internet explorer says... (3 Replies)
Discussion started by: Sapfeer
3 Replies

8. Solaris

Sun Solaris Enterprise E250 x64 Help

Hi everybody, my name is Giulia and for me is the fist time in this forum, i hope write in the correct section for my problem. I have a sun solaris server e250 enterprise with sun 5 versionof O.S. Now i wont format all and install new version of solaris, but i don't know the actual corrent... (7 Replies)
Discussion started by: giulia79
7 Replies
asy(7D) 							      Devices								   asy(7D)

NAME
asy - asynchronous serial port driver SYNOPSIS
#include <fcntl.h> #include <sys/termios.h> open("/dev/term/n", mode); open("/dev/tty/n", mode); open("/dev/cua/n", mode); DESCRIPTION
The asy module is a loadable STREAMS driver that provides basic support for Intel-8250, National Semiconductor-16450, 16550, and some 16650 and 16750 and equivalent UARTs connected via the ISA-bus, in addition to basic asynchronous communication support. The asy module supports those termio(7I) device control functions specified by flags in the c_cflag word of the termios structure, and by the IGNBRK, IGNPAR, PARMRK, INPCK, IXON, IXANY, or IXOFF flags in the c_iflag word of the termios structure. All other termio(7I) functions must be performed by STREAMS modules pushed atop the driver. When a device is opened, the ldterm(7M) and ttcompat(7M) STREAMS modules are automatically pushed on top of the stream, providing the standard termio(7I) interface. The character-special devices /dev/term/a, /dev/term/b, /dev/term/c and /dev/term/d are used to access the four standard serial ports (COM1, COM2, COM3 and COM4 at I/O addresses 3f8, 2f8, 3e8 and 2e8 respectively). Serial ports on non-standard ISA-bus I/O addresses are accessed via the character-special devices /dev/term/0, /dev/term/1, etc. Device names are typically used to provide a logical access point for a dial-in line that is used with a modem. To allow a single tty line to be connected to a modem and used for incoming and outgoing calls, a special feature is available that is con- trolled by the minor device number. By accessing character-special devices with names of the form /dev/cua/n, it is possible to open a port without the Carrier Detect signal being asserted, either through hardware or an equivalent software mechanism. These devices are com- monly known as dial-out lines. Note - This module is affected by the setting of certain eeprom variables, ttya-ignore-cd and ttya-rts-dtr-off (and similarly for ttyb-, ttyc-, and ttyd- parameters). For information on these parameters, see the eeprom(1M) man page. Note - For serial ports on the standard COM1 to COM4 I/O addresses above, the default setting for ttya-ignore-cd and ttya-rts-dtr-off is true. If any of these ports are connected to a modem, these settings should be changed to false. For serial ports on non-standard I/O addresses, the default setting for ttya-ignore-cd and ttya-rts-dtr-off is false. APPLICATION PROGRAMMING INTERFACE
Once a /dev/cua/n line is opened, the corresponding tty line cannot be opened until the /dev/cua/n line is closed. A blocking open will wait until the /dev/cua/n line is closed (which will drop Data Terminal Ready, after which Carrier Detect will usually drop as well) and carrier is detected again. A non-blocking open will return an error. If the /dev/ttydn line has been opened successfully (usually only when carrier is recognized on the modem), the corresponding /dev/cua/n line cannot be opened. This allows a modem to be attached to /dev/term/[n] (renamed from /dev/tty[n]) and used for dial-in (by enabling the line for login in /etc/inittab) or dial-out (by tip(1) or uucp(1C)) as /dev/cua/n when no one is logged in on the line. IOCTLS
The standard set of termio ioctl() calls are supported by asy. Breaks can be generated by the TCSBRK, TIOCSBRK, and TIOCCBRK ioctl() calls. The input and output line speeds may be set to any speed that is supported by termio. The speeds cannot be set independently; for example, when the output speed is set, the input speed is automatically set to the same speed. When the asy module is used to service the serial console port, it supports a BREAK condition that allows the system to enter the debugger or the monitor. The BREAK condition is generated by hardware and it is usually enabled by default. A BREAK condition originating from erroneous electrical signals cannot be distinguished from one deliberately sent by remote DCE. The Alternate Break sequence can be used as a remedy against this. Due to a risk of incorrect sequence interpretation, SLIP and certain other binary protocols should not be run over the serial console port when Alternate Break sequence is in effect. Although PPP is a binary proto- col, it is able to avoid these sequences using the ACCM feature in RFC 1662. For Solaris PPP 4.0, you do this by adding the following line to the /etc/ppp/options file (or other configuration files used for the connection; see pppd(1M) for details): asyncmap 0x00002000 By default, the Alternate Break sequence is a three character sequence: carriage return, tilde and control-B (CR ~ CTRL-B), but may be changed by the driver. For more information on breaking (entering the debugger or monitor), see kbd(1) and kb(7M). ERRORS
An open() will fail under the following conditions: ENXIO The unit being opened does not exist. EBUSY The dial-out device is being opened while the dial-in device is already open, or the dial-in device is being opened with a no- delay open and the dial-out device is already open. EBUSY The unit has been marked as exclusive-use by another process with a TIOCEXCL ioctl() call. EINTR The open was interrupted by the delivery of a signal. FILES
/dev/term/[a-d] dial-in tty lines /dev/term/[012...] /dev/cua/[a-d] dial-out tty lines /dev/cua/[012...] /kernel/drv/amd64/asy 64-bit kernel module for 64-bit x86 platform /kernel/drv/asy.conf asy configuration file ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Architecture |x86 | +-----------------------------+-----------------------------+ SEE ALSO
tip(1), kbd(1), uucp(1C), eeprom(1M), pppd(1M), ioctl(2), open(2), termios(3C), attributes(5), ldterm(7M), ttcompat(7M), kb(7M), termio(7I) DIAGNOSTICS
asyn: silo overflow. The hardware overrun occurred before the input character could be serviced. asyn: ring buffer overflow. The driver's character input ring buffer overflowed before it could be serviced. SunOS 5.11 9 Oct 2004 asy(7D)
All times are GMT -4. The time now is 01:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy