Solaris 10 zone configuration with sysidcfg and dhcp and hostname

Hi
Excuse me if I look like a n00b... it's probably because I'm a n00b.
I've been struggling in the dark for more than 2 days now and I'm wondering if I'm thinking about this all wrong...
I have stand-alone server where I need to run zones. I want to create zones and automagically configure them at boot (read: by running a script). So here's what I need...
A zone
starting from unconfigured state
whose hostname is not the same as the zone name
using corporate DHCP to get its IP address
with DNS config coming from the DHCP server
registering its address the DNS
with a preconfigured root password
(I don't own the corporate DHCP or DNS servers, I can't put my own DHCP or DNS servers on the network.)
I would lke to create the zone, throw some config at it, then boot the zone and walk away. I am using zones with exclusive-IP. I can construct the zones and manually configure them once they're started to have DHCP, my own name, registered IP address with DNS and everything else I have specified above. But I don't want to do it manually...
Sysidcfg seems to do some of what I want but not entirely.
In sysidcfg I can set the root_password, the primary interface using DHCP, DNS server. I can't set a hostname in sysidcfg AND use configure it for DHCP. So the hostname is not what I want it to be after the zone is started and ready to go. The DHCP server is providing the DNS configuration, Solaris does not seem to honour it, but i'll ignore that for the moment.
I have tried various combinations of using sysidcfg, /etc/nodename, /etc/hostname.+interface+ and /etc/dhcp.+interface+ but I can't find any combination that actually works.
I can write to the zonestorage/etc/nodename to set the nodename, that works. But it does not match the DHCP address, so I get prompted for a new name service because it can't find a DNS entry for the name.
I can write to the zonestorage/etc/hostname.+interface+ and /etc/dhcp.+interface+ (to get the system to register its name with the DNS server after getting its DHCP address) but then I get a system with no root password and no DNS configuration, even though they are set in the sysidcfg file.
I can write a script that gets part of the way using sysidcfg and /etc/... files, then boots the zone and then runs a bunch of voodoo via zlogin commands to fix all the stuff that couldn't be done 'properly', but that's not a 'boot and walk away' environment. I can write a script that uses sysidcfg and hacks around with other files in /etc (like nsswitch.conf, resolv.conf), but that just feels likes a dirty hack to fix something that wasn't done properly in the first place.
So where am I going wrong and how do I do it right (within the constraints defined)? Why can't I configure, boot and walk away?
Thanks

Thanks abrante
Thanks for your response!
I don't think the config is messed up after the installation. I think the installation is fine, it's just not what I want :-)
I'm trying to decouple the zonename from the system name and get DNS registrations working. After installation, a DHCP client can get its hostname from DNS but I'm trying to do it the other way around. I want the DHCP client specify its own hostname, get an address from the DHCP server and then register its hostname with DNS. If the system gets its name from DNS/DHCP then I have to configure those to provide the system name and I don't own the DHCP/DNS infrastructure. These zones are for a development/QA environment, so we create and reconfigure these frequently. Hence the need to specify the system name within the zone and register that name in the DNS.
I have tried fiddling with the PARAM_REQUEST_LIST but it does not seem to be working as I expect. :-$ Removing 12 did not help with setting the hostname from the system. DNS does not have a registered name for this system anyway, so even if it tried to get a name for this system, it would get nothing.
I also do want the DHCP to change the DNS server and domain name, but this does not happen even though my dhcpagent includes 6 and 15 in the PARAM_REQUEST_LIST. I still have to set them in the sysidcfg file because it is always ignored in Solaris (S10u8 with 10_Recommended 30-Jul-2010)
As stated, I know I can hack around with the system after it has booted. But I'm trying to configure the system before it starts and let it take care of itself and not have to touch it. Frankly I'm surprised that the sysidcfg does not allow you to set a hostname name when you are using DHCP, that the default DHCP configuration does not register the system name with the DNS server, and the DNS config from the DHCP response is ignored. Even a sys-unconfiged system requires DNS configuration during initial boot, when I know that the DHCP response contains DNS information.
FYI: Windows systems using DHCP work as expected in this respect by default, i.e. set system name, use DHCP --> system gets address from corporate DHCP, DNS settings are set from DHCP information, DNS registration is made for system name.
I'm working around this at the moment... I call my zone by the system name I want, I hardcode the DNS settings in the sysidcfg file and I create the hostname.+nic+ and dhcp.+nic+ files in the zone storage to get the system to register its name with DNS, them boot.
Edited by: cydonian on Aug 19, 2010 7:45 PM

