Solaris 8 Intel Installation - stuck at initial network setup

Hi !
We installed Solaris 8 Intel (Europe/ger) on a PIII and are stuck in the
network config. It asks for systemname, ip,subnet, domain, dns.. (our settings are ok for sure)
but when whe click the confirm-button it reads some error message
(translated):
'Error during system configuration. Go back and check your settings'
An interesting fact:
The net seems to work, the machine's got its ip and we can ping it from outside.
WE JUST CAN'T FINISH THE SETUP TOOL (Interactive Install).
What we already did is configure the gatway in etc/defaultrouter, and
with route add default. The router is in the same network, and it's ok.
System:
PIII/700 on
ASUS P3BF
SCSI Adaptec 29160 (driver found on http://www.adaptec.com)
ATI Rage Pro 3D
3C905B FastEthernet-XL
(By the way, the NIC works fine, didn't expierience any problems)
Thank you in advance !

Oh. One more thing. You may want to install this system
as a standalone system, i.e. do NOT configure it as a networked
system. Then, once all installation is complete, then go back and
change to network config.
Try this. Thx. Tushar Patel.

Similar Messages

  • 64-bit compilation problem on Solaris/Intel: 7th argument not initialized

    I have a problem when compiling a program on a 64-bit Solaris Intel server. The problem is that when calling a function, if the 7th or next arguments are long arguments and I pass uncasted small integers values to it, the first 32-bit of my values are uninitialized.
    I have isolated the problem in the following source code.
    #include <stdio.h>
    #include <strings.h>
    void fnc1(a,b,c,d,e,f,g,h)
    long a,b,c,d,e,f,g,h;
    printf("%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld\n", a,b,c,d,e,f,g,h);
    void main()
    fnc1(0x10101010deadbeef,0x20202020deadbeef,
         0x30303030deadbeef,0x40404040deadbeef,
         0x50505050deadbeef,0x60606060deadbeef,
         0x70707070deadbeef,0x80808080deadbeef);
    fnc1(1,2,3,4,5,6,7,8);
    }I compile it using the following command:
    cc src1.c -g $* -m64 -o prog1.exeWhen I run the resulting .exe, I get the following result:
    1157442768875667183,2314885534015405807,3472328299155144431,4629771064294883055,5787213829434621679,6944656594574360303,8102099359714098927,-9187201948855714065
    1,2,3,4,5,6,8102099355978170375,-9187201952591642616The problem is that the first 32 bits of my 7th and 8th arguments are not initialized when the function is called.
    I know that in the following cases, I do not have the problem:
    - if I cast the arguments;
    - on other platforms (AIX, SunOs/Sparc, HPUX) or if I compile in 32-bit;
    - if I use optimization (-xO1 to -xO5) ;
    - if I prototype my function at the beginning of my source (void fnc1(long a,long b,long c,long d,long e,long f,long g,long h););
    I have over 1,000,000 lines of existing code to support. I am afraid using optimization would have other impacts and for now, I cast the arguments as problems are reported. Would there be a better way to handle this? By using a compiler switch?
    Thanks in advance.

    Tom.Truscott wrote:
    clamage45 wrote:
    But if you are passing to an ellipsis, you either cast actual arguments to the type the function expects, or the function extracts the default promoted type. Such code always works ...Yes, and developers should attempt to accomplish just that. Alas this is very difficult to ensure, particularly given the lack of a run-time type checking mechanism.In theory, proper use of the ellipsis function would be documented, and programmers would read and follow the documentation. In practice, some programmers don't read the instructions, or forget them, or someone ill-advisedly changes the way the function works so that existing calls stop working. Variable-argument functions are a fragile mechanism. (I program almost exclusively in C++, which has combinations of features such that variable-argument functions are rarely, if ever, needed.)
    Can one even assume that the value of the NULL macro is correct? Never, because the C standard allows a variety of definitions for NULL, and implementations vary. Passing NULL to an ellipsis is a recipe for failure. Don't do it.
    >
    Suppose you have function FI with an ellipsis that expects to get int arguments, and another FL that expects to get long arguments. When you port the code to a 64-bit environment, function FL fails. If you use the -signext option, function FI will fail.Ah, but for us FL never fails, since the compilers always widen the arguments. I fail to see the circumstance in which widening would cause FI to fail, could you please give a more specific example?
    void FI(int count, ...)
        va_list va;
        va_start(va, count);
        int t;
        while( --count >= 0) {
           t = va_arg(va, int);
           do_something(t);
    }Function FI expects to extract 32-bit int arguments. If compiled with -signext, the calling function will pass 64-bit arguments. Perhaps the -signext option also causes the 32-bit extraction to be changed to a 64-bit extraction. I have no personal experience with the option, and I'm not in a position where I can experiment right now.

  • Agent installation stuck on initial stage

    The agent never get installed successfully. It is on initial status forever during installation. After reboot, the agent service does not start. Anyone see this
    problem.

    On 04/05/2010 16:26, Donald Wu wrote:
    > On 12/04/2010 15:56, jblackett wrote:
    >>
    >> Can you provide any more info? What platform are you installing the
    >> agent on? We have seen a problem where the SETUP.EXE for the ZESM
    >> components of the agent hang on an XP install. We are investigating the
    >> cause. We have also seen the same on devices that have unsupported
    >> Windows 7 device drivers. If you can provide some more info I'll see
    >> what we can figure out.
    >>
    >> Jason
    >>
    >>
    > It is XP SP3, installer 3.01.4001.5512. I de-select endpoint security,
    > imaging, remote control installation on zcc agent setting, but it has
    > not effect.
    >
    > I then upgrade the installer to 4.5.6001.22159, but it does not fix it.
    >
    > The installer package is full standalone with .net.
    >
    > Donald
    More information:
    It also has Zenworks 7 agent installed. I did a further test as below
    1. upgrade installer to 4.5.6001.22159
    2. install zcm11 agent, it is on initial stage forever.
    3. re-boot the machine. zenworks agent service did not start, but
    Novell application launch service(a zenworks 7 service I think) did.
    However the Novell Application Launch service entry has been removed
    (I think it is done by zcm agent after reboot, but the service has
    already started)
    4. manual start the zcm zenworks agent service, it works fine.
    5. re-boot again, agent service start automatically.
    Does anyone know how to log the installation process?
    Donald

  • Installation - stuck on initializing

    Can't seem to get it to install, get as far as 'initializing installer' but progress bar just sticks there. Have tried restarting computer and trying again. Doesn't even let me cancel it, becomes non-responsive?

    Sorry you are having problems. Is this on mac or windows? Is it downloading from creative cloud correctly or is it not even getting that far? Are you using the latest version of the creative cloud app. It should be Version 1.7.1.418 released on 7/24/2014. Are you able to install other apps from the creative cloud app?
    Hopefully we can get you unstuck,
    Chris

  • Webcenter Installation Stuck at Initial Stage

    Hi All,
    Good Morning..
    Here im posting an error which I got while installing Webcenter on Oracle 11gR1(11.1.1.3.0).
    Error:
    "INST-07286: Specified Oracle Middleware home location does not have version 10.3.4.0 of Weblogic Server. If the version is incorrect then congfiguring with the weblogic server wil faill."
    This error i got while installing webcenter(11.1.1.5.0) on Windows 64bit, this error coming at "Installation Location" screen level.
    Pls anybody advice me on the same what steps should I take to move forward my installation successfully as it is urgent base at my level.
    Here im putting my installtion location details for Middleware "C:\Oracle\Middleware", and for weblogic "C:\Oracle\Middleware\wlserver_10.3"
    Pls share ur suggestions at your earliest.
    Thanks in Advance all of you.
    Thanks
    Munnelli

    Hi All,
    Good Morning..
    Here im posting an error which I got while installing Webcenter on Oracle 11gR1(11.1.1.3.0).
    Error:
    "INST-07286: Specified Oracle Middleware home location does not have version 10.3.4.0 of Weblogic Server. If the version is incorrect then congfiguring with the weblogic server wil faill."
    This error i got while installing webcenter(11.1.1.5.0) on Windows 64bit, this error coming at "Installation Location" screen level.
    Pls anybody advice me on the same what steps should I take to move forward my installation successfully as it is urgent base at my level.
    Here im putting my installtion location details for Middleware "C:\Oracle\Middleware", and for weblogic "C:\Oracle\Middleware\wlserver_10.3"
    Pls share ur suggestions at your earliest.
    Thanks in Advance all of you.
    Thanks
    Munnelli

  • IDSM-2: hints for initial network setup?

    Hello team:
    I was asked to carry out a very basic configuration of a brand new IDSM-2 on a CAT6500. According to the documentation, once in the Supervisor´s CLI, I must execute a "session" command to the slot in which the IDSM is located.
    Once there, I have to follow the wizard to add IP, mask and gateway. Having this configured, the module´s management interface should be visible from the rest of the network, but I do not see how this happens, since the module should use one of the switch´s VLANs, and I haven´t found how this is configured.
    Question: ¿how will this IDSM link itself to the switch´s layer 3 engine? I do not see how its layer 2 will match any available VLAN in the host LAN switch...
    Any help will be greatly appreciated
    Rogelio Alvez
    Argentina

    I think what you need to add is a command on the 6500 that puts the IDSM-2 management port in a particular vlan.  For example:
    intrusion-detection module 9 management-port access-vlan 101
    This would place the management port for the iDSM-2 card in slot 9 in vlan 101.  The host-ip that you define on the IDSM-2 card itself would then need to be valid for this vlan.
    Steve

  • It is stuck on Initializing Installer???

    I am on PC and when I double click the icon to install I the green bar moves a little but stops after about 20 seconds and it is stuck on initializing installer. Tried restarting and re downloading nothing helped.

    Hi Poke,
    Please refer to the help document below to fix the error:
    Error: "Installer failed to initialize" | Windows
    You may also refer to the threads below where this issue has been addressed:
    Creative Cloud Installer not Initializing AGAIN.
    Installation - stuck on initializing
    Re: App Installer Freezes at "Initializing Installer"
    Regards,
    Sheena

  • HELP!! -- Solaris 8 10/01 (Intel) Installation Hangs My PC!!

    I downloaded the Solaris 8 for x86 yesterday and burned them into CDs.
    I have the following hardware configuration.
    - Intel i815E mainboard
    - Intel PIII 733
    - KingMax 256M 133MHz
    - Maxtor 30G hard disk
    - Acer 50X CDROM
    The inistallation initially gave me a warning.
    WARNING: ACPI Table not in Reclaim Memory
    And it gave more warning during the installation process:
    Resource Conflicting -- Both devices are added
    The conflicting devices are:
    - PNP0C01
    - ISY0050
    Unfortunately, I don't know what they are. :(
    However, these are not the whole story. The installer went ahead to
    let me fdisk my 30G hard disk.
    I accepted the "Solaris Default" and answered Y to the question "Can
    swap slice start at the beginning of the disk?". Immediately, the
    system hangs there but the keyboard is responsive that I can type
    anything I want.
    In addition, I use the 512M as swap as suggested by the installer.
    Can anyone help me with this situation? I have tried installing this
    version of Solaris for several times but with no luck. :S
    Any insights are highly appreciated! Thanks!
    - Peter

    Try this workaround for your problem and let me know the outcomes.
    Solaris bootstrap uses Advanced Configuration and Power Interface (ACPI)
    for device configuration and MP interrupt routing.
    Try to disable your ACPI.
    Steps to follow:
    1) Use either eeprom(1M):
    # eeprom acpi-user-options=0x2
    ( OR )
    * Modify the Device Configuration Assistant (DCA) boot floppy.
    Manually edit the /boot/solaris/bootenv.rc to add:
    setprop acpi-user-options 0x2
    In this method is applicable for at the time of Solaris 8 installation.
    DCA for Solaris 8 10/01 download it from this URL:
    http://soldc.sun.com/support/drivers/dca_diskettes/
    The ACPI conflicts problem is not fixed and is resolved by disabling ACPI.
    In the example you gave, while it is annoying, it probably does no harm. In
    some cases it causes duplicate devices to show up, like two floppy or IDE
    drives - neither of which work properly. Disabling ACPI is the safest way
    to insure there will be no problems if this message shows up.
    2) Reboot the System.
    Hope it helps.
    Senthilkumar
    Developer Technical Support
    Sun Microsystems, Inc.
    http://www.sun.com/developers/support

  • When i open it gets stuck at "initializing installer" and the green bar doesnt move. How do i fix this so it installs?

    Adobe cloud setup downloaded off the internet just fine but when i open it gets stuck at "initializing installer" and the green bar doesnt move. How do i fix this so it installs?

    Multiredwolf123 have you utilized the steps listed in Error "Failed to Install" Creative Cloud Desktop application - http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html to resolve the current error?

  • ITunes installation always get stuck on "Initializing QuickTime types"

    Whenever i try to install iTunes and QuickTime it always get stuck on "Initializing QuickTime types."
    I am not able to update my software!
    Please Help!

    Me Too!!
    I have XP SP3. Intel pentium 4 2.6Ghz. 4Gb RAM. 116GB open on one HDD, 72GB open on the other.
    I'm on Admin access level.
    I'm trying to install iTunes 7.7 bundled with Quicktime 7.5.
    I emptied my temp folders.
    I shut down my antivirus and anti-spyware.
    I shut down all non-essential startup menu items.
    My folder names dont have unusual characters.
    I have uninstalled all versions of Quicktime and iTunes and iPod updaters from my machine.
    Still no luck.
    When Installing the Quicktime application, the entire machine locks up when it gets to the "Initializing Quicktime types" segment of the install.
    I have left the machine on its own for up to 14 hrs and it never does regain normal function.
    The only way to regain control is to reset or hard shutdown.
    Can someone please respond to this so my daughter can use her 2 month old graduation present?
    Thank you so very much.
    PS:
    How about standalone downloads for each application?
    And, how about patches so the download doesnt take so long and the installation doesn't need to be so intrusive?
    Message was edited by: Jeteye97

  • Solaris 8 installation problem on an Intel base PC

    I'm quite new with Solaris. I got stuck in Solaris 8 installation just at almost the very beginning. After booting up the system from floppy and conituing pressing F2 and selecting booting from CD, I got an error message like:
    cannot mount on pci@0; 0/pci-ide@7; 1/ide01/sd@0; 0:a
    panic[cpu0]thread=FEC17440 vfs:mountroot
    then, the system reboots itself again and again every time it reaches this point. I guess it's a problem with my CD-ROM. But the problem persists even if I change CD-ROM or move CD-ROM from secondary master to primary slave, etc. I also tried to change harddisk, but did no good to the problem. Is there any experienced users who could provide me with some solutions?
    I'm using a system with: Pentium 133, 32 MB Ram, 4GB HDD, 3C905TX, ATI Rage II PCI, Matshita CR-587 CD-ROM, Serial mouse and so on. I also tried another system with: P III 450, Asus P3BF, 192MB Ram, Pioneer DVD-ROM, same HDD, and so on. The problem was still there with the latter system. However, I successfully installed Solaris 7 with the latter system before. Why can't it work with Solaris 8?
    Thanks a lot for the help.

    I've been having the exact same problems on a PowerEdge 500SC. I have managed to get Solaris up and running on the machine, however. I booted the DCA from the floppy disk and installed from the CD-ROM. When the DCA is ready to scan for devices I use the "Specific Scan" option to tell it to look for specific devices. I tell it to scan for all devices in the listing and in doing so the DCA finds ISA-based IDE controllers. After it provides a listing of the devices it found I use the "Device Tasks" option and the "View/Edit Devices" menu item then delete the Bus Mastering IDE controller device. Once the screen comes up to ask for a boot device, the drives will show up as on the ISA controllers.
    I have to go through this process every time I boot the machine but I am able to make the system run at least.
    I haven't figured out the ACPI problem, yet.
    Regards,
    Doug

  • Solaris 8 Intel Installation Error: No suitable hard drives found

    HI!
    I was trying to install the free Solaris 8 Intel Edition from CD. All devices were recognized. Afterwards, however, I get the message that no suitable place was found to store the installation image. What should a hard disk look like in order to qualify for Solaris?
    My system contains several hard drives. The first one, were I would like to install Solaris, is empty without any partitions. Under normal cicumstances (Linux, Windows), I would assume that this is the best possible case for a new operationg system...
    Best regards
    Klaus

    Klaus,
    I am having the exact same problem as you. I have the official Solaris CDs from Sun, but am not able to install Solaris on my PC. Installation progresses quite far - including screen, keyboard, time configuration - but then fails saying that it can't find any suitable HDDs.
    I too, have two HDDs, one with Windows XP on it, and the other completely blank. However the Solaris installation does not recognise either of them.
    I've even tried dis-connecting the Windows HDD in case it may have interfered somehow, but it has no affect.
    Please see me message titled 'Intel Installation - Identifying HDDs' which I posted on this forum on 10th November. I haven't received any help on this issue.
    Where do we go from here?

  • PPP, USR56K, ISP, Setup for Solaris/Intel Please.

    I am new to Solaris/Intel setup and interested in setting up PPP, usr 56k modem and local ISP. Where do I start... Thanks for any info... Dale. [email protected]

    I tryied this guys setup procedure and all works except for when you actually want to connect to the internet.
    Nothing happens and the only thing that happens is
    pinging the dummy ip adress then just sits there.

  • Solaris8 Intel Installation Troubles..

    Hi,
    I'm trying to install Solaris 8 for Intel on an old HP Vectra VL8i (400 Mhz, 128MB ram). Currently this machine has a screwed up install (*my fault* ) of Linux Mandrake 7.2. I downloaded the Solaris8 binaries off of sun.com and was trying to make a boot diskette on my 2000 adv. server box to then create the bootable .iso cd images (set of 3 cds for install). Once that was done, I had planned to start the install on my Vectra (the one running Mandrake). However, now I realized the "format a: /s" option is no longer supported under 2000. Its not even an option listed under the format help info screen. So I'm in a bit of a pickle...I'm trying to figure out how to get the necessary files on a formatted floppy diskette to make the diskette bootable with CD ROM driver support. I know I need to copy an autoexec.bat, config.sys, and setup the mscdex file to make this work, but I get lost in the details of it all.
    A little later,
    OK, I reinstalled Mandrake on it and its working fine now that way I can start from a clean point. I burnt 2 CDs of the first installation CD for Solari8 intel to test this with..
    According to the informational instructions at Sun.com they recommend using "winzip" to unzip the archive and Adaptec EZ CD Creator to burn a "bootable .iso CD image". Well, I have both those programs and so when I unzipped the .iso file for the installation CD it appeared on my desktop as an adaptec ez cd icon. I opened it up, selected bootable CD (according to cd creator help file to make a bootable cd I need to copy a bootable floppy over to it..), it prompts me for my boot floppy, I insert it works, and creates 2 boot files. Then I add the solaris8.iso for the install cd, and burn the CD. Now, I take it over to my HP Vectra, pop it in, power on, and it loads the oak cd rom driver and sets my floppy as A: and my cdrom as X: I can now enter X: and see the solaris-8.iso file but can't do anything with it.....
    FYI: I have set the CDROM to boot before the HDD in the bios.
    My next attempt after reading your post was to just extract the .iso file from the zip archive and then burn it in ISO format as is...no bootable CD junk per Adaptec's Help file. I do that and pop it in and my computer does nothing, just boots up to linux mandrake because it doesn't start the install when it hits the cdrom first....again, just has the solaris8 install .iso file on it, and this time nothing else on the CD.
    My question is, is there something I am missing regarding the install .iso file? Do I have to extract that to something? Windows views it as an archive.... I have scoured the sun docs and solaris intel install information and not much is on this except "extract using winzip and burn a bootable .iso using adaptec easy cd creator with the .iso file you extracted from winzip". I'm really confused at this point...I know I was trying to load it on top of a Linux Mandrake OS, but it had 4.2 GB of free space. I can't even get the installation process STARTED!!! LOL!
    Thanks for any help...
    PS...I think something is messed up with my HDD now. I went through fdisking my non-dos partitions (linux mandrake) and formatting the HDD from a boot floppy to see if this might help. It didn't. However, now there is supposedly nothing on my HDD. However if I just let it boot up it comes up to a "grub" shell, and has only limited functionality (like 20 commands). So there is obviously something still left on my HDD.
    Oh also, before that I tried using the first Solaris OS .iso file not the INITIAL install .iso I was previously using. This is the .iso you mentioned I should try to use. I am still stuck at the same place...it won't start the install. I don't know if its because something is incorrect with my HDD or if its something I'm missing regarding copying the .iso onto the CD to start with....ANY, and I do mean ANY help is greatly appreciated here!

    Hi, I'm not sure that I understanded your actual problem correctly, but I think that your installation CD's, where you said are .iso files, you messed up. The ISO files are images, like HD partitions archived in one file for portability. You have to burn those images with burner which supports ISO images, in other words, burning software unarchives the ISO image while the burn process, so correctly burned CD contains all ISO images files and directories , not just one big ISO file. I think 'cdrecord' in Linux supports ISO images.
    Sorry my bad english, its not my native language :)
    . jani

  • Network Setup wants to make changes...

    My MacBook keeps bringing up a dialog box with:
    "Network Setup wants to make changes. Please type in your password..." etc
    Why is my computer trying to make changes? What does it have to do with the network (Airport is turned off. I'm only coneected to wireless internet). Why is it so persisitant?
    Its really annoying me.

    Try booting into the Safe Mode using your normal account to see if you can install it there.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode - Mavericks
    Safe Mode - About

Maybe you are looking for

  • Export file size help...output seems way too big

    I have a 12 minute movie with audio, video and stills in it. Currently when I export it the file is 865MB...  I need it to be less than 100 with decent quality.  It is a tutorial video that will be downloaded from the web. Can you please give me some

  • Referencing Record Groups in a PL/SQL Library program unit

    I want to move a program unit into a PL/SQL Library. I know how to reference data items from the form, but how do I reference a record group? Here's the code sample: PROCEDURE pu_init_tree IS HTREE ITEM; V_IGNORE NUMBER; BEGIN HTREE := FIND_ITEM('CON

  • Some functionalities in ABAP are not appearing after IE7

    Hi, Yesterday I did windows update and it upgraded my IE version from 6 to 7.  After this upgrade, I am unable to view certain areas in ABAP. For example if I go to SE80, the portion where we can select the drop down (Program, BSP application, ITS et

  • How do I open pdf files

    I just purchased an iMac running OS 10.6 to replace my old G5 imac running 10.5. I have many pdf files . When I attempt to open them I get an error message stating this new mac does not support these files. What can I do?

  • When selecting items to sync, how do i scroll down?

    How do I select items to sync? My problem is that when I select (say) photos to sync on my iPad, iTunes shows three categories: Albums, Events and Faces. I cannot see how to scroll down to select what I want if it is not immediately on the screen. Th