How to install PGX32 on Sparc 10 Ultra?


 
Thread Tools Search this Thread
Operating Systems Solaris How to install PGX32 on Sparc 10 Ultra?
# 15  
Old 02-28-2013
What does zoneadm list -cv show?
# 16  
Old 02-28-2013
Zones make up a sort of Solaris Virtualisation environment similar to VMware. Are you familiar with that?

The global zone is the base OS and a non-global zone is equivalent to a guest OS on VMware.

A zone lives in a container, so zones and containers can usually be considered as the same thing (unless your configuration is unusual).

If you are accessing the console then, by default, you are logging into the global zone. If so, please post the output of:

Code:
 
zoneadm list -cv

That will tell us what you're looking at.

However, this type of virtualisation usually hosts multiple systems so trying to change the graphics adapter (on all zones) is unusual.

Please post why you are trying to do this. What is the app?

Depending on your response this could be getting tricky but there are some heavy-weight members on this forum who will contribute if they read this thread.

Certainly, the fact that your driver install error includes mention of zone is significant. The error about /a/etc/minor_perm access is common where zones are involved.

Please post as much of the story as possible so this community can help you.

Also, let me invite all Solaris expert members to "pile in". (Thanks Bartus11 - you beat me to this post).
This User Gave Thanks to hicksd8 For This Post:
# 17  
Old 03-01-2013
********* S U C C E S S !!! ************
Eureka! Finally at long last I've got my system running off the PGX32 board! In retrospect, it was quite simple - just a matter of knowing which magic spells to cast. This is what did it:

1. I used the drivers in the file pgxOWv30_s9.tar on the techsource.com web site.
2. Instead of using their install_all script, I typed in the pkgadd commnd myself, adding the -G switch, ie.(from a root console login)
# pkgadd -G -d ./ TSIpgxx.u TSIpgx.u TSIpgxw
3. Reboot with a boot -- -r, then STOP-a to get an OK prompt.
4. From the OK prompt, do
OK setenv pcib-probe-list 1,3

OK reset

And hey presto, the system rebooted with the console coming up on my big monitor connected to the external PGX32 card!

Note that these drivers are clearly listed as being for "Solaris 8 and 9 only", but they work for 10 also (and just to be clear, this is Solaris for Sparc). They also talk about OBP 3.17, but I've got 3.25 and again, they work fine anyway. One thing that was not necessary was messing around with /etc/dt/config/Xservers. I created one of these according to some instructions I found and it really screwed up the system. There is no need to even have that file present to make this all work.

I think the first key to this puzzle was going to techsource for the drivers and the final one was using the -G switch in pkgadd. That caused the drivers to install cleanly without any errors. So many many many thanks to everyone who took the time to follow this thread and offer suggestions, and especially to hicksd8, who is now my hero. SmilieSmilieSmilie


---------- Post updated at 01:46 AM ---------- Previous update was at 12:51 AM ----------

Quote:
Originally Posted by bartus11
What does zoneadm list -cv show?
For completeness,

Code:
bash-3.00$  zoneadm list -cv 
 ID NAME             STATUS         PATH 
  0 global           running        / 
  - bristol-jes      installed      /data/zones/bristol-jes


Last edited by Michele31416; 03-01-2013 at 02:08 AM..
# 18  
Old 03-01-2013
Brilliant! What a result. Well done!

You're obviously an IT professional, and ten out of ten for tenacity, but you may be distracted right now with all the effort so I'll say it anyway (not wishing to upset you), backup the whole thing asap.

You don't want to go through that again!!!

All the best.
# 19  
Old 03-01-2013
"backup the whole thing asap"

Ha - you read my mind. That was the very next thing I was going to tackle. What I'd like to do is backup my entire boot drive such that I can restore it to a new disk in the event of a catastophic failure. I'm sure the drive in there now (a 9 GB 5 1/4" Seagate) is the original one that came with the machine. I probably shouldn't even say anything, but it's not clear how much more life is left in it. It's nearly full anyway so it would be nice to replace it with a larger one.

I have three possible avenues for backups: a mounted nfs file server on my lan, a working USB card on the Sun, and enough free space on my 40 GB secondary drive to do a backup there.

I don't know if this should be a new thread but if you have any suggestions, I'd very much appreciate hearing them.

(And I actually am an IT professional, or at least I was until I retired. I started using Sun workstations way back in the pre-Sparc Sun 4 days working for a large company in R&D. But we always had sysadmins to handle stuff like backups and installing new cards, so that part is all new to me).
# 20  
Old 03-01-2013
Well I could write loads about this but I'm not going to. With your experience (you used to reading man pages) I only need to give you the clues. (That's what I've been doing up 'til now and it's all you needed).

Backup is a matter of choice but, given the options you list, I would go for the NFS remote mount. I assume, given the age of the machine, that your filesystems are ufs.

I would use ufsdump with switches 0f (meaning 0 for full backup and f to determine filename/pathname). This will create a file for the filesystem dump on the remote system. You can then run this file to tape (or copy it to a further system with a tape drive) and take it offsite.

To recover, in brief,

1. Fit new drive in system.
2. Boot from cdrom
3. Use 'format' to set up filesystem slices and swap
4. Use 'newfs' to write filesystems on the new disk slices.
5. Mount the new (empty) filesystem (under /a)
6. Use 'ifconfig' to manually plumb, set ip address, and mark as 'up' the network interface.
7. Mount the remote nfs system containing the ufsdump (under /mnt).
8. ufsrestore the filesystem(s)

If there is more than one filesystem on your system you can back them all up this way. You can still restore individual files if needed.

Tip: Get the vtocs (virtual table of contents; partitioning sizes in DOS terms) by running 'prtvtoc' on your system and recording the output. This is invaluable in a recovery situation.

Any other questions just ask.

Hope that helps.

PS: To be absolutely purist, you should use 'fssnap' to create a snapshot of your filesystem (this will output a device name for the snapshot), then mount that device read-only, and then ufsdump that read-only filesystem. If the system is not quiesent, then you're still covered. What you will be backing up would be a stationary snapshot and not a moving filesystem. See man pages and Google that.

Last edited by hicksd8; 03-01-2013 at 02:32 PM..
# 21  
Old 03-01-2013
Perfect! That's exactly what I needed to know. Thanks. I actually also have an external SCSI QIC-150 tape drive and a bunch of tapes, but I'm still wrestling with getting the system to see the SCSI card (it's an Adaptec AVA-2902E/I). But that's another story :-) OK, that story is that probe-scsi-all returns nothing.

First though I have to address a cooling issue. It looks like this PGX32 exercise was just too much for the machine's tired old CPU fan and it has now gone to that great tower case in the sky. So we're down until I can replace that. No biggie.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Hardware

Sun Sparc Ultra 30 help

Hi all, I managed to salvage form work an old Sun Sparc Ultra 30. I have had it stored (controlled storage) for a few years and decided to get it home and boot it up. It starts up with a beep then I can hear disks spinning up, CDROM moving but nothing is displayed on the monitor. Can... (2 Replies)
Discussion started by: robbo007
2 Replies

2. Ubuntu

Sudo issues with Ubuntu 7.10 Running on a Ultra SPARC Machine

I have a Sun Blade 1000 machine that I installed Ubuntu 7.10 SPARC onto. The only user configured (configure during install) cannot use sudo. When I try to issue a command using sudo (ex. sudo apt-get install) it asks me for my password and returns the error "user not found in sudoers file". I need... (4 Replies)
Discussion started by: swilso
4 Replies

3. Solaris

Sun Sparc Ultra 4 won't boot - disk errors

Hi all. I am seeing in one of our less-used servers that it crashed and now won't restart. I get the message 'continue with normal startup or boot into maintenance mode'. I go into maintenance and run fsck on /usr0 (mentioned in error at restart) it then reboots but goes right back to... (3 Replies)
Discussion started by: jamie_collins
3 Replies

4. Solaris

How much better performance is ultra SPARC IV+ 1.95GHz than 1.35GHz?

Dear Guru, My boss has a plan to upgrade cpu of server so he needs to know how much better performance(percentage) is Ultra SPARC IV+ 1.95 GHz than Ultra SPARC IV 1.35 GHz?. I am looking for documentation to reference but I didn't see anything close to my point. If who know,... (3 Replies)
Discussion started by: unitipon
3 Replies

5. Debian

Problem installing Debian5 on an ultra sparc machine

Comments/Problems: Machine boots from CDROM, starts SILO Version 1.4.13, display welcome message (welcome to Debian GNU/Linux lenny! built on 20081218-10:06 ). boot: Allocated 8 Megs of memory at 0x40000000 for kernel Loaded kernel version 2.6.26 Loading initial ramdisk... (3 Replies)
Discussion started by: mtk
3 Replies

6. Solaris

Null modem cable in Ultra sparc 10

Hi Gurus, Can I use null modem cable in Ultra sparc 10 workstation Thanks (3 Replies)
Discussion started by: kumarmani
3 Replies

7. Solaris

In Sparc Ultra 45 machine, how to enable bge1

In Sparc Ultra 45 machine, how to enable bge1 port, how to do if bge0 is down then bge1 should automatically up. Thanks & Regards (2 Replies)
Discussion started by: durgaprasadr13
2 Replies

8. Solaris

ultra sparc 2 no video - ok prompt access

I have an ultra sparc 2 with no video - I connect to it with hyperterm. Is there a way to get to the OK prompt? I have tried control/break and that does not work. If not is there a video card I can get to put in this box? I have Solaris 10 installed on this machine. Thanks (7 Replies)
Discussion started by: tribbles
7 Replies

9. UNIX for Advanced & Expert Users

Need Help , Ultra SPARC can not loading

Dear All, I have trouble, I have SPARC Machine and when start for loading, can not finish ! this is copy off message from my system Netra t 1120/1125 (UltraSPARC-II 440MHz), No Keyboard OpenBoot 3.31, 512 MB memory installed, Serial #12116535. Ethernet address 8:0:20:b8:e2:37, Host ID:... (4 Replies)
Discussion started by: heru_90
4 Replies

10. UNIX for Dummies Questions & Answers

Sun Ultra sparc 60

Hello everybody!! I need your help again. I am using Sun Ultra sparc 60 machine.Follwing are the types of files getting generated in /var/tmp. "windu_sm_o aaaa,baaa,caaa,daaa" etc. I am not able to locate which application is generating these files. Can I straightway delete these files ? or... (1 Reply)
Discussion started by: vikasdeshmukh
1 Replies
Login or Register to Ask a Question