Virtualize physical SCO 5.0.6


 
Thread Tools Search this Thread
Operating Systems SCO Virtualize physical SCO 5.0.6
# 22  
Old 09-06-2010
This advice is general because I haven't seen SCO unix for many years.

Reading between the lines you appear to be trying to move an existing running SCO unix system to a virtual machine. You have already hit the 2 Gb limit on any file (including a cpio archive) which is found in old versions of unix.

Personally I wouldn't attempt to move the Operating System. I would cold install on the new platform and then transfer any data files. Assuming you have a technique to boot the result (a technique unknown to me), copying all the files is straightforward providing that the destination filesystem can be handled by the source Operating System.

Try using "find ." piped to "cpio -p". This is documented in both "man find" and "man cpio". The key point here is that we are not creating a "cpio archive" (which could exceed 2 Gb) we are just copying files (none of which could possibly exceed 2 Gb). It is what "cpio" is for.

Sample example command sequence follows: Please check exact syntax on your computer with your "man" pages and do rehearse on expendable filesystems. I recall that the parameter "-xdev" used to be "-mount" in SCO unix but things have probably changed in the meantime.

You cannot move all filesystems in one operation. It needs one copy operation per filesystem. Start with root then each mountpoint in descending order of directory hirearchy. Ensure that the target filesystems match the source filesystems.

Code:
cd /old_mountpoint
find . -xdev -depth -print | cpio -pdumv /mnt/new_mountpoint

This User Gave Thanks to methyl For This Post:
# 23  
Old 09-07-2010
Thx a lot, but on the physical machine I have in /usr/local/bin just symbolic links.
And cpio -pdumv will copy symbolic links as well?
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. SCO

Virtualize SCO 5.0.6 with Microfocus COBOL - Help needed

Hi all, I am trying to virtualize a running SCO 5.0.6 system with microfocus cobol installed. I have already managed (thanks to the people in this forum) to install the operating system. I dont have the cobol installation media anymore. I have copied (using cpio) all directories from... (3 Replies)
Discussion started by: sopela123
3 Replies

2. UNIX for Dummies Questions & Answers

Confusion Regarding Physical Volume,Volume Group,Logical Volume,Physical partition

Hi, I am new to unix. I am working on Red Hat Linux and side by side on AIX also. After reading the concepts of Storage, I am now really confused regarding the terminologies 1)Physical Volume 2)Volume Group 3)Logical Volume 4)Physical Partition Please help me to understand these concepts. (6 Replies)
Discussion started by: kashifsd17
6 Replies

3. Solaris

svc:/network/physical:default: Method "/lib/svc/method/net-physical" failed with exit status 96. [ n

After a memory upgrade all network interfaces are misconfigued. How do i resolve this issue. Below are some out puts.thanks. ifconfig: plumb: SIOCLIFADDIF: eg000g0:2: no such interface # ifconfig eg1000g0:2 plumb ifconfig: plumb: SIOCLIFADDIF: eg1000g0:2: no such interface # ifconfig... (2 Replies)
Discussion started by: andersonedouard
2 Replies

4. Solaris

Virtualize x86 on Sparc ?

Hello, is it somehow possible to run a x86 Linux OS in a virtual machine in Solaris running on Sparc ? Virtualbox ? Containers ? I know it would be easier just get a Intel hardware and run the Linux but I might be in a scenario where only Sparc hardware is allowed by corporate policy and still... (6 Replies)
Discussion started by: Tex-Twil
6 Replies

5. AIX

Maximum Limit of HMC to handle Physical Power Virtualization Physical Machine

Hello All, Can anybody please tell me what is the maximum limit of Physical IBM Power Machine which can be handled by single HMC at a single point of time? Thanks, Jenish (1 Reply)
Discussion started by: jenish_shah
1 Replies

6. UNIX for Dummies Questions & Answers

Physical volume- no free physical partitions

I was in smit, checking on disc space, etc. and it appears that one of our physical volumes that is part of a large volume group, has no free physical partitions. The server is running AIX 5.1. What would be the advisable step to take in this instance? (9 Replies)
Discussion started by: markper
9 Replies

7. UNIX for Dummies Questions & Answers

physical volume and physical disk.

Hello, I need explanations about physical disks and physical volumes. What is the difference between these 2 things? In fact, i am trying to understand what the AIX lspv2command does. Thank you in advance. (2 Replies)
Discussion started by: VeroL
2 Replies
Login or Register to Ask a Question