- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- script for non-stop looping
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
01-03-2008 10:04 PM
01-03-2008 10:04 PM
script for non-stop looping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2008 10:32 PM
01-03-2008 10:32 PM
Re: script for non-stop looping
while true
do
:
done
Hasan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2008 11:13 PM
01-03-2008 11:13 PM
Re: script for non-stop looping
If you run mstm, select the CPU(s) and run the exercise tool, this will put heavy load on the CPU.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2008 12:06 AM
01-04-2008 12:06 AM
Re: script for non-stop looping
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1186172
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2008 05:01 AM
01-04-2008 05:01 AM
Re: script for non-stop looping
Most crypto applications or file packers are good candidates.
You could also try to solve some linear equation systmes as I suppose the notorious lapack is doing.
http://www.netlib.org/lapack/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2008 05:05 AM
01-04-2008 05:05 AM
Re: script for non-stop looping
Most crypto applications or file packers are good candidates.
You could also try to solve some linear equation systems as I suppose the notorious lapack is doing.
http://www.netlib.org/lapack/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2008 05:10 AM
01-04-2008 05:10 AM
Re: script for non-stop looping
Most crypto applications or file packers are good candidates.
You could also try to solve some linear equation systems as I suppose the notorious lapack is doing.
http://www.netlib.org/lapack/
Or fluid flow solvers also seem well suited to stress the cpu
http://en.wikipedia.org/wiki/Reynolds-averaged_Navier-Stokes_equations
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2008 05:31 AM
01-04-2008 05:31 AM
Re: script for non-stop looping
Webserver didn't respond.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2008 11:04 AM
01-04-2008 11:04 AM
Re: script for non-stop looping
while true
do
prealloc /someplacewith5gbfree/test.5GB 5368709120
gzip /someplacewith5gbfree/test.5GB
rm /someplacewith5gbfree/test.5GB.gz
done
Something like that...
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2008 02:42 PM
01-04-2008 02:42 PM
Re: script for non-stop looping
The below allows you to start as many as you like to drive all CPUs.
#!/usr/bin/ksh
ii=0
COUNT=${1:-2}
if [[ -z $1 ]]
then
echo "Number not supplied, using default of $COUNT"
else
echo "Using supplied number of $1"
fi
while [[ $ii -lt $COUNT ]]
do
while true
do
:
done &
(( ii = ii + 1 ))
done
jobs -l
echo "
read pauz
ii=1
while [[ $ii -le $COUNT ]]
do
echo "Killing % $ii "
kill %$ii
(( ii = ii + 1 ))
done