Boot server for solaris clients

Can any one give me the steps to configure a temporary boot server .. so that i can boot one of my failing server which does not have cdrom .
I do not want to configure full fledge jumpstart box .. i need it just for recovery purpose. And i want to set it up in one of my other servers .. which is running several solaris zones.

Setting up a "full" jumpstart server is quite easy. You just don't have to make lots of customizations to enable non-interactive installs.
Run the setup_install_server on the media to copy the data to the server. If using CD sets, go through each of the other disks and run the update_install_server scripts. Then run add_install_client in the destination Tool directory to set up all the config files for the client.
(It's possible to skip the first step and do the client setup from the DVD directly, but this is usually simpler).
Darren

Similar Messages

  • Boot image for Solaris 8 x86?

    Does anyone know where I can download the image for the boot floppy for Solaris 8 x86?
    Mine got corrupted, and since System Commander 2000 doesn't recognize the partition, that and the CD are the only ways I can boot the system.
    Thanks in advance,
    -Phil
    pbflores@"REMOVETHIS"usa.net

    Are you considering any particular cards ?
    I have had good luck with DEC21040 (10baseT) and DEC21140 (100baseT) cards
    in Solaris 7 through Solaris 10 on x86.
    The same can be said for 3Com 3C905C-TX cards.
    Solaris 8x86 will recognize many chipsets natively,
    and a number of third party developers have created working driver packages.
    Most of their driver packages are free, but a few are not free.
    Solaris 9 works with a few more, and Solaris 10 works with yet more adapters.
    The Solaris 8x86 HCL list has the native cards.
    This other Sun web page can direct you toward 3rd party sites.

  • How to configure router to use ip pool on the aaa server for vpn clients

    how to configure router to use ip pool on the aaa server for vpn clients . i want to use vpn clients to connect to the router. authenticate using the aaa server username databse and also use the ip pool cretaed on the aaa server. i am not able to find the command on the router pointing to use the pool created on the aaa server. can u some one help me with this command.
    sebastan

    Hello Sebastan,
    what do you use as AAA server (e.g. ACS with TACACS+ or RADIUS) ?
    Regards,
    GNT

  • Using encryption on one drive of server for W7 clients

    Hi,
    I run Win 2008 R2. It has an SSD boot drive, 9 Spinners and a USB attached drive.
    The Spinners are 2 & 3 TB drives. Two of the 2TB drives are set up as a spanned volume
    One of the spinners has several partitions.
    I am considering encrypting the data on that one partition. It contains user folders that are mapped on the clients, which are Windows 7, Windows 8.1 and Linux Mint
    I don't want to use bit locker. I'd prefer something "other". I guess that won't be TrueCrypt given the media frenzy about that product lately.
    Can someone please provide some guidance as to where to start. Perhaps some advice on whether I should do this (Opinions are fine, as long as they are respectful).
    For example...
    \\server\joe
    \\server\jane
    \\server\fred
    thanks
    tanya

    Thanks for your reply.
    I was advised by someone else to stay away from bitlocker because if is extremely insecure (and Googling it certainly indicated there were a number of concerns for people using it). For example, the rumor that Microsoft did not impede government agencies
    attempts to circumvent the encryption (to put it nicely).
    Given that, a third party option is where I thought I would have to go.
    But before that, I'm wondering if it is even a good idea? Can any serious agency break any encryption? Is there a performance hit that is going to annoy people? etc.
    That was the sort of advice I was after.
    thanks
    Tanya

  • Writing Java Non-Blocking Socket Server for  Winsock Client

    Hi.
    Im a newbie to Sockets. I need to write a Non-Blocking Socket server (using java.nio) that accepts connection and reads the data sent by WinSock clients, and write them to another winsock client. Its quite intriguing. How do I do that? Is it possible?
    Thanks in advance
    Arun

    Well, in traditional 4.2 BSD sockets, you'd fill up a set of filedescriptors of connections (an array of bits usually), and push that in the read parameter of a call to 'select'. Select then blocks until at least one of the file descriptors become available for reading, or writing if you also made an fd_set full of file descriptors (but you can usually write freely to a socket, so there is not much use for that). Then you start finding out which of these file descriptors have actually become available for reading, and you pass those to a bunch of worker-threads. The advantage is that your set of worker-threads can be quite small, while your number of connections can still be quite large (unless, of course, everyone of your clients start talking all at once, but that is no different from the one-socket-one-thread-model that java.net.* forces upon you).
    In java, the 'select' call is replaced by a call to java.nio.channels.Selector.select(); and then the fishing out of the selected stuff comes from java.nio.channels.Selector.selectedKeys().
    To add a thingy to a selector, use (for example) java.nio.channel.ServerSocketChannel.register(Selector, ops, att);
    whereby the ops parameter is the kind of action you'd like to select this channel for; SelectionKey.OP_READ etc..
    The workerthread bit is also easy to write, but I leave that to you as an exercise.

  • Creating a floppy boot disk for solaris 10

    Hi
    I have downloaded the Solaris 10 x86 DVD and and cd ISO from the Sun download site. However my PC doesnt boot from the CD Rom.
    Is there a way to create a bootable floppy to install Solaris?
    any tips regarding the above very welcome.
    thank you in advance
    tesh

    Hi
    I have downloaded the Solaris 10 x86 DVD and and cd ISO from the Sun download site. However my PC doesnt boot from the CD Rom.
    Is there a way to create a bootable floppy to install Solaris?
    any tips regarding the above very welcome.
    thank you in advance
    tesh

  • Server for 2 clients at a time

    Hi there. How can I create a server that accepts only 2 clients at a time? If one of these 2 should go down server should permit another connections that means total connections from clients shoud not be more than 2.
    Here is my server.Have any ideas?
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class CollabServer {
    public int contator;
    public CollabServer() throws IOException{
    ServerSocket server = new ServerSocket(5000);
    System.out.println ("Accepting connections...");
    while(true) {
    Socket client = server.accept();
    System.out.println ("Accepted from " + client.getInetAddress());
    new CollabHandler(client).start();
    public static void main(String args[]) throws IOException {
    new CollabServer();

    I did what you said but I don't know how to do the third step of yours. HOW can I do the server to not accept more tha 2 connections whitout server.close?
    Did you mean something like that?
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class CollabServer {
    public int contator;
    public CollabServer() throws IOException{
    ServerSocket server = new ServerSocket(5000);
    System.out.println ("Accepting connections...");
    while(true) {
    if(contator < 4 ){
    Socket client = server.accept();
    System.out.println ("Accepted from " + client.getInetAddress());
    new CollabHandler(client).start();
    contator = CollabHandler.activeCount();
    if ( contator == 3) {
    server.close();//should I do this?
    public static void main(String args[]) throws IOException {
    new CollabServer();

  • Only "Inbox" shows in OS 10.4.10 server for Outlook clients

    Connect via IMAP.
    Setup was previously working. Any ideas? Thanks

    For one, your account name shouldn't go in the box for the server.
    You can find the necessary settings here

  • Need reasons not to use SMB/win2003 as file server for mac clients

    hey guys,
    i'm looking for reasons not to use windwos2003 as fileserver with smb for use with os x in a graphic production environment.
    can someone help? just need a sum up for "internal use"
    smb seems to be slower than afp
    etc...
    thank you!

    Well, it tends to be that saving over the network from Adobe and Quark apps "just works better" over AFP than it does over SMB.
    Put another way, people wouldn't be paying $4000 for a software license form Extreme-ZIP so they can serve AFP from a Windows 2003 server if there wasn't a real benefit to this. You can get an Xserve for this same $4000

  • Microsoft Windows Server 2003 as NTP server for IOS clients

    I am trying to synchronize the clock in my switches using a Windows 2003 ntp server. Debugging shows that the switch receives an answer from the server, but will not accept it. Debugging shows "Failed validity tests 20" which I think means "bogus packet received".
    On the server side I have changed the registry key HKLM\SYSTEM\CurrentControlSet\Services\W32Time\Config\LocalClockDispersion from the default value 10 to 0, found that tip on the web. I also adjusted the switch clock manually so that the difference was less than a minute. Did not help.
    I am currently testing with a 2960G with IOS 12.2(25)SEE3
    Here is the debug output: (ntp events, ntp packets, ntp validity)
    May 14 16:07:25: NTP: xmit packet to <server ip address> :
    May 14 16:07:25: leap 3, mode 3, version 3, stratum 0, ppoll 64
    May 14 16:07:25: rtdel 0000 (0.000), rtdsp 10001 (1000.015), refid 00000000 (0.0.0.0)
    May 14 16:07:25: ref 00000000.00000000 (01:00:00.000 CET Mon Jan 1 1900)
    May 14 16:07:25: org CBD57216.A8000000 (16:13:42.656 CEST Wed May 14 2008)
    May 14 16:07:25: rec CBD5705D.5075BD5A (16:06:21.314 CEST Wed May 14 2008)
    May 14 16:07:25: xmt CBD5709D.515717A2 (16:07:25.317 CEST Wed May 14 2008)
    May 14 16:07:25: NTP: rcv packet from <server ip address> to <switch ip address> on Vlan5:
    May 14 16:07:25: leap 3, mode 4, version 3, stratum 0, ppoll 64
    May 14 16:07:25: rtdel 0000 (0.000), rtdsp 10400 (1015.625), refid 00000000 (0.0.0.0)
    May 14 16:07:25: ref CBBA0238.40395810 (20:45:12.250 CEST Wed Apr 23 2008)
    May 14 16:07:25: org CBD5709D.515717A2 (16:07:25.317 CEST Wed May 14 2008)
    May 14 16:07:25: rec CBD57256.AC000000 (16:14:46.671 CEST Wed May 14 2008)
    May 14 16:07:25: xmt CBD57256.AC000000 (16:14:46.671 CEST Wed May 14 2008)
    May 14 16:07:25: inp CBD5709D.56C08EFA (16:07:25.338 CEST Wed May 14 2008)
    May 14 16:07:25: NTP: packet from <server ip address> failed validity tests 20
    May 14 16:07:25: Peer/Server Clock unsynchronized

    Nothing much in the switch, just
    clock timezone CET 1
    clock summer-time CEST recurring last Sun Mar 2:00 last Sun Oct 3:00
    ntp server x.x.x.x
    At the Windows 2003 server I changed two registry keys, but I think the first one was not needed.
    HKLM\SYSTEM\CurrentControlSet\Services\W32Time\Config\LocalClockDispersion changed from 10 to 0
    w32tm /config /update
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters\Type="NT5DS"
    Restarted Windows time service
    Note that NT5DS means that this server will get its time from another domain controller in my domain.
    The point is to make sure that time really is synchronized at the server. If you want the server to sync from an external source, consider changing the source to something other than time.windows.com
    net time /querysntp and net time /setsntp
    Vigleik

  • Proxy client for Solaris 8???

    Hello all,
    I am new to the list, so this may well have been asked before and I just can't find a reference to it...
    I am trying to set up a few Intel Solaris boxes for developmental purposes on a corporate network where we are constrained to using Microsoft Proxy Server by our corporate headquarters. Is there any creature that will function in place of (or as a replacement for) the Microsoft Proxy client that must be installed on Winx machines available for Intel Solaris 8? OR, is there a way around utilizing any sort of Proxy client and still be able to reach outside of our network?
    I've posted a question similar to thin on an MS discussion board as well.
    Thanks in advance,
    Randy

    Client is only considered to be a separate product on Windows platforms. Client is a not a seperate cd with unix platforms.It is bundled with the server edition.
    You will need to download the server for Solaris. Once you begin your installation you will be able to select the Oracle client on the Available Products screen. I hope this helps.

  • Rexec client for solaris.

    Can anybody please point me to a place where I can find rexec client for solaris.
    thanks in advance,
    rathi

    Client is only considered to be a separate product on Windows platforms. Client is a not a seperate cd with unix platforms.It is bundled with the server edition.
    You will need to download the server for Solaris. Once you begin your installation you will be able to select the Oracle client on the Available Products screen. I hope this helps.

  • How to configure DHCP on linux jumpstart for solaris installation

    I have configured jumpstart on linux and able to install solaris on SUN sparcs
    using rarp and bootparams files.now im trying to use linux DHCP for solaris clients. I have the done the DHCP setup on linux using this doc http://www.sun.com/bigadmin/content/submitted/setup_dhcp.jsp.
    but when im trying to boot the sun spac client with boot net:dhcp - install command it is failing with error "panic - boot: Could not mount filesystem.
    Program terminated". exports file is ok and NFS service is also running.
    Please help me on this issue.
    Thanks in advance.
    Shashi

    Darren,
    Thanks for the response.
    I tried to install client60001dev (sparc client) from server60060pxe (linux jumpstart) as follows
    client60001dev is able to get the IP address from server60060pxe DHCP and then the boot file also, but after that the client is not showing any NFS queries.
    {0} ok boot net:dhcp - install
    Boot device: /pci@1f,4000/network@1,1:dhcp File and args: - install
    Using Onboard Transceiver - Link Up.
    Timeout waiting for BOOTP/DHCP reply. Retrying ...
    Timeout waiting for BOOTP/DHCP reply. Retrying ...
    2aa00
    Server IP address: xx.xx.xx.119
    Client IP address: xx.xx.xx.111
    Subnet Mask : 255.255.255.0
    Using Onboard Transceiver - Link Up.
    panic - boot: Could not mount filesystem.
    Program terminated
    tcpdump on server60060pxe
    03:16:12.292836 IP server60060pxe.42445 > client60001dev.20759: UDP, len
    gth 516
    03:16:12.303646 IP client60001dev.20759 > server60060pxe.42445: UDP, len
    gth 4
    03:16:12.303669 IP server60060pxe.42445 > client60001dev.20759: UDP, len
    gth 516
    03:16:12.314479 IP client60001dev.20759 > server60060pxe.42445: UDP, len
    gth 4
    03:16:12.314501 IP server60060pxe.42445 > client60001dev.20759: UDP, len
    gth 516
    03:16:12.325313 IP client60001dev.20759 > server60060pxe.42445: UDP, len
    gth 4
    03:16:12.325347 IP server60060pxe.42445 > client60001dev.20759: UDP, len
    gth 516
    03:16:12.336158 IP client60001dev.20759 > server60060pxe.42445: UDP, len
    /var/log/messages on server60060pxe
    Feb 26 03:15:35 server60060pxe dhcpd: DHCPDISCOVER from 08:00:20:fe:4a:23 via eth0.
    369
    Feb 26 03:15:35 server60060pxe dhcpd: DHCPOFFER on xx.xx.xx.111 to 08:00:20:fe:4
    a:23 via eth0.369
    Feb 26 03:16:08 server60060pxe dhcpd: Dynamic and static leases present for 139.185
    .168.111.
    Feb 26 03:16:08 server60060pxe dhcpd: Remove host declaration client60001dev or remove
    139.185.168.111
    Feb 26 03:16:08 server60060pxe dhcpd: from the dynamic address pool for xx.xx.xx
    /24
    Feb 26 03:16:08 server60060pxe dhcpd: DHCPREQUEST for xx.xx.xx.111 (xx.xx.xx.
    119) from 08:00:20:fe:4a:23 via eth0.369
    Feb 26 03:16:08 server60060pxe dhcpd: DHCPACK on xx.xx.xx.111 to 08:00:20:fe:4a:
    23 via eth0.369
    Feb 26 11:16:09 server60060pxe in.tftpd[10266]: RRQ from xx.xx.xx.111 filename 8
    BB9A86F
    Feb 26 03:22:00 server60060pxe kernel: eth0.369: dev_set_promiscuity(master, -1)
    Feb 26 03:22:00 server60060pxe kernel: device eth0 left promiscuous mode
    Feb 26 03:22:00 server60060pxe kernel: device eth0.369 left promiscuous mode
    Shashi

  • 901solaris_disk2.cpio.gz (9i Dataserver for Solaris 32bits Disk 2)

    I'm trying to download 9i Database server for Solaris (32Bit) on my Windows 2000 machine before to install it on a Sun machine (5500). I have disk 1 and 2 ok. But the file '901solaris_disk2.cpio.gz' seems to be corrupted. I've download it tree time... The annouced size of 592Mo is only 455Mo (466 268k) each time. There is no error on download. Can you tell me what is the reason of the problem ? Do I have to order my product to Oracle France and wait for 15 days ?
    I can give my client number to you on monday if you need it, because I use my personnal machine for big download on week-ends.
    Regards,
    Christophe Callais
    DBA Manager
    SHV-PRIMAGAZ France

    Your 92010Sol_Disk1.cpio.gz seems to be a little short on the size. Download site reports the file as 502,322,122 bytes. You might want to re-download the file.

  • Boot images for SCCM12r2 from an NAS

    Hello,
    Is it possible to boot images from an distribution point installed on an NAS ?
    I have my SCCM (2012 R2) server and DC (2012 R2) in an Data Center. An office (in another location) in this domain and same ip subnet have a slow line-connection to the datacenter. In the office we gonna use the pxe server (sccm) to boot
    images for new clients. I want a solution to avoid transferring the OS Images/packages over this slow line-connection. It is not allowed to put server hardware in the office. In the office they have a NAS, with they use to transfer big files.
    Hence when an new client press F12 to install or reinstall an image, this one must be transferred from the NAS in the office and not from the SCCM server over the slow line-connection.
    Is this possible ? So yes, please let me know how to do this.
    Thanks a million.

    The situation is as follows:
    - We have a SCCM server in a datacenter
    - Our NAS (without SCCM supported OS installed) is at the client location on which our OS images are stored
    If we decide to push an OS Image via SCCM to a client at the same location as the NAS.
    Does the OS Image travel directly from the NAS to the client or does the OS Image go to SCCM first and then back to the client?
    We ask this question because if the OS image has to be uploaded from the NAS to the SCCM server and then downloaded again by the client completely destroys the internet speed.

Maybe you are looking for

  • Download to Adobe Master Collection CS6 not working

    I've downoloaded the product from your licensing site and from the trial area with no luck.  It's been over a week and the trial hangs every time I try and from the licensing site it says the product cannot be extracted. Is there a way to get the med

  • How do I receive messages on multiple apple id's on the same device

    I just upgraded to IOS7 and now I can't receive iMessages on one device for multiple Apple IDs.  I have two and typically receive messages on both but when I try to set up another email address to receive messages on in the device setting it tells me

  • Not able to use "Fixed recepients" option

    hi all, can anyone help me out, while configuring alert when i am adding user to alert category i created i am not able to do it , nothing appears. previously,  when i was creating alert category though the xi_admin role was assigned but still any ac

  • How to avoid a second credit check on sales order

    Hi, The sales order items had been entered. A credit check was carried out during sales order creation. The sales order was blocked due to credit check. The item in the sales order does not have sufficient stock available and so it was not confirmed

  • Problem in creating excel J2EE module for file adapter

    Hi All, I have created an J2EE project for Excel File Reading and added all the required libraries , build an ear of it and also referenced libraries in j2ee.engine.xml of ear , deployed the ear in J2ee engine of XI . Now i am trying to use this modu