Sponsored Content
Full Discussion: TTY Issue with Sunblade 150
Operating Systems Solaris TTY Issue with Sunblade 150 Post 302397253 by TonyFullerMalv on Sunday 21st of February 2010 04:17:03 PM
Old 02-21-2010
I have used a Sun Blade-150 serial console and all I connect are pins 2, 3, 1 and 7:
Serial Port & Cable Pinouts SunHELP
Did you know you can use the serial port for input and the monitor for output (and vice versa)?
The output-device setting can be set to include the resolution and refresh rate of your monitor so that you see the messages during power up and before Solaris takes over, e.g.:
Code:
output-device=screen:r1024x768x60

in this case 1024 pixels by 768 pixels at 60Hz.
I have seen folk confused by having two VGA connectors because a framebuffer card had been added in and they had the monitor plugged into the wrong one. To make the alternative framebuffer card may require amending of the pci-probe-list:
9. Multiple Monitors on a System (Solaris Handbook for Sun Frame Buffers) - Sun Microsystems

I'm fairly sure a PC USB mouse will work, it might be a bit fast or slow, a normal PC USB keyboard I think will work but will lack the power, front, back, stop, etc. keys.

On the memory front a Sun Blade-150 requires error correction SDRAM (ECC SDRAM).
 

10 More Discussions You Might Find Interesting

1. Solaris

regd.sunblade 100

hii alll i have a problem with my sunblade100. when i switch on, no display comes but if i ping from a remote machine its pinging,but iam not able to telent to that sun server,what can be the problem,how can i sort ot this issue 2 thing in usb iam not able to use STOP N (to clear the... (3 Replies)
Discussion started by: solaris8in
3 Replies

2. Debian

How to install Debian on a SUNBLADE 100?

I have tried to install the Debian distribution for SPARC processor, but is a pian in the neck trying to boot from cdrom or floppy. Please can somebody to help me to know the easiest way to boot and install Debian on a SUNBLADE 100 system? or wich is the best way to installed on this system, I... (2 Replies)
Discussion started by: GEIER
2 Replies

3. Solaris

Can SunBlade 150 support 2 x 160GB hard disk

Hi all, I am a newbies here, Have question regards large hard disk install in SunBlade system. Can SunBlade 150 support 2 x 160GB (internal IDE) ? Want to make sure before buy the hard disks. Anyone had experiences configure large hard disk in SunBlade 150 before ? In the SunBlade 150... (2 Replies)
Discussion started by: ong.kianseng
2 Replies

4. Solaris

SunBlade 2000

Hi guys, I have a SunBlade 2000 that I am trying to configure. It has been configured previously with an IP address, hostname, DNS and so forth. I want to configure it with a new IP address. How can I achieve this? It has been one of the most difficult tasks for me as I am not really... (6 Replies)
Discussion started by: Arkayev
6 Replies

5. UNIX for Dummies Questions & Answers

Sunblade 1000

Hi everyone this is my first post I have used linux a couple of times and was impressed, so i bought an old sunblade 1000, just to learn something new. I cannot get the thing to work! I have tried to install solaris 10 and several types of linux. I am beginning to wonder if i was sold a... (3 Replies)
Discussion started by: Kawakaze
3 Replies

6. Solaris

PC133 for sunblade 100

Greetings, I was in the mood of upgrading my sunblade100 in my bedroom, since I recuperated some RAM from intel servers, and found myself with what seems to not work (I was hoping to pass from 256Mb to 2GB... and then upgrading to solaris 10...) after this failure I tried with just one 512 MB,... (2 Replies)
Discussion started by: vbe
2 Replies

7. Solaris

Cloning a Sunblade 2500

Good Morning, I took a mirror drive from one Solaris 9 machine and used it to set up another. After syncing another mirror on the second machine I restarted but I don't get a login screen. I see a message:The X-server cannot be started on display :0 Also during startup I see:... (8 Replies)
Discussion started by: Stellaman1977
8 Replies

8. UNIX for Beginners Questions & Answers

Ufsrestore on SunBlade 2500

Good Afternoon, I'm setting up a SunBlade 2500 using ufsrestoreand have gotten to the point where I have restored the root and usr partitions. However, the machine keeps rebooting, never really coming up. Looking at vfstab, it looks pretty empty- shouldn't I see entries like... (22 Replies)
Discussion started by: Stellaman1977
22 Replies

9. Shell Programming and Scripting

Python: Redirecting to tty and reading from tty

In bash, you can do something like this: #!/bin/bash echo -n "What is your name? " > /dev/tty read thename < /dev/tty How can I do the same in python? I have a python script that has the following content: #!/usr/bin/python2.7 import getpass import sys import telnetlib import... (2 Replies)
Discussion started by: SkySmart
2 Replies

10. UNIX for Beginners Questions & Answers

SunBlade 150 can't start openwin: /usr/openwin/bin/xinit: Server error.

Hi. I have a Microsystems SunBlade 150 shell# cat /etc/release Solaris 8 2/02 s28s_u7wos_08a SPARC shell# uname -a SunOS HOSTNAME 5.8 Generic_108528-14 sun4u sparc SUNW,Sun-Blade-100 shell# prtconf -F /pci@1f,0/SUNW,m64B@13:m640 When I join to the only account the server try to... (5 Replies)
Discussion started by: siegroup
5 Replies
bcopy(9F)						   Kernel Functions for Drivers 						 bcopy(9F)

NAME
bcopy - copy data between address locations in the kernel SYNOPSIS
#include <sys/types.h> #include <sys/sunddi.h> void bcopy(const void *from, void *to, size_t bcount); INTERFACE LEVEL
Architecture independent level 1 (DDI/DKI). PARAMETERS
from Source address from which the copy is made. to Destination address to which copy is made. bcount The number of bytes moved. DESCRIPTION
The bcopy() function copies bcount bytes from one kernel address to another. If the input and output addresses overlap, the command exe- cutes, but the results may not be as expected. Note that bcopy() should never be used to move data in or out of a user buffer, because it has no provision for handling page faults. The user address space can be swapped out at any time, and bcopy() always assumes that there will be no paging faults. If bcopy() attempts to access the user buffer when it is swapped out, the system will panic. It is safe to use bcopy() to move data within kernel space, since kernel space is never swapped out. CONTEXT
The bcopy() function can be called from user, interrupt, or kernel context. EXAMPLES
Example 1 Copying data between address locations in the kernel: An I/O request is made for data stored in a RAM disk. If the I/O operation is a read request, the data is copied from the RAM disk to a buffer (line 8). If it is a write request, the data is copied from a buffer to the RAM disk (line 15). bcopy() is used since both the RAM disk and the buffer are part of the kernel address space. 1 #define RAMDNBLK 1000 /* blocks in the RAM disk */ 2 #define RAMDBSIZ 512 /* bytes per block */ 3 char ramdblks[RAMDNBLK][RAMDBSIZ]; /* blocks forming RAM /* disk ... 4 5 if (bp->b_flags & B_READ) /* if read request, copy data */ 6 /* from RAM disk data block */ 7 /* to system buffer */ 8 bcopy(&ramdblks[bp->b_blkno][0], bp->b_un.b_addr, 9 bp->b_bcount); 10 11 else /* else write request, */ 12 /* copy data from a */ 13 /* system buffer to RAM disk */ 14 /* data block */ 15 bcopy(bp->b_un.b_addr, &ramdblks[bp->b_blkno][0], 16 bp->b_bcount); SEE ALSO
copyin(9F), copyout(9F) Writing Device Drivers WARNINGS
The from and to addresses must be within the kernel space. No range checking is done. If an address outside of the kernel space is selected, the driver may corrupt the system in an unpredictable way. SunOS 5.11 16 Jan 2006 bcopy(9F)
All times are GMT -4. The time now is 06:30 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy