STOP A sequence


 
Thread Tools Search this Thread
Operating Systems Solaris STOP A sequence
# 1  
Old 06-22-2004
STOP A sequence

Hi,

I have a sun sparc system. I don't have a sun keyboard, hence i connected a pc keyboard.
I would like to know the "STOP A" equivalent command to be used on pc keyboard.

Regards,
Raja
# 2  
Old 06-22-2004
............

hi,
should be:
ctrl break

gP
# 3  
Old 06-22-2004
I did tried that one even i tried this -

ctrl a
shift a
shift break
ctrl + shift + break

but nothing worked. Are there any other options I can try out.

Regards,
Raja
# 4  
Old 06-22-2004
STOP+A works with a directly attached keyboard being used in conjuction with a directly attached monitor.

If you don't have a monitor and keyboard the system will use the serial port as the console. If that serial port receives a BREAK signal, the system will respond the same way as STOP+A works. You don't use the shift or control keys with the break signal. Break is not a character.

If your pc keyboard is plugged into a pc and that pc is connected to the serial port of the sparc then the pc must be running hyperterminal or something. These terminal emulators all have a way to send a break signal out the serial port. If that is not the case, switch to a better terminal emulator.

If your pc keyboard is directly connected to the sparc you should really get another keyboard. But I think that unplugging and reconnecting the keyboard should work.

Whether or not any of this works depends on keyboard aborts being enabled. This is the default, But they may be disabled on your system. If there is a line like:
KEYBOARD_ABORT=disable
in the file /etc/default/kbd then keyboard aborts are disabled. In this case you can re-enable them with the kdb command. You can edit that file and run "kbd -i". Also you can make a one-time change with commands like "kbd -a enable" and "kbd -a disable". There is more to know about this kbd file and command. See the man page.

Also see this doc which mentions another way to disable keyboard aborts. I think that this is now deprecated in favor of the kbd stuff, but you could still have it set.

Finally, some sparcs have a hardware switch to disable keyboard aborts. So check the docs for your hardware.
# 5  
Old 06-22-2004
Thanks a lot for the information.

Regards,
Raja
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sequence extraction

i want to extract specific region of interest from big file. i have only start position, end position and seq id, see my query is: I have file1 is this >GL3482.1 GAACTTGAGATCCGGGGA GCAGTGGATCTCCACCAG CGGCCAGAACTGGTGCAC CTCCAGGCCAGCCTCGTC CTGCGTGTC >GL3550.1... (14 Replies)
Discussion started by: harpreetmanku04
14 Replies

2. Red Hat

Rm -rf * sequence

If I run rm -rf * command under one parent directory. /data > rm -rf * Is there anyway to know which files will be deleted first ? Start using code tags please, ty. (2 Replies)
Discussion started by: sameermohite
2 Replies

3. Shell Programming and Scripting

Sequence generator

Thanks Guys This really helped (5 Replies)
Discussion started by: robert89
5 Replies

4. Shell Programming and Scripting

find common entries and match the number with long sequence and cut that sequence in output

Hi all, I have a file like this ID 3BP5L_HUMAN Reviewed; 393 AA. AC Q7L8J4; Q96FI5; Q9BQH8; Q9C0E3; DT 05-FEB-2008, integrated into UniProtKB/Swiss-Prot. DT 05-JUL-2004, sequence version 1. DT 05-SEP-2012, entry version 71. FT COILED 59 140 ... (1 Reply)
Discussion started by: manigrover
1 Replies

5. UNIX for Dummies Questions & Answers

Why does fibonacci sequence script stop making sense at 92nd iteration?

So, Just for practice, I wrote a simple fibonacci sequence script in bash. (03:08:02\$ cat fib #!/usr/bin/bash ret () { echo -ne "\n" sleep .5 } a=1 b=2 echo -n $a #1 A ret echo -n $b #2 B ret (8 Replies)
Discussion started by: DeCoTwc
8 Replies

6. Shell Programming and Scripting

ID generation in sequence

i have an xml tag. The value for the tag should be iterated through out the xml document. eg: <data><id><id><name>a</name><addr>aaa</addr><phnumb>3456</phnumb><state>ca</state><city>ny</city></data>... (6 Replies)
Discussion started by: Sgiri1
6 Replies

7. UNIX for Dummies Questions & Answers

bootup sequence

What is the boot up sequence in UNIX? (2 Replies)
Discussion started by: karthi_g
2 Replies

8. UNIX for Advanced & Expert Users

how to stop others users to stop viewing what i am doing ?

Hi , I have one question, suppose i am a normal user and when i use 'w' command , it shows who is logged on and what they are doing . Now i want to stop others users to know what i am doing accept the root ? can i do this ? thanks (5 Replies)
Discussion started by: mobile01
5 Replies

9. Shell Programming and Scripting

Escape sequence

Hi, I have got an application through which an user will submit an address like "c:\tuser\abc". This application calls a script and passes the address to the scripts positional parameter say $1. So $1 should contain "c:\tuser\abc", but when $1 is echoed the "\t" and "\a" are interpreted to... (4 Replies)
Discussion started by: puspendu
4 Replies

10. UNIX for Dummies Questions & Answers

Boot Sequence

Hi everybody, I have to create a script and put it in the boot up sequence . Can you give me the path where i can put it? Sorry it's my first script. DElphine (3 Replies)
Discussion started by: delphine
3 Replies
Login or Register to Ask a Question