Need help going from power pc to newer computer!


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Need help going from power pc to newer computer!
# 1  
Old 11-05-2013
Need help going from power pc to newer computer!

I have a Unix server running on a powerPC dating back to 2000. I need to change the computer to something newer. I also need to keep running Unix as the OS in order to run the Medical monitoring software we have. Is there a way to do this? I have the IBM AIX-Unix running a Multiview Workstation program from Siemens. I believe the Unix I use currently is configured for the PowerPC, So I think I can't reload it on a newer conputer. So basically, can anyone help me figure out if I can get another PC and install a Unix OS on it?
Hopefully, I could then just install the Multiview program I have.
Thanks for any help in pointing me in the right direction.
# 2  
Old 11-05-2013
My recommendation would be to contact the people from - Multiview Workstation program from Siemens. They should maintain a list of hardware, software, etc..., they they certify.
# 3  
Old 11-05-2013
At a guess that AIX system uses some serial multiplexer (serial lines to the actual end medical devices). You should consult the vendor to see what O/S's are supported for the software. What is the motivation for new equipment? What is the level of AIX? Later versions of AIX are suppose to be binary compatible with earlier versions. You can test binary compatibily by possibly using an inexpensive aix cloud offering (see http://www.siteox.com) and loading the executables up to see if it runs. I see two paths here: possibly linux if the vendor supports a linux client and of course aix...a supported o/s level on a later version of IBM power equipment.
# 4  
Old 11-05-2013
The Workstations are all networked using ethernet cables, we have a hub for all the different monitors.
The reason for the change is the system is getting unstable. It loses it's some functions, for example we often have to reinstall the database to get it going again, the system unexpectanly reboots. We're thinking the Pc is getting a little wore out. It runs 24/7 without breaks (Monitors patients in the ICU).
I will check with the vendor though last time they had real solution except buy a new system... (100's of thousands of dollards)
# 5  
Old 11-05-2013
Have you been keeping up with fix packs? It sounds like your current AIX system may be out of service. You should also take a look at the system and see why it is failing/rebooting and why you have to restart the database. The error log is a good place to check. These issues may be a result of not adequately managing the system.
This User Gave Thanks to blackrageous For This Post:
# 6  
Old 11-05-2013
How do you go about checking the error log? Very rusty on Unix Smilie
No fixes were provided, last update was version 5.3 I think. Is there a place to get them?
I also found out our Monitor program is configured for the powerPC only, so I can't transfer it. I guess I am stuck with the Computer I have. So any ways to help diagnose and help it live longer will be appreciated.
# 7  
Old 11-05-2013
Code:
errpt -a | more

type oslevel; oslevel -s so we know the level of aix...
This User Gave Thanks to vbe For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Copy file only if newer

I only want the file copied if it is newer. But it still copies the file? zip -u Ubuntu_Documents.zip ./* cp -u Ubuntu_Documents.zip $DOCS_Backup/Ubuntu_Documents_`date +"%Y-%m-%d-%H-%M"`.zip (5 Replies)
Discussion started by: drew77
5 Replies

2. Linux Benchmarks

Newer PC build.

Just decided to run the benchmark for the heck of it. -Version- Dist: Debian GNU/Linux 8.5 CPU/Speed: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz RAM: DDR4 DRAM 64 GB 3000 MHz CMK64GX4M4B3000C15 MB: Maximus VIII Ranger Bus: 8 sata, 1 M.2 Socket 3 Cache: L2=4 x 256KB, L3=8 MB shared... (1 Reply)
Discussion started by: bajanine
1 Replies

3. Shell Programming and Scripting

file1 newer then file2

Hello, I am new to shell scripting and i need to create a script with the following directions and I can not figure it out. Create a shell script called newest.bash that takes two filenames as input arguments ($1 and $2) and prints out the name of the newest file (i.e. the file with the... (1 Reply)
Discussion started by: mandylynn78
1 Replies

4. Shell Programming and Scripting

Need Help with -newer command

Ok, here's the situation: There's a script that runs every day on a UNIX box that collects files. The script has now been changed so that at the start of a new day, the script would create a new folder and then copy files to it for that day. This has put me in a dilema as I have a script... (1 Reply)
Discussion started by: bbbngowc
1 Replies

5. UNIX for Dummies Questions & Answers

How Can I To Power Off My Computer?

I have a SCO UNIX 5.0.6. and a computer ATX. My Question is: How can i to power off my computer without to push the power button? :confused: Please help me. :( Thanks :) (11 Replies)
Discussion started by: vhabalos
11 Replies

6. UNIX for Advanced & Expert Users

How Can I To Power Off My Computer?

I have a SCO UNIX 5.0.6. and a computer ATX. My Question is: How can i to power off my computer without to push the power button? :confused: Please help me. :( Thanks :) (1 Reply)
Discussion started by: vhabalos
1 Replies

7. Shell Programming and Scripting

Problem with find ! -newer

Hi, I would like to find if a file called test.log is older than 10 min. So i wrote : #!/usr/bin/ksh FICLOG="/home/uuu/result_test.log" FIC="/home/uuu/test.log" touch -t `perl -e 'use POSIX qw(strftime); printf("%s\n",strftime("%m%d%H%M",localtime(time-3600*0.17)));'`... (3 Replies)
Discussion started by: dbfree
3 Replies

8. UNIX for Dummies Questions & Answers

Find files newer than...

Is there a way to use the find command to locate files newer than a specific date? Thanks! --Alex (4 Replies)
Discussion started by: vertigo23
4 Replies

9. UNIX for Dummies Questions & Answers

tar --newer = tar --newer-mtime ?

Hi, I have the following question : As far as I know unix doesn't store file creation dates. Would that imply the following? tar -cvzf backup.tar --newer is equal to: tar -cvzf backup.tar --newer-mtime ? (1 Reply)
Discussion started by: jamesbond
1 Replies
Login or Register to Ask a Question