Ldom problem


 
Thread Tools Search this Thread
Operating Systems Solaris Ldom problem
# 8  
Old 12-18-2015
Gents,
Are there any guides to installing from an ISO? I get as far as it asking for where to load the media from and then can't get past it.

It seems to want to do an NFS install but then how do you tell it where to load the media from?

Sorry to be pain

Thanks

Martin
# 9  
Old 12-18-2015
How to build a install disk from an iso.

no need to apologize... you are learning. It's rather a steep learning curve you have to change your thought process on how you think about interfacing with hardware.

Think of it this way, the LDOM doesn't know about any hardware that the primary OS and LDM don't tell it about. This includes harddrives, storage media (like CDROMs or ISO files) and even network interface cards.

in order for you to install from an .iso file you have to make the .iso available to the LDOM as a virtual disk.

to do this there are two steps.

#1. you have to add the .iso as virtual disk device (vdsdev) like this:

Code:
root@server:~# ldm add-vdsdev

Usage:
        ldm add-vdsdev [-f] [-q] [options={ro,slice,excl}] [mpgroup=<mpgroup>]
                <backend> <volume_name>@<service_name>

root@server:~# ldm add-vdsdev /var/tmp/sol-11_1_14_5_0-text-sparc.iso install@vds0

root@server:~# ldm list -o disk primary

NAME
primary

VDS
    NAME             VOLUME         OPTIONS          MPGROUP        DEVICE
    install                                                        /var/tmp/sol-11_1_14_5_0-text-sparc.iso

This is assuming you have already created your virtual disk server (vds0) and the LDOM itself.

#2.Next you will have to export that vds device as a disk to the LDOM, like this:
Code:
root@server:~# ldm add-vdisk

Usage:
        ldm add-vdisk [timeout=<seconds>] [id=<diskid>]
                <disk_name> <volume_name>@<service_name> <ldom>

root@server:~# ldm add-vdisk install install@vds0 ldom
root@server:~# ldm list -0 disk ldom

Usage:
        ldm list [-e] [-l] [-S] [-o <format>] [-p] [<ldom>...]
                'format' is one or more of:
                cmi,console,core,cpu,crypto|mau,disk,domain,memory|mem,
                network|net,physio,resmgmt,serial,status

root@server:~# ldm list -o disk ldom
NAME
ldom

DISK
    NAME             VOLUME                      TOUT ID   DEVICE  SERVER         MPGROUP
    swap             ldom_swap@vds0                  4    disk@4  primary
    disk0            ldom_disk0@vds0                 0    disk@0  primary
    disk1            ldom_disk1@vds0                 1    disk@1  primary
    install          install@vds0                     2    disk@2  primary

now you have an install disk to boot from...

Last edited by os2mac; 12-22-2015 at 06:28 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Solaris

Ldom guest volumen problem t8 Solaris 11

hello to everyone. im new member here. i have a problem with a guest ldom on solaris 11 sparc in a T8. I need to access to disk vds assigned to guest domain but from control domain. I want to modify a parameter in inittab of the guest domain because start guest domain give me problems... (2 Replies)
Discussion started by: Liam_
2 Replies

2. Solaris

ZFS LDOM problem on Solaris 10

Apologies if this is the wrong forum.. I have some LDOMs running on a Sparc server. I copied the disk0 file from one chassis over to another, stopped the ldom on the source system and started it on the 2nd one. All fine. Shut it down and flipped back. We then did a fair bit of work on the... (4 Replies)
Discussion started by: tommyq
4 Replies

3. Solaris

ldom patching

Greetings everyone! I have the task of patching six ldoms and two control domains. I have never done this before and would like to know of any pitfalls or "gotchas" I may encounter. I have been looking online but have found very little about patching ldoms. Thank you all. (4 Replies)
Discussion started by: desertdenizen
4 Replies

4. Solaris

VxVM5.1 in a Ldom

Has any one installed and used VxVM5.1 in a Ldom .. i was able to install it but when i try to initialize a disk it gives me following error as the disks are imported from ZFS backend .. :-( and they does not show the target no. /etc/vx/bin/vxdisksetup -if c0d2s2 VxVM vxdisksetup ERROR... (0 Replies)
Discussion started by: fugitive
0 Replies

5. Solaris

ldom and zone

hi, what is the difference between ldom and zone. can we install any other os than sun in ldom. thanks, snj. (2 Replies)
Discussion started by: snjksh
2 Replies

6. AIX

ldom and lpar

hi, Plz let me know if the concept of sun ldom and aix lpar is same or not. thnx, snj (1 Reply)
Discussion started by: snjksh
1 Replies

7. Solaris

Autosys on LDOM

Has anyone configured an Autosys server to run on a Solaris LDOM? I can't think of any obvious reason why there would be a problem with it, but.... Jerry (0 Replies)
Discussion started by: JerryHone
0 Replies
Login or Register to Ask a Question