Similar Messages

  • I have a problem with Mail on my Macbook Pro. It is configurated with a gmail account, and now I can't access the mail. Is it possible to reboot the account or..? Please help:)

    I have a problem with Mail on my Macbook Pro. It is configurated with a gmail account, and now I can't access the mail. Is it possible to reboot the account or..? Please help:)

    The question mark means the computer cannot find a bootable volumes so can;t do anything, That, combined with annoying sounds, strongly suggests a failed hard drive.
    You can ask a "genius" at an Apple Rtail Store to test it but I'm pretty sure the drive is kaput. I'm hoping you had your data backed up.

  • Time Zone Conversion with out using function and with out alter

    Hi All,
    I am able to see 1Hr difference in my date fields of SQL output because in UI (User Interface)  date field was stored in BST format but DB time zone is in GMT format so can any one help me to find a solution for 1 hr difference, here i don't have Privileges to alter DB time zone and i couldn't use function as i have so many SQL's and  can't apply that function manually. SO is there any other option to change the DB time zone with out alter it and with out using function.
    Thank you Very Much.

    Hi,
    you need to set time zone in your session, let's do an example :
    alter session set nls_date_format='DD/MM/YYYY HH24:MI:SS';
    CREATE TABLE USERA.T
      SDATE       DATE                              DEFAULT sysdate,
      WITHOUT_TZ  TIMESTAMP(6)                      DEFAULT sysdate,
      WITH_TZ     TIMESTAMP(6) WITH TIME ZONE       DEFAULT sysdate,
      WITH_LZ     TIMESTAMP(6) WITH LOCAL TIME ZONE DEFAULT sysdate
    insert into USERA.T(sdate) values(sysdate);
      commit;
      select * from USERA.T;
    SQL> select * from system.t;
    SDATE
    WITHOUT_TZ
    WITH_TZ
    WITH_LZ
    26/09/2013 11:04:23
    2013-09-26-11.04.23.000000
    26/09/13 11:04:23,000000 +00:00
    2013-09-26-11.04.23.000000
    SQL> alter session set TIME_ZONE ='-7:0';
    Session altered.
    SQL> select * from system.t;
    SDATE
    WITHOUT_TZ
    WITH_TZ
    WITH_LZ
    26/09/2013 11:04:23
    2013-09-26-11.04.23.000000
    26/09/13 11:04:23,000000 +00:00
    2013-09-26-04.04.23.000000

  • Varient configuration with Material type FERT and HAWA

    Hi,
    The requirement is for our Finished product and Trading goods, when we craete a sales order system should ask only about the entered material characerstics like color and size.No varient pricing.
    And latter in change mode also we can see for which color  of the material the sales order  was created.
    So here my material type are FERT ( item category TAN)and HAWA.(Item Category TAN)
    So my question is can i achive it through Varient Configuration.What i know we can create it with KMAT and Irem category group 002.
    Is it mandatory to have pricing in Varient configuration?Can we know in invoice and sales order for which color and size of the material the sales order was created?
    Regards
    Jyoti

    HI
    As per your two questions:
    1) Is it mandatory to have pricing in Varient configuration?
    No, its not mandatory to have pricing in variant config. You can create for colour and size only.
    2)Can we know in invoice and sales order for which color and size of the material the sales order was created?
    You can check the color and size in sales order but not in invoice.
    bye

  • Disk array configurations with oracle redo logs and flash recovery area.

    Dear Oracle users,
    We are planning to buy the new server for oracle database 10g standard edition. We put oracle database file, redo logs, and flash recovery area on each of disk array. My question is what is the best disk array configuration for redo logs and flash recovery area? RAID 10 or RAID 1? Is that possible we can duplicate Flash recovery area to the other location (such as net work drive) at the same time? Since we only have single disk array controller to connect to the disk arrays, I am try to avoid the single failure that will lose archive logs and daily backup.
    thanks,
    Belinda

    Thank you so much for the suggestion. Could you please let me know the answer for my question of FRA redundancy?
    “Is that possible we can duplicate Flash recovery area to the other location (such as net work drive) at the same time? Since we only have single disk array controller to connect to the disk arrays, I am try to avoid the single failure that will lose archive logs and daily backup.”

  • Xorg configuration with nvidia 6800gs agp and flatron l222wt

    my computer is set to run with a l222wt lcd monitor with a 1680x1050 native resolution on a nvidia 6800gs vid card through a analog port.  for wutever reason, my video settings are no longer being detected by xorg anymore after i install xorg and the nvidia driver.  my last arch linux install was fine (i had been using a standard crt at 1280x1024) and when i switched monitors it autodetected the resolution.  however, when i went to reinstall linux, it no longer autodetected and i got horrible settings.  i tried to use the mode setting under the display subsection to set my resolutiona dn still no go.  is their any better way to force it to use my preffered resolution?
    thanks
    Grama
    Last edited by Grama (2008-04-13 19:37:54)

    well all is working now.... i had not ever edited resolutions using the modeline in the monitor section.... all i needed to do was enter my correct modeline settings and bango correct
    as for the ftp install problem i just burned the new 2008.04rc i686 iso and like the arch linux of old it worked once more
    thanks
    Grama

  • ICS with Virtual AP DNS and Shares

    I have configured ICS with an virtual AP for my WLAN adapter.
    This is working well. I can connect to it and I have a internet connection.
    Now my problem is that I have a Server with AD, DNS, DHCP and Shares on my network and I want that the clients have access to these.
    Is it possible to configure the ICS so that the WLAN client will get in the same network as my ethernet adapter? So that they get the IP from my Server and not the local machine. If not, is possible get access to all other services of my server? And is possible
    to get access to the Shares on that server?
    EDIT: I have tested again and it seems everything is working only DNS is not working. I cant get that the clients has the server as DNS and not the local machine

    Hi,
    Did you mean you have configured ICS on your hosted network? 
    How to create a wireless ad hoc for internet connection sharing in windows 8
    http://microwindows8.blogspot.jp/2013/01/how-to-create-wireless-ad-hoc-to.html
    Here is the guide to configure ICS.
    Also I would like to know whether you have set the static DNS server as your own on the other device use the AP.
    Would you please post back more detailed information you want to implement and the draft of your network structure? This will be more helpful for us to identify your issue.
    Kate Li
    TechNet Community Support

  • Connection error -2147217387 with Java RAS SDK and Crystal Server 2011

    Due to a change in operating system, we are required to upgrade our Crystal Reports server from BusinessObjects Crystal Reports Server 11.5 to SAP Crystal Server 2011. We use the Java RAS SDK (RASCore 9.2.2.446 / RASApp 9.0) more or less as described in Java RAS2008-unmanaged exportreport. We use the Crystal Server to export reports stored on disk as PDF files.
    In SAP Crystal Server 2011, the CrystalReports2011ReportApplicationServer is configured with Request Port 1566 and Host Identifier 172.16.4.154 (the local machine). The Crystal Server, report-definition files, and Java VM are all on the same machine.
    The error is
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: XML serialization failed.---- Error code:-2147217387 Error code name:connectServer
         at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.v.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.ab.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.do(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.for(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.for(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
         at ourpackage.OurClass.openReport(OurClass.java:95)
         ... 6 more
    Caused by: java.net.SocketException: Connection reset
         at java.net.SocketInputStream.read(SocketInputStream.java:189)
         at java.net.SocketInputStream.read(SocketInputStream.java:121)
         at java.net.SocketInputStream.read(SocketInputStream.java:203)
         at java.io.DataInputStream.readInt(DataInputStream.java:388)
    The code is as follows.
    ReportClientDocument clientDocument = new ReportClientDocument();
    clientDocument.setReportAppServer("172.16.4.154:1566"); // localhost
    // Error occurs on ReportClientDocument.open method
    clientDocument.open("D:\\path\\to\\report.rpt", com.crystaldecisions.sdk.occa.report.application.OpenReportOptions.refreshRepositoryObjects.value());
    DatabaseController dbController = clientDocument.getDatabaseController();
    dbController.logon("dbuser", "dbpassword");
    ParameterFieldController pfController = clientDocument.getDataDefController().getParameterFieldController();
    Fields fields = clientDocument.getDataDefinition().getParameterFields();
    ParameterField oldParameter = (ParameterField) field.get(0);
    ParameterField newParameter = new ParameterField();
    oldParameter.copyTo(newParameter, false);
    newParameter.getCurrentValues().clear();
    ParameterFieldDiscreteValue newDiscreteValue = new ParameterFieldDiscreteValue();
    newDiscreteValue.setValue("paramValue");
    newParameter.getCurrentValues().add(0, newDiscreteValue);
    pfController.modify(oldParameter, newParameter);
    clientDocument.refreshReportDocument();
    PrintOutputController po = clientDocument.getPrintOutputController();
    InputStream is = po.export(reportFormat);
    Could anyone advise me how to proceed with resolving this error?

    Thanks for the link. I copied the CrystalReportsSDK.jar and logging.jar from the Crystal Server java\lib directory into my project and revised the code accordingly. Now, a slightly different error occurs at the same place:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: {0}. --- Connection reset by peer: socket write error---- Error code:-2147217387 [CRSDK00000039] Error code name:connectServer
      at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(ReportSDKServerException.java:115)
      at com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.request(TCPIPCommunicationAdapter.java:659)
      at com.crystaldecisions.proxy.remoteagent.AdapterCommunicationChannel.send(AdapterCommunicationChannel.java:88)
      at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.request(ReportAppSession.java:382)
      at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.logon(ReportAppSession.java:342)
      at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(ReportAppSession.java:330)
      at com.crystaldecisions.sdk.occa.report.application.ClientDocument.initializeServerConnectionAdapter(ClientDocument.java:627)
      at com.crystaldecisions.sdk.occa.report.application.ClientDocument.initializeServerConnection(ClientDocument.java:658)
      at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.initializeServerConnection(ReportClientDocument.java:1420)
      at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(ClientDocument.java:982)
      at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.open(ReportClientDocument.java:226)
      at ourPackage.OurClass.openReport(OurClass.java:97)
    The revised code is
    ReportClientDocument clientDocument = new ReportClientDocument();
    clientDocument.setReportAppServer("172.16.4.154:1566"); // localhost
    // Error occurs here
    clientDocument.open("D:\\path\\to\\report.rpt", com.crystaldecisions.sdk.occa.report.application.OpenReportOptions.openAsReadOnly.value());

  • Radius, and DHCP DNS info

    I have recently turned on the Radius server, and it seems to work fine, and has taken control of my Airport base station which is great. I only have one problem which is that the DHCP info provided by the server to the clients only seems to give one of the 2 DNS addresses that I have listed in the DHCP server info section. This is rather frustrating as it worked fine with WPA!
    Any thoughts?

    I just upgraded from a 2008 domain to 2012. I followed all the best practices, set up new 2012 DC and transferred all roles to it then removed the 2008 server. I just have the one DC at the moment and it's running both DNS and DHCP. Ever since we've had some odd DNS issues which usually require a reboot of the server to fix. Now at this point I'm digging through DNS and DHCP and seeing that a lot of client IP addresses are not matching up. DNS does not have the correct IP's for several clients. How can I fix dns?
    This topic first appeared in the Spiceworks Community

  • Airport Extreme Configuration with ADSL Libero (Italiano)

    Sorry... this topic is in Italian, please post a question if you need a translation.
    Questo messaggio è per chi ha una Base station Apple Airport Extreme 802.11n.
    Per configurare l'accesso tramite Libero ADSL Flat è necessario, PRIMA DI COLLEGARE LA BASE STATION AL MODEM, impostare il modem sulla modalità BRIDGE. Di solito questa modalità è selezionabile nella scheda WAN delle impostazioni del modem, dove dovrebbe essere impostato PPPoA. Annotate il vostro username (che dovrebbe essere del tipo xxxxx@liberoflat) e la vostra password e poi selezionate la modalità bridge.
    In questo modo il vostro modem sarà completamente "trasparente" ai protocolli PPPoA e sarà utilizzato solo come un "adattatore" per passare dal doppino al cavo ethernet.
    Adesso attaccate la Base station alla spina ed al modem. Impostate nella scheda Internet della utility Airport il metodo di connessione PPPoE. Scrivete negli spazi dedicati l'user name e la password e poi cliccate su aggiorna.
    Il gioco è fatto! Buona navigazione a tutti!
    Per favore, lasciate un messaggio se avete ritenuto utile questo post.
    Notebook   Windows XP  

    When an Airport Extreme is set to Bridge mode, is DHCP off by default? That is, does the APE router also hand out ip addresses?
    When the AirPort Extreme is in bridge mode, DHCP and NAT are turned off, so any devices that are connected to the Extreme will get their IP addresses and network information from the "main" router on the network.
    The network configuration I have is: Cable Modem -> 4 port Leviton Fast Ethernet router -> Apple Airport Extreme
    That should work if the Leviton is configured correctly to provide DHCP and NAT services
    Ideally, I'd like to use the 3 open ports (with 4th one used for Airport Extreme) at times, connect to wireless with Airport Extreme and also use the 3 available ports on the Airport Extreme without any collisions.
    That should be a simple matter providing that things are configured correctly.
    What can I configure on the Airport Express so all of the traffic is routed correctly?
    If you have the Extreme in bridge mode, all the routing is being done by the Leviton router. The Extreme is simply acting as an ethernet "switch" in this type of configuration. It performs no routing functions at all, but can provide a wireless network if you need that capability.
    Message was edited by: Bob Timmons

  • Problem With Cutom Configuration with Object Type

    Dear Guru's
    I am working WebUI, I am facing a problem with Custom Configuration.
    1. The initial requirement to control the visibility for a dropdown event in ERP Quotation.
    2. To this i copied the default configuration to custom configuration with custom Object type and Subtype.
           CONFIG KEY: ZPJQTN
           OBJECT TYPE: ZOTYP_CONFIG
           OBJECT SUB TYPE:  ZSTYPE_CONFIG1
    3. I have created customm fields in enhancement.
    4. Now i chosen my new configuration (ZPJQTN,ZOTYP_CONFIG,ZSTYP_CONFIG1), when i click Show available fields, the custom fields are not showing. Instead the created fields are available at other configuration.
    5. I am able to control the visibility for the standard available fields.But i am not getting the custom created fields
    (Note:  I have created the Object type and Object sub type as follows: SPRO->CRM->UI Framework->Define Object Types
    Object type: ZOTYP_CONFIG Callback class: ZCL_CONFIG_CALLBACK
    Redifned the method: IF_BSP_DLC_OBJ_TYPE_CALLBACK~GET_OBJECT_SUB_TYPES
    Coded as below:
      data: lv_subtype type bsp_dlc_object_sub_type.
      lv_subtype = 'ZSTYP_CONFIG1'.
      append lv_subtype to result.
      lv_subtype = 'ZSTYP_CONFIG2'.
      APPEND lv_subtype to result.
    Now Please suggest me how to achieve this.
    Also please let me know, whether i am following the correct procedure for controlling the visibility.
    Thanks in Advance,
    S.Meganadhan.

    Hi Harshit,
    I added custom fields using AET only.
    I am able to see the field got added in the structure. I am able to access GET and SET methods of the field.
    But the problem is, it is not getting saved. Am i missed any configuration step?
    Please suggest me.
    Thanks in advance,
    Regards,
    S.Meganadhan.

  • JMS Foregin server configuration with two Weblogic 8.1 AS

    Hi,
    I have two Weblogic8.1 AS. Box 1 is configured with JMS connection factory and Topic. MDB is deployed on Box 2, which is configured to listen to Box1 JMS Topic. I am running session bean which is publishing JMS message to the Topic on Box1. Also, I have configured JMS foreign Server on Box2 pointing to Box1 connection factory and Topic.
    MDB throws error "Destination not found", while deploying. I read somewhere in the net, that We need Weblogic with Clustering licence for configuring Foreign JMS Server.
    Pls. help me.
    Regards
    Anand Bobade

    hi... can you please send me the java code for messaging part ...... i want to know how you are sending
    message from server and it is listened at different server?
    I am also in same condition....I have configured JMS foreign server on box 1 .....on box2 my MDB is listening....
    My problem is how do i send a message to a foreign queue which is inside JMS Foreign Server..... I am not able to give any JNDI name to this server... so please send me the code from which you are sending the Message.
    Thanks in advance

  • HELP ME. Client Configuration with Data Guard

    Hi,
    I made a DATA GUARD configuration with Oracle 10g r2 and GRID CONTROL 10.2.0.3.
    I've 1DB OMS, 1 DB primary, 1 DB standby phisical, 1 DB observer, fast-startfailover on.
    Everything works fine: failover, switchover.
    My question is: how the client knows what DB is open when the primary DB fail? How to configure the client can know what the DB is active?
    thanks.

    Configure the client failover in the tnsnames.ora. The How To will be in the Data Gaurd configuration guide you are using.

  • Having issues configuring DHCP and with Redundant router

    Hello everyone
    I am new to Cisco and I am having few problems in configuring my topology in Packet tracer.
    I am having redundancy in router and swithes both,
    I have assigned one layer2 2960 switch as a VTP server and asssigned VLANs from that switch then assigned ports to the hosts in access layer switches.
    Problem 1:  If I take my Router1 off I am unable to ping so the pupose of having redundant router does not serve the pupose.
    Problem 2 : I need to assign DHCP server for the users who will be connecting wirelessly with Access Points, so can I configure DHCP on Access Points which I am unable to do so in Packet tracer any idea how? / Or shall I configure the DHCP on Router1 and Router2 and exclude the addresses I have assigned to all the hosts connected using ethernet.
    Also how can I configure Email server in this tolpolgy and where?
    Thank you
    A.K

    Hi Asif, Jeff is right.
    (1) You need to configure either HSRP (Hot standby routing protocol) or VRRP (Wirtual routing redundancy protocol), or GLBP (Gateway load balancing protocol).
    With either of this config, you will be able to configure 1 logical IP address, which will act as a gateway on your computers. However, both routers will need different IP's (all within the same subnet). You will also need to create multiple HSRP groups to support all your VLAN's. So one HSRP group per VLAN. The logical IP in the HSRP group will act as the default gateway on computers within the VLAN.
    Though I don't think packet tracer supports any of the above configs - FYI it's part of the CCNP Switch sylabus. So the above explaination will make sense after you've got a good understanding of HSRP, VRRP and/or GLBP.
    (2) I would recommend setting both the Router as a DHCP server, and configure the Access Point (AP) with a static IP (disable NAT and DHCP on the AP)
    (3) In packet tracer, choose the Server icon and check it's properties. You should find an option to enable EMAIL server. Connect it to any of the Distribution layer switches.
    Hope this helps get you started on the learning curve :-)

  • Solaris Internet Configuration in VMWare and installation

    Hi !
    I'm really passionate about this unix-solaris thing.
    But these nudges are pulling me back from installing it actually in my hard drive.
    And also there is the Internet configuration problem.
    Problem:1
    I have 2 IDE HDD.
    Primary HDD: 80 GB
    VolumeName-Type-Size
    SystemBoot-Primary/Active/NTFS-100 MB
    Extended Partition:
    VISTA-Logical/NTFS-20 GB
    2008-Logical/NTFS-10 GB
    Data-Logical/NTFS-25 GB
    Music-Logical/NTFS-9.42 GB
    Solaris-Logical/BLANK-10GB .....Blank = No FS. Used Acronis DD10 for it.
    Slave HDD: 40 GB
    Extended Partition:
    XP-Logical/NTFS-10GB
    Fedora9-Logical/ext3-10GB
    SWAP-Logical/SWAP-2GB
    OpenSUSE103-Logical/ext3-15.25 GB
    When I came to HDD configuration stage of installation,
    I selected the pre-selected c0d0(bootdisk) ---Primary HDD/80GB.
    But when I proceeded further it showed me:
    Warning � The initial fdisk information found on the disk
    c0d0 was invalid. Defaulting the entire disk to a Solaris partition.
    So I aborted the installation.
    I tried one more time, by changing the Solaris Blank logical drive to a primary partition.
    But it didn't work.
    Now I think Solaris 10 cannot be installed in a logical drive or more broadly speaking(assuming) it cannot be installed in HDD having logical drives,it should be all primary partitions.
    Please help me on this.
    I'm sick of installing it in VMWare.
    Problem: 2
    How am I supposed to configure my network connection.
    I connect to my ISP using WAN Miniport(PPPOE).
    It allots me dynamic IP(v4).
    I read somewhere DNS should f.root-servers.net and in a magazine, a.solaris.net
    I never came across such a thing in even in linux.
    Problem: 3
    If there is not so �feasible� solution to problem 1, VMWare Workstation comes into play.
    And here too, I need help for configuration of network connection.
    These are the values that I got when I installed Windows XP in the VMWare.
    LAC -Local Area Connection
    LAC � Limited or no connectivity
    IP � 169.254.127.90
    Subnet -255.255.0.0
    Adapter #2 � Bridged
    LAC -2
    IP -192.168.21.132
    Subnet 255.255.255.0
    Gateway -192.168.21.2
    DHCP Srv 192.168.21.254
    DNS/WINS Srv 192.168.21.2
    Adapter#1 � NAT
    LAC � 3
    IP 192.168.209.135
    Subnet 255.255.255.0
    DHCP Srv 192.168.209.254
    DNS � 192.168.209.1
    Adapter #3 � Host Only
    Thanks In Advance !

    Ted-Moran wrote:
    First – Same process runs on both local and global zone.
    On the SPARC unit (SGDSZ-IS) where Ipfilter and the SGD’s are running I have great access to the internet, but I am seeing that when I try to run a browser in a Local Zone the process for mozilla is runing in the Global zone.A process can only be in one zone at a time, but if you run 'ps' in the global zone, it can see processes in all zones.
    In the global zone, you can run something like the following:
    ps -e -o 'pid,zone,args'. That will show the zone associated with any particular process.
    Mozillia process running in both the global and local zones.
    ps–ef | grep moz in both the local and global zone confirms this.
    Global Zone
    # uname -a
    SunOS SGDSZ-IS 5.10 Generic_120011-14 sun4u sparc SUNW,Sun-Fire-480R
    # ps -ef | grep moz
    operator 12025 1 0 12:00:53 ? 0:00 /bin/ksh -p /usr/sfw/bin/mozilla[...]
    Local ZONE 2
    # uname -a
    SunOS OPS-SGD-IS 5.10 Generic_120011-14 sun4u sparc SUNW,Sun-Fire-480R
    # ps -ef | grep moz
    operator 12025 634 0 12:00:53 ? 0:00 /bin/ksh -p /usr/sfw/bin/mozillaThe global zone doesn't correctly show the parent relationship with all processes within zones.
    Darren

Maybe you are looking for

  • How to change/update one page and all others at once?

    I'm quite new to Dreamweaver. I am trying to add some things to my sidebar and I would like it to appear on all of my other pages. I used a template for the index(homepage) then I just saved the page so I could create other pages for it to have the s

  • How to wait until the 1st part of the processing is done

    Hi, I had a hard time to combine two parts of processing in one .vi file, and thus would like to get some advice/help through the forum. Attached is the partial finished vi file I made. You can see that it is composed of two parts. The upper part is

  • Not showing using ios on facebook posting

    when am posting in facebook its not showing ios

  • Where can i find the shuffle playlist?

    Hi, currently i am using iTunes 9.0.2, before i update to this version, when i play shuffle, i can see a playlist mix with all shuffle songs (which i know whats next shuffle song, and if i dont like it i can simply click shuffle and it will update a

  • Critical problem: XMLParseException in oc4j

    While deploying a COTS product in OC4J we have encountered the following XMLParseException: oracle.xml.parser.v2.XMLParseException: Namespace prefix 'xdsig' used but not declared.      at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:205)