How to Add a Physical Interface After Installation in Solaris 10

How to Add a Physical Interface After Installation in Solaris 10
Hi Java Specialist,
I am trying to setup a network interface with the following steps on a new fresh Solaris 10 installation using the instruction titled How to Add a Physical Interface After Installation in Solaris 10 3/05 ONLY from http://docs.oracle.com/cd/E19253-01/816-4554/esxhb/index.html:
1. # ifconfig lo0 plumb up
2. # ifconfig lo0 10.56.8.101 netmask 255.255.240.0. This was the working Windows DHCP environment prior to installing Solaris
10 on top of it.
3. # Added saturn to /etc/hostname.lo0.
4. # Added 10.56.8.101 to /etc/inet/hosts
5. # Added 10.56.0.0     255.255.240.0 to /etc/inet/netmasks
6.# reboot
However, the following errors kept recurring:
svcs –xv …. unable to qualify my own domain name,
failed with exit status 69.
Any idea on what other steps have I missed? I was hoping to only do step 3 – 6 for the change to apply permanently.
Many thanks,
Jack

Hi Java Specialist,... in a Solaris forum?
1. # ifconfig lo0 plumb upThe loopback connection (your lo0)is NOT a physical interface. There are no hardware components for it. Nor can I think of any reason why it should ever be anything other than the default 127.0.0.1
Use your favorite Internet search site (such as Google, Bing, Yahoo) to learn more about it.
2. # ifconfig lo0 10.56.8.101 netmask 255.255.240.0. This was the working Windows DHCP environment ...I have no idea how a nonexistent software construct gets a DHCP address in a MS Operating System, unless you are confusing this with the "Microsoft Loopback Adapter" which is an utterly different concept. Again, go see what Google tells you.
<br>
<br>
<br>
... completely unrelated to configuring an IP...
unable to qualify my own domain nameAgain, search the Internet or even search these forums with that string of words.
Go back through your two most recent posts and read the responses again.
They seem to both be on the same topic as this new one -- configuring an IP on something.
How to initialize new IP address on secondary interface permanently
How to change IP address permanently on Solaris 10
When you've done all that, then come back and tell us what you are actually trying to do.

Similar Messages

  • How do I install additional locals after installation of Solaris 10?

    Hi,
    I installed Solaris 10 withouth choosing to add Norwegian locale. I really don`t care for Norwegian messages, but it seems that X will not let me choose norwegian keyboard layout if I don`t install the Norwegian locale. My question is: How do I install the Norwegian locale after initial installation?
    locale -a gives me:
    C
    POSIX
    iso_8859_1
    And I guess I need no_NO.

    If you are using a graphics terminal you may want to try using the "prodreg" utility, as root?, to add en_US support. It appears to involve numerous packages, at least for 64 bit support.
    Good luck,
    John

  • How to add date with month after convert number to month?

    How to add date with month after convert number to month?
    Month Date Result
    24 21/11/09 24*(21/11/09)
    I want to add both the column and result should be 21/11/11
    Thanks
    Nihar

    Hmm,
    Because, you are using YYYY for '09'.
    SQL> ed
    Wrote file afiedt.buf
      1* select to_char(to_date('10/01/09','DD/MM/RRRR'),'DD/MM/YYYY') from dual
    SQL> /
    TO_CHAR(TO
    10/01/2009
    SQL> ed
    Wrote file afiedt.buf
      1* select to_char(to_date('10/01/09','DD/MM/YYYY'),'DD/MM/YYYY') from dual
    SQL> /
    TO_CHAR(TO
    10/01/0009Or with Add_months
    SQL> ed
    Wrote file afiedt.buf
      1* select to_char(add_months(to_date('10/01/09','DD/MM/YYYY'),36),'DD/MM/YYYY') from dual
    SQL> /
    TO_CHAR(AD
    10/01/0012
    SQL> ed
    Wrote file afiedt.buf
      1* select to_char(add_months(to_date('10/01/09','DD/MM/RRRR'),36),'DD/MM/YYYY') from dual
    SQL> /
    TO_CHAR(AD
    10/01/2012-Arun

  • How to add Oracle Partition Component after the RDBMS Installation

    Hi,
    I have been installed Oracle 11g R2 in Suse Linux 10 (64 bit), while in installation i deselect the Partition option. Now i need to bring the Oracle Partition option to my Oracle RDBMS.
    Please help me how to bring the Partition Option once again into my Oracle Server.
    Thanks in Advance,
    Baalaji V

    Same senario i have here, But i want to know how to install the Partition option after the RDBMS installation.
    Since i have been installed the Oracle 11g R2 Ent Edition without Partition option, Now i need to install the same.
    Thanks.

  • How to automatically initialize Firefox immediately after installation

    I am installing Firefox from the Fedora YUM repositories via Kickstart. After installation, the .mozilla directory and its subdirectories do not exist. Although I have the Firefox configuration files I want to install, I don't have a place to put them. And since Firefox seems to create a .mozilla/firefox/*default directory with a random name, I can't easily just create the directory and then insert my files. Is there a way to make this fully automatic?

    Some information is listed in this old archived file (link in the External links section in http://kb.mozillazine.org/user.js_file)
    * http://www-archive.mozilla.org/catalog/end-user/customizing/briefprefs.html

  • How to add vlan virtual interface on a Catalyst Using SNMP

    Hi,
    I need some assistance in locating the  mib/variables to allow me to add and remove vlan
    virtual interface on Catalyst 3759G. If I understand correctly CISCO-VTP-MIB can not  carry
    out this requirement.
    Is there another way of accomplishing  this using SNMP ?
    Thanks,
    Zhou

    You cannot add a new interface directly using SNMP.  However, you can use the CISCO-CONFIG-COPY-MIB to copy a config snippet into the running configuration which can create a new VLAN interface.  See http://www.cisco.com/en/US/tech/tk648/tk362/technologies_configuration_example09186a0080094aa6.shtml for more details.

  • How to add a GUI interface to My program?

    Hi, I wrote a game program, now, I need a GUI interface for my game to let others to use it esaily, but I have no idear how to do it, where should I add the AWT or Swing code to the game code, if possible, can I use some tools for this task, I think it is much esaier for me to use tool, can I use JBuilder4.0, or visual J++6.0, but I know that visual J++ not support jdk1.3, right? Any other good tool for AWT to use, if possible, where to download please?
    thank you!! ^_^

    Generally your GUI code might be in a class extending JFrame, for example. It is good practice to try to keep your GUI separate from the rest of your application. So you can control your application from the GUI by public methods in the main part of the code, calling them from the GUI.
    This is best done by passing an instance of the main application to the GUI when it is constructed. For example:
    public class Host {
      public static void main(String[] args) {
        new Host();
      public Host() {
        GUI iface = new GUI(this);
      public doSomething(int value) {
         // A method that does something,
         // called from the GUI
    public class GUI extends JFrame implements actionListener {
      private Host app;
      public GUI(Host parent) {
        app=parent;
        // Do more stuff here
      // Rest of the GUI here
      public void actionPerformed(ActionEvent ev) {
        // Method called as a result of a button press
        // or something...
        app.doSomething(42);
    }Hope this helps a bit. Look around on the web for good GUI tutorials.

  • How to add swatch library to after effects cc?

    as the title says…. how do i add a swatch library to after effects in creative cloud? i don't want to have to eye drop colors here and there, i want to keep a collection of my clients colorways. i saw the swatch script from video hive. is that good? does that only work with the said website? is there a way to customize color in that script?
    thank you in advanced!

    The new Kuler integration (I just updated to 2014 today) is really useful but it's not quite what I'd hoped it would be. I use After Effects for vector animation and would find a swatches panel with Kuler built in - similar to that found in Illustrator - much more useful. Instead I'm having to position the Kuler panel in such a way that the colour scheme I want to use is visible so I can pick with the eye dropper, but I guess it's an upgrade from the print out of hexidecimals taped to my monitor!
    I understand After Effects isn't really built like that, but it would make life so much easier if there was a swatch panel!

  • PO Printing - How to add a solid line after a change in Ship to Location?

    Hi,
    I've been trying to add a line under Ship to location field whenever there's a change in ship to location on the PO print program.
    I've been successful partially because I could get a line when there's a change in ship to location but I'm also getting a line when there are two lines with same ship to location. The solid line shows up because there's truly a change in ship to location compared to the line above but since the following two lines are to be shipped to the same location, I don't need that solid line.
    Any suggestions?
    This is what I used to do the comparison
    <?if:PLL_SHIP_ADR_INFO[not(.=preceding::PLL_SHIP_ADR_INFO)]?>
    I need something to see the value 'Following' as well as 'Preceding' line to prevent
    the line to show up when the line following has the same ship to location.
    Line # Item Qty Price
    1 ABC 1 100
    Ship To: Knoxville, TN
    2 XYZ 1 100
    Ship TO: Tulsa, OK
    3 ABC 1 50
    Ship to : Tulsa, OK
    Right now, I'm getting a line after Line 2, which I don't want.
    Is it possible?
    Regards,
    Srini

    Try,
    <?if:PLL_SHIP_ADR_INFO[not(.=following::PLL_SHIP_ADR_INFO)]?>

  • HT5312 how to add a rescue email after you have already made an apple id?

    How do you add a rescue email to your apple id if you already have a apple id made?

    If you know the answers to your security questions then steps 1 to 5 on the page that you posted from should let you add one : go to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account, then click on 'Password and Security' on the left-hand side of that page and on the right-hand side answer the 2 questions and you can add one.
    If you can't remember the answers then you will need to contact iTunes Support or Apple to get the questions reset.
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then 'Forgotten Apple ID security questions'
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57
    When they've been reset you can then use those steps to add a rescue email address for potential future use, or you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • How to add video created in After Effects or Premiere  to a Captivate project?

    I’m new to Captivate.  I received a .cpvc file which is basically a screen capture  of using a website. I can create animation of a company logo, and other effects using  After effects and I also have Premier.  I need to integrate this with the  .cpvc presentation.
    What is the best way to do this with the minimum loss of quality of the content created with Captivate and After Effects or Premiere?

    Hi,
    From your description, my understanding is that you want to use video tag in your Office 365.
    You should check the video type in your issue, video tag only support mp4 file which you could refer to this article:http://www.w3schools.com/tags/tag_video.asp.
    In addition, you could refer to these articles:
    Video Player for SharePoint 2013 and Office 365
    http://sharepointroot.com/2014/01/22/video-player-for-sharepoint-2013-and-office-365-2/
    how to play a video in sharepoint 2013 foundation version
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/2818becf-e132-4b9a-b50f-8990fa28cf88/how-to-play-a-video-in-sharepoint-2013-foundation-version?forum=appsforsharepoint.
    Best Regards
    Vincent Han
    TechNet Community Support

  • How to add spaces in outline after each heading

    I like to use outlines a lot.  However, I noticed that everytime I press enter to start a new line, the cursor is placed immediately after the header.  I'm used to there at least being one space put in by default when I press enter.
    Is there a way to add these auto spaces into my outline format? 
    Example:
    I want:     
    I.  New topic
    not
    I.New Topic

    Use the style Numbered list from the style drawer. It adds a space between the number and the paragraph line

  • How to add extra packages for AIF installation?

    I am trying to build a custom Arch Linux LiveCD with archiso, based on wiki.
    Now, everything works fine. But when I tried the installation with /arch/setup, it only allows me to select "core-local" in the step 1.
    I checked also the mount, there is only /repo/core/any and /repo/core/i686.
    Is there anyway to add in more packages other than the core? This should be done on archiso or aif?

    avarionist wrote:thanks found a mirror
    one last question though
    in arch do i have to install dependecies one by one or are they automatically found.
    in any case what would be the command to check for the required dependecies ?
    If you have the network access,  they are automatically found for you. But if you don't, you should find out all the dependencies of a particular package and then download each one and then install them "in order", so that the package that you are actually trying to install, can be installed.
    The command would be (from any arch machine which has network access
    sudo pacman -Ss <package-name>
    It will list all the dependencies, as long as they are not installed on your machine already.
    Last edited by Inxsible (2010-06-17 05:00:26)

  • How do I select the language after installation of Adobe Acrobat XI?

    I have installed the full, multilingual version of Adobe Acrobat XI pro. The installation process was in English and I was never asked to select the language. Then, to my surprise, the software runs in German. How do I change the language? Now, I don't understand the menu.
    Thank you.

    Hi Desmag,
    Please go to Acrobat's Edit>Preferences > Language and change the Application Language from English to "Choose at application startup".
    Let us know if this helps,
    Regards,
    Gurleen

  • How to add additional files into Native Installer?

    I have extra text and XML files used as configuration files I'd like to package and install into the application directory with my AIR app.  I'm trying to create a Native Install package in Flash Builder and I can't figure out how to include these extra files that will be installed.  Is there a way to do this in Flash Builder or do I have to use some other method to achieve this?

    I have discovered how to get it to work, but I'm not sure what the problem is. I can consistently duplicate it.
    If  I manually copy a file into the myapp\src folder, the file does not get  copied to the bin-debug folder and, thus does not get added to the list  of files to include.  I build my app dozens of times. This file NEVER  appears in the file list under the src folder in the Package Explorer  View.  Even if I close Flash Builder and open it again, my added file  NEVER appears in the file list.
    Only if I right click  on my project in the Package Explorer View and select Refresh, will the  file appear in the list.  Then and only then, when I go through the  Export process, the file will appear in the list and be included in the  AIR package.
    That seems like a bug to me.  Even if you  said it wouldn't detect the file being added while Flash Builder is  open, it should at least check the project folder when I open it and  update the list with any new files.
    I'd still like to  know how to get this to work without manually refreshing the project  although admittedly I won't be adding files to the project often.

Maybe you are looking for

  • "Error in Process" for POs after changing Tax codes and Vendor address

    All, We are in extended classic scenario and we have 2 POs with status "Error in Process" PO 1: The PO was ordered with 3 line items, Confirmed, Inovoiced. Later our accoutnig team realized there should not be tax for one of the line item in the PO.

  • Internal Server Error in PI 7.1

    Hi, We have recently moved from XI 3.0 to PI 7.1. We have built an IDoc to file scenario that is resulting in error with information as below: <SAP:Category>XIServer</SAP:Category>   <SAP:Code area="INTERNAL">CLIENT_RECEIVE_FAILED</SAP:Code>   <SAP:P

  • Can't access Portal Server

    Hi, After installation of JSE(Windows Version), I can access the identity admin console with url http://host:port/amconsole But I can't use the url http://host:port/portal or http://host:port/portal/dt to access Portal Server Desktop, the browser rec

  • Script error when installing creative suite 4

    I've been trying to work this one out for days. I uninstalled the creative suite to see if it would help download dreamweaver(I've since given up on dreamweaver for the time being). So when I tried to re-install creative suite an error message popped

  • Expired Certs for Apache

    Hi All, Groupwise web access will not load any more giving: HTTP Status 404 - type Status report message description The requested resource () is not available. Apache Tomcat/5.5.27 In digging around I found the cert had expired. I tried renewing it