Possible  not to specify disk name in Solaris 11 Automated Installer?

Hi,
sorry if this has been asked before, I searched for it but couldn't find the answer.
In Solaris 10 jumpstart, you could use rootdisk.s0 , rootdisk.s1 to specify creating s0 on the disks. but as showing in http://docs.oracle.com/cd/E23824_01/html/E21799/gklhc.html#gllbk , when using js2ai ,
still need to use the format like:
<disk_name name="c0t0d0" name_type="ctd"/>
is it possible to just say " create 1st slice with 20g on 1st and 2nd disk , and make them into zpool mirrorred as zfs root " , because the problem different servers have different names for disks,
some are c0t0d0 , some are c0t2d0 , on some servers ,it use the long name c0t5xxxxxxxxxxx , so is there a way to use some generic name for disks without using the actual name ?
Thanks.
Edited by: clay215 on Sep 28, 2012 11:52 AM

thanks for the reply.
I do use ZFS root but still want to create slice , on a server with 4 disks (say 300G disks) for Solaris 10 , I would use the following setup:
slice 0 of each disk to be 20 G , slice 7 with rest of the space.
I would use slice 0 of disk 0 and disk 1 to be mirrored for root , and slice 7 of all the 4 disks to be the data zpool in RAIDZ. slice 0 of disk 2 and disk 3 are not used, sometimes I add them as swap if required.
I used js2ai to generate AI manifest like this :
<target>
<disk>
<disk_name name="c0t1d0" name_type="ctd"/>
<slice action="create" force="true" in_vdev="rpool_vdev" in_zpool="rpool" name="0">
<size val="20gb"/>
</slice>
</disk>
<disk>
<disk_name name="c0t0d0" name_type="ctd"/>
<slice action="create" force="true" in_vdev="rpool_vdev" in_zpool="rpool" name="0">
<size val="20gb"/>
</slice>
</disk>
<logical nodump="false" noswap="false">
<zpool is_root="true" name="rpool">
<vdev name="rpool_vdev" redundancy="mirror"/>
<zvol name="swap" use="swap">
<size val="2gb"/>
</zvol>
<zvol name="dump" use="dump">
<size val="2gb"/>
</zvol>
</zpool>
</logical>
</target>
which would work fine, the question is if how to use a generic name to replace the above "c0t0d0" disk , so the manifest would work on servers that have disks named "c2t0d0"or other names ?
Thanks

