- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- break process
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2003 09:34 PM
03-25-2003 09:34 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2003 09:41 PM
03-25-2003 09:41 PM
Solution# ls a*
# ls >/tmp/file.out
You should also look at assigning points to peoples responses. They assist you using their own time and resources. Your record of 0 assignments from 106 responses is not good.
See here:
http://forums.itrc.hp.com/cm/UserProfile/1,,CA908664!1,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2003 09:44 PM
03-25-2003 09:44 PM
Re: break process
#stty -a
you should have
intr=^C(interrupt)
#stty intr ^C(crtl v +crtl c)
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2003 09:46 PM
03-25-2003 09:46 PM
Re: break process
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2003 10:01 PM
03-25-2003 10:01 PM
Re: break process
#stty -a
stty -a
speed 9600 baud; rows 24; columns 80; line = 0;
intr = ^C; quit = ^\; erase = ^H; kill = ^U; eof = ^D; eol =
eol2 =
lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 hupcl -cstopb cread -clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon ixoff
-iuclc -ixany -imaxbel
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt
echoctl echoke,
but still can't use the " ctrl + C " , what is problem in our system ? thx.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2003 10:25 PM
03-25-2003 10:25 PM
Re: break process
For example
you do a
ls -Rl from the / dir.
Then do a crtl-c.
The system should take some time to receive the interrupt and stop processing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2003 10:38 PM
03-25-2003 10:38 PM
Re: break process
I tried your method , but still not work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2003 04:22 AM
03-26-2003 04:22 AM
Re: break process
$ sleep 100
[You should get no prompt because the sleep waits for 100 seconds.]
[Now type:]
Ctrl+C
[I.e. Press and hold the Ctrl key, press the C key and release both. You now should get the prompt.]
Looking at your reported "stty -a" settings, Ctrl+break will probably not work.
However Ctrl+\ ("quit" signal) should work, and should say "Quit(coredump)" and should generate a core file (file "core" in the current directory).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2003 04:29 AM
03-26-2003 04:29 AM
Re: break process
type "stty -a" in your shell prompt:
speed 9600 baud; line = 0;
rows = 51; columns = 88
min = 4; time = 12;
intr = ^C; quit = ^X; erase = ^H; kill = ^U
eof = ^D; eol = ^L; eol2 = ^@; swtch = ^@
stop = ^S; start = ^Q; susp = ^Z; dsusp = ^Y
werase = ^@; lnext = ^@
parenb -parodd cs8 -cstopb hupcl cread -clocal -loblk -crts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl -iuclc
ixon -ixany ixoff -imaxbel -rtsxoff -ctsxon -ienqak
isig icanon -iexten -xcase echo echoe echok -echonl -noflsh
-echoctl -echoprt -echoke -flusho -pendin
opost -olcuc onlcr -ocrnl -onocr -onlret -ofill -ofdel -tostop
if it doesn't work, execute this script:
export TERM=xterm
export PATH=$HOME/local/bin:$PATH
stty kill '^U' intr '^C' quit '^X' eol '^L' erase '^H'
tset
export DISPLAY="nomepc":0.0
Regards.
Ernesto.