Similar Messages

  • Ichat not connecting "specified host name is not valid"

    i have been getting the above message when i try to connect to ichat since about mid december. after trying up to 10 times it usually at the end connects fine (without me changing anything).
    does anyone have an idea what might be going on ?
    thanks !
    pia

    oh boy.
    afraid we need something bigger than a stick..
    changed to login.glogin.messaging.com but then got no connection at all("connection timed out"). deleting com.apple.ichat.AIM.plist unfortunately did not help either.
    have now gone back to login.oscar.aol.com and managed to log in with the 3rd try...
    yesterday by the way my ichat connected with the 1st try - i already thought there would have been something weird at the aim server end, which they finally would have solved. but no such luck..
    bugger !
    pia

  • Fail to install 9iAS9.0.2-a fully qualified hostname has not be specified

    hello
    in order to study oracle9iAS,i download the 9iAS9.0.2 from your website,but at the first disk installation,it tell me:
    "installation has detected that a fully qualified hostname has not be specified for this host,oracle9i Application server installation need a default domain name to be specified..........................."
    and my host file under "C:\WINNT\system32\drivers\etc" is as following:
    # Copyright (c) 1993-1999 Microsoft Corp.
    # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    # This file contains the mappings of IP addresses to host names. Each
    # entry should be kept on an individual line. The IP address should
    # be placed in the first column followed by the corresponding host name.
    # The IP address and the host name should be separated by at least one
    # space.
    # Additionally, comments (such as these) may be inserted on individual
    # lines or following the machine name denoted by a '#' symbol.
    # For example:
    # 102.54.94.97 rhino.acme.com # source server
    # 38.25.63.10 x.acme.com # x client host
    127.0.0.1 localhost
    who can help me to solve the problem?
    thank you

    You should enter another ip-address like
    199.999.99.0 hostename.domain
    127.0.0.1 localhost
    If you don't intend to publish the website outside your own domain you can use a localdomain If you do want to be able to see the website from outside then you will need a fully qualified internet adress like web.oracle.com.
    Try a ping from a commandbox (start > run > cmd) and you can see what adress your machine has now.
    If you have windows 2000 SP 3 operating system don't even begin trying to install Portal
    Oracle Portal is not working op service pack 3.
    Regards
    Arnoud
    Senior Oracle Internet Consultant
    http://www.thedoc.nl

  • Change ASM DISK NAME in 11.2 version

    Hi,
    Is it possible to change ASM DISK NAME for example in diskgroup DATA01. I added disk without NAME, and system-choosen NAME is allocated. Can I set it to e.g., ORCL:DATA09 . Currently its DATA09_009.
    Please suggest your views.
    Thanks a lot.
    Best Regards                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    You can change the label of disk using oracleasm renamedisk; oracle discourages it
    I will changing the label of disk from CLONE1 to CLONE1a and CLONE2 to CLONE2a of diskgroup CLONE
    SQL> col disk_number for 99
    SQL> col name for a15
    SQL> col label for a15
    SQL> col path for a30
    SQL> select disk_number,name,label,path from v$asm_disk;
    0 DATA CLONE1 ORCL:CLONE1
    1 LOGS CLONE2 ORCL:CLONE2
    ASMCMD> lsdsk -G CLONE
    Path
    ORCL:CLONE1
    ORCL:CLONE2
    ASMCMD> umount CLONE
    [root@otest]# /etc/init.d/oracleasm force-renamedisk CLONE1 CLONE1a
    Renaming disk "CLONE1" to "CLONE1a": [  OK  ]
    [root@otest]# /etc/init.d/oracleasm force-renamedisk CLONE2 CLONE2a
    Renaming disk "CLONE2" to "CLONE2a": [  OK  ]
    ASMCMD> mount CLONE
    ASMCMD> lsdsk -G CLONE
    Path
    ORCL:CLONE1A
    ORCL:CLONE2A
    select disk_number,name,label,path from v$asm_disk;SQL> SQL> SQL> SQL>
    0 DATA CLONE1A ORCL:CLONE1A
    1 LOGS CLONE2A ORCL:CLONE2A
    Edited by: vlethakula on Jan 18, 2013 11:48 AM
    Edited by: vlethakula on Jan 18, 2013 11:56 AM

  • Generic service 'Analysis Services (TEST1)' could not be brought online (with error '1060') during an attempt to open the service. Possible causes include: the service is either not installed or the specified service name is invalid.

    Hi,
    We have a cluster with 2 nodes. Everything works fine in Node1. When I try to failover TEST1 database to Node-2 it fails with this message.
    Generic service 'Analysis Services (TEST1)' could not be brought online (with error '1060') during an attempt to open the service.  Possible causes include: the service is either not installed or the specified service name is invalid.
    Any help is much appreciated.
    Thanks

    Hello,
    The error message is pretty straight forward, it's saying either the service isn't installed or it's not installed as the same service on that node. Did you install analysis services on the second node (from the error it seems like it isn't)?
    Sean Gallardy | Blog |
    Twitter

  • Error 32812 (Specified Tag Name not Defined) from FP Read

    I built an application using LabVIEW 7.1 and FieldPoint 4.1.  It
    performed well until about a week ago.  Suddenly, I started getting
    error 32812 (Specified Tag Name Not Defined) when doing an FP Read to
    read all the channels on an FP-RLY-420.  This is installed at a
    client's site, but my client assures me that nothing changed in the
    computer configuration.  There is a dual serial card installed (SIIG
    Cyberserial DualPCI dual 16550
    RS232 Serial I/O Card), which does seem to cause problems (mouse jumps
    erratically), and I wonder if this card could be contributing to the
    problem, but I'm not sure why I would get the specific error message
    I'm getting.
    In looking for info on the problem, I did find an article on
    registering the MIS files, but I have tried selecting "Find Devices"
    through MAX while logged on as an admin, and the error still occurs.
    If anyone has any ideas as to what could be causing the problem, it would be greatly appreciated.
    Thank you,
    Jason

    Hello Jason,
    I think that the error you are seeing could be caused by either 1) a
    mismatch between the tag names saved on your computer and the actual
    channel names on the module, or 2) a problem with how the serial port
    is communicating with the module (only applies if you are using a
    serial communication module, as opposed to an Ethernet module). 
    For the first issue, you have already tried to reconcile any
    differences in tag names by reregistering the MIS files.  Since
    that didn't work, I would recommend trying to recreate your entire
    FieldPoint system in Measurement & Automation Explorer (MAX),
    including the IAK file.  I know it is kind of extreme, but I would
    recommend just deleting your FieldPoint configuration in MAX, deleting
    the IAK file, and resetting the address and recreating your
    configuration. 
    I think that troubleshooting a serial communication problem could be a
    little more difficult.  I would recommend browsing through the
    following documents for some possible troubleshooting ideas.
    FieldPoint Serial Network Module Common Problems
    Let us know if this solves the problem or if you have any further question.
    Regards,
    Travis Gorkin
    Applications Engineering
    National Instruments
    www.ni.com/support

  • RDS Gateway + Smart Card Error [ The specified user name does not exist.]

    I have the following Windows Server 2008 R2 servers:
    addsdc.contoso.com, AD DS Domain Controller for contoso.com
    adcsca.contoso.com, AD CS Enterprise CA, CDPs/AIAs published externally.
    fileserver.contoso.com, RDS Session Host for Administration enabled
    rdsgateway.contoso.com, RDS Gateway enabled
    tmgserver.contoso.com, 'Publishing' rdsgateway.contoso.com but with pass-through authentication
    And the following Windows 7 PCs:
    internalclient.contoso.com
    externalclient.fabrikam.com
    There's no trust between the domains, the external client is completely separate on the internet but the CA certificate for contoso.com has been installed in the trusted Root CA store. All servers have certificates for secure RDP.
    I enrolled for a custom 'Smart Card Authentication' certificate with Client Authentication and Smart Card Logon EKUs from the CA, stored on my new Gemalto smart card using the Microsoft Base Smart Card CSP.
    From internalclient.contoso.com, I can RDP to fileserver.contoso.com
    using the smart card just fine with no certificate errors.
    From externalclient.fabrikam.com, I can RDP to fileserver.contoso.com
    via rdsgateway.contoso.com using a username and password just fine with no certificate errors.
    From externalclient.fabrikam.com, I can RDP to fileserver.contoso.com
    via rdsgateway.contoso.com using the smart card to authenticate to the gateway, and a username and password to authenticate to the end server, just fine.
    BUT from when using a smart card to authenticate to the end server via the gateway, it fails with:
         The specified user name does not exist. Verify the username and try logging in again. If the problem continues, contact your system administrator or technical support. 
    When I move the client into the internal network and try the connection again (still via the RDS Gateway), it works fine - the only thing I can think of is being outside the network and not being able to contact the AD DS DC for Kerberos is causing the issue
    - but I'm pretty sure this is a supported scenario?
    The smart card works fine internally, the subject of the certificate is the user's common name (John Smith) and the only SAN is
    [email protected] which matches the UPN of the user account as it was auto-enrolled.
    Does anyone have any ideas?

    I had a similar issue where I am using a smart card through a Remote Desktop Gateway. I had to disable Network Level Authentication (NLA) on the destination Remote Desktop Server. If anyone has another way around this, I'd appreciate hearing it. I'd prefer
    to use NLA.

  • Posting is not possible for the specified company code.

    Hi SRM Gurus,
      We have a four company codes in our org.structure and if we try to post manual invoice for a particular company code with its currency, we are getting this error :
    "Posting is not possible for the specified company code "
    We have all company codes defined and inherited for the particular user in BUK and we get all the company codes in the F4 help of this user in BBPIV02 -->Basic data.
    Any suggestions pl.
    I doubt this particular Cocode is deactivated for invoice posting in backend. Is it possible ?
    Kindly suggest.
    Reg.,
    Sridhar.

    Hi
    Which SRM version are you using ?
    Are you getting this error for a praticular company code only or for all the comapny codes ?
    <b>Please read this -></b>
    Since you are trying to create Invoice with PO did you check the Vendor Root there is a attribute for company code. Please maintain the same, if not maintained.
    Refer the link below for details.
    Re: Company code for system missing in user attributes
    <u>Other related links -></u>
    Try to change the chart of acct info in OBY6 for a company code that was copied from SAP template, there is no Financial posting or any other posting in this company code.
    Re: Posting Period Error in Confirmation
    Hope this will help.
    Regards
    - Atul

  • One of the specified disk images could not be opened

    I cannot believe how instable my system is. I switched to Mac to get a reliable system, but I cannot do without Windows entirely, hence my heavy use of VPC.
    Today I got the small grey screen "You need to restart your computer". I was running VPC at the time. All apps were closed except Windows Explorer (the file system). The cause was merely unplugging my broadband connection. Wow!
    On rebooting VPC I got:
    "One of the specified disk images could not be opened. The disk image file is not the correct file type or uses a file format that is unsupported by this version of Virtual PC."
    I "detached" my "drives" 2+3, which were pointing to my Drive2.vhdp and Drive3.vhdp data "drives" and tried again. No luck.
    Drive 1 was pointing to Disk1.vhdp, which is a part of my Windows 2000.vpc package. I don't believe that it was pointing there before the crash.
    # side note #
    (The Windows 2000.vpc package is an old installation that I don't use but have not deleted. I currently use one called: "Windows 2000 copy 1-011105") which might or might not be a copy of "Windows 2000.vpc." I've had so many problems, it's hard to say.
    I then tried and successfully detached the Disk1.vhdp and received a warning:
    "The hard drive data previously used by Drive 1 is no longer contained in this PC document. The data has been moved to a separate Virtual Hard Drive Document "Windows 2000 copy 1-011105 Disk1.vhdp".
    On examining the above package I find:
    BaseDrive.vhd 14.45GB (size about right) dated last night when I last closed VPC
    MainPackageFile Alias
    UndoDrive1.vud dated at the time of the problems.
    On examining my "Windows 2000 copy 1-011105.vpc7 I find:
    Configuration.plist
    IconCache
    MainPackageFile Alias
    StartMenu.plist
    Do you have a suggestion as to how I can rescue my above mentioned BaseDrive.vhd please? This is more recent than my last back-up.
    Many thanks in advance.

    Problem solved.

  • What's the reason for this message, "A server with the specified host name could not be found" ? I'm using iPhone 4s, 16gB, iOS 7.0.4

    I get a pop-up message saying "A server with the specified host name could not be found", whenever I try to access any streaming websites/apps or even WhatApp over Wi-Fi and I cannot access the specific THING for that moment, and I've tried switching Wi-Fi On and Off both in my Phone and also in the Router. I got an internet connection and a Wi-Fi router just before two days, and it's happening since. I got the internet speed around 80kbps and i can easily stream YouTube videos except sometimes, I receive that annoying message. I can't even browse the internet in Safari, which says "No Internet Connection"(Even though the Wi-Fi is connected), and I can access it after somewhile (say 10 minutes, it'll be perfectly alright). I use iPhone 4s. And everything about the internet connection is totally fine in my Computer, but not in my iPhone, as I've explained the issues, above. If there are any technical settings that I should change/modify, either on my computer(Windows 7 OS) or in my iPhone(iOS 7.0.4), PLEASE let me know
    I hope I've provided enough information for the reader to understand my point. (I apologize for my verbal mistakes, if there are )
    THANKS

    Hello Paneesh,
    Thank you for the details of the issue you are experiencing with Wi-Fi on your iPhone 4s.  I recommend the following steps:
    Be sure you're in range of your Wi-Fi router (access point).
    Tap Settings > Wi-Fi and turn Wi-Fi off and on. If your W-Fi setting is dimmed, follow these steps.
    Confirm that your Wi-Fi router and cable or DSL modem are connected to power, turned on, and connected to the Internet. If not, refer to your network administrator or Internet service provider (ISP) for assistance.
    Restart your iOS device.
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected.
    Tap and Forget this Network.
    Try to connect to your desired Wi-Fi network.
    Note: You may need to enter your Wi-Fi password again if your network requires one.
    Turn your Wi-Fi router off and on2. If your ISP also provides cable or phone service, check with them before attempting this step to avoid interruption of service.
    Update your device to the latest version of software.
    Update your Wi-Fi router to the latest firmware2. For AirPort Base Stations, install updates using the AirPort Utility.
    If the issue is still unresolved Wi-Fi disconnects or signal strength is less than expected
    Move closer to the Wi-Fi router (access point).
    Check for sources of potential interference.
    Remove any case, stand, or other accessories from your iOS device and see if signal strength improves.
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings including
    previously connected Wi-Fi networks and passwords
    recently used Bluetooth accessories
    VPN and APN settings
    You can find the full article here:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/ts1398
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • I have received an error message from an attached USB hard drive (not Time Capsule) stating "Disk Name" cannot be repaired. Back up your data and reformat. I opened the Disk Utility in an attempt to repair the disk but am advised that the disk "could not

    I have received an error message relating to an attached USB hard drive (not a back up and not Time Capsule) advising that "disk name" cannot be repaired. Back up your data and reformat. When I attempted to verify the disk with Disk Utility, I was advised that the disk could not be unmounted. What can I do to repair the disk?
    Write Status is Read/Write
    SMART Status is Not Supported
    Partition Map Scheme is Master Boot Record
    HELP!
    timothy7712

    You need something stronger, such as DiskWarrior, TechTools Pro, or Data Rescue.

  • Error:"The specified tag name was not found"

    Hello:
    My problem is the FieldPoint error message in LabWindows/CVI v6.0.
    When hook up with Ethernet module(FP-1600), NO Problem on the source code, specially item Name "All". See the actual code.
    if(status = FP_CreateTagIOPoint (ServerHandle, resourceName, deviceName, "All",&IOPointHandle))
    But When hook up with RS-232C Module(FP-1000), occured error. The error code is 32812, that means "The Specified tag name was not found."
    What makes this error? Why item name "All" makes the error when using FP-1000?
    Please help me.
    Thank You.

    Make sure the resourceName and deviceName match what is in FieldPoint Explorer. See the following KB:
    http://digital.ni.com/public.nsf/websearch/02EB73D02715981A8625682B00774F8F?OpenDocument
    Also, I have seen this error when targetting serial modules with FieldPoint Explorer open. Make sure FP Explorer is closed.

  • HT201240 I have a new macbook pro that did not have a disk, OS X was pre installed  so how can i change the administrators name and password, it did not migrate properly from my hard drive.., so how do i

    I have a new macbook pro that did not have a disk, OS X lion 7.3.4 was pre installed  so how can i change the administrators name and password, it did not migrate properly from my hard drive.., now there is some mysterious administrator name and or password??

    See #5
    Step by Step to fix your Mac

  • Can someone please help me!! I keep trying to download itunes but get a message that and error has happened 2/3 and check window activity. Then it shows A sever with the specified host name could not-- and then it cuts off the rest of the message.

    I keep trying to download itunes in Safari but get a message that and error has happened 2/3 and check window> activity. Then it shows A sever with the specified host name could not…… and then it cuts off the rest of the message. I have reset Safari and still nothing!!!
    Very frustrated!!!

    It's downloading with Firefox 3.6.27 as I write.  It's probably more a Safari problem in your case for which people on the Safari forum could provide suggestions.  Or mybe just try again in a while as I suspect everybody is downloading right now.

  • My new ipod nano does not sync the ipod name cannot be synced the required disk cannot be found

    my new ipod nano does not sync the ipod name cannot be synced the required disk cannot be found

    Wow .... so you are syncing via WiFi when you sync .... would that be correct?
    I would still quit iTunes and then restart and see what happens. The iPad and iTunes must be playing some weird games.
    If you do sync via WiFi (I do), I think you are better off closing iTunes when you are done - unless of course you are using iTunes for Home Sharing or something like that. My experience is that if you leave iTunes running, the iPad and iTunes just start sending weird signals back and forth.
    Since I started Wifi syncing, I have seen messages in iTunes that made absolutely no sense at all. Anyway, that's my take on it. If you do not WiFi sync, then I have no clue why you are getting these messages.

Maybe you are looking for

  • Purchase order print spool

    Hello Team,          When P.O is created depending upon the SPRO settings it is subjected to Release Strategy (i.e approval flow of po  on conditions like price, plant etc  through hierarchy from low level approver to high level approver). Currently,

  • Can we publish swf file made with InDesign in .exe?

    I made a SWF file with InDesign. I would like to publish it in .exe? Is it possible?

  • Clearing document in FB05

    Hi, The customer has posted a clearing document in FB05 on 10.09.2009 as posting date and document date. but the clearing date has taken to 30.09.2009. But the clearing date should be same as posting date i.,e 10.09.2009. so what could be the reason

  • NI 9401 & Status Code: -50103

    Hello Everyone, Software: Visual Studio 2003, VC++ Hardware: cDAQ - 9172 I have 2 NI 9401 modules .  1st module is configured as CO while the 2nd module is a CI.  I tried using them in a single chassis and even on separate chassis but I still have th

  • Newbie: Jdev's intelisense not working for HOUR_OF_DAY

    I'm using Jdev preview 4. Suppose I have below code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <%@ page contentType="text/html;charset=windows-1252"%> <html> <head> <meta http-equiv="Conten