Weblog/Podcast Newbie - how do I host a podcast?

I am running 10.4.9 Server and the weblog is running. The main thing I want to get going is podcasts. I can make them fine but where should I post them to? Can the m4a file be added to a blog or should I be testing a web page made in iWeb uploaded to Username/Sites? I tried to add a Podcast through the Weblog advanced tab and got a page of Apache errors. Very frustrating because I can't find any docs to describe Pod hosting - only creation. I'm at a University so if anyone can point me to their site I'd be truly greatful

Read the Podcast Creation Guide and Podcast Backbone Guide, links here
http://podcasting.corante.com/archives/2005/12/21/applespodcasting_server_foreducation.php
Then read Tweaking Weblog
http://homepage.mac.com/applesd/downloads/weblog_tweaks.pdf
All you have to do is to add the file to the blog, but there are a lot of tweaks.
Not all are that easy to find.
You can customize it quite a bit, here is our site
http://video.conncoll.edu/weblog/
But first make sure the basics are working. We'll all be much better off with Leopard Server's Podcast Producer, I hope!
Intel XServe   Mac OS X (10.4.8)  

Similar Messages

  • How can one invoke a WebLogic EJB from a BPEL Server hosted on OC4J?

    How can one invoke a WebLogic EJB from a BPEL Server hosted on OC4J?
    Reason I ask is I keep getting this error:
    javax.naming.NoInitialContextException: Cannot instantiate cla
    ss: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotF
    oundException: weblogic.jndi.WLInitialContextFactory]
    Note: I am using <bpelx:exec> as a way to execute some java program.
    Essentially my java client (essentially an EJB client hosted on Oc4J) needs access to wlclient.jar since it needs access to weblogic.jndi.WLInitialContextFactory. I have a EJB client running on BPEL server hosted on Oc4J that needs to access some EJBs hosted on weblogic.
    Where do I place this wlclient.jar so that BPEL PM can start peacefully and at runtime discover the InitialContextFactory classes?
    Placing it in the j2ee/home/applib doesn't solve the problem. The server fails to start up if I do this
    I tried placing it in BPEL-INF\lib directory ...
    I still get the same exception...see below for exception dump
    I verified the BPEL suitcase, and it in fact does contain the jar file wlclient.jar
    integration\orabpel\domains\default\deploy contains the bpel_BPELProcess2_1.0.jar file and snapshot of that is as follows:
    <PRE>
    &#9474; bpel.xml
    &#9474; BPELProcess2.bpel
    &#9474; BPELProcess2.jpr
    &#9474; BPELProcess2.wsdl
    &#9474; bpel_BPELProcess2_1.0.jar
    &#9474; build.xml
    &#9474; buildxml.copy
    &#9474; graphics.xml
    &#9474;
    &#9500;&#9472;&#9472;&#9472;BPEL-INF
    &#9474; &#9492;&#9472;&#9472;&#9472;lib
    &#9474; myEJB.jar
    &#9474; wlclient.jar
    &#9474;
    &#9500;&#9472;&#9472;&#9472;META-INF
    &#9474; MANIFEST.MF
    &#9474;
    &#9492;&#9472;&#9472;&#9472;output
    bpel_BPELProcess2_1.0.jar
    </PRE>
    I tried using the BPEL-INF\jar directory...Is this something the obant automatically detects? or do I have to modify the build.xml? I created this directory and let Jdev deploy to local BPEL server->default domain handle it
    #####################3
    I even tried copying the wlclient.jar to
    integration\orabpel\system\classes but this doesn't help since the BPEL PM fails to start if I explode this jar into this directory.
    In short,where do I place the wlclient.jar so that this exception can be contained.
    I edited the build.xml to point to the jar, that too didn't work, unless I made some mistake in the file
    <bpelc classpath="${basedir}/BPEL-INF/classes;${home}/system/classes;${home}/lib/j2ee_1.3.01.jar;${basedir}/BPEL-INF/jar/wlclient.jar" input="${basedir}/bpel.xml" rev="${rev}" deploy="${deploy}" />
    </target>
    </project>
    DETAILS on ERROR
    I get the following error
    Process "BPELProcess2" (revision "1.0") successfully compiled.
    <2005-12-14 09:17:55,770> <INFO> <default.collaxa.cube.engine.deployment> Proces
    s "BPELProcess2" (revision "1.0") successfully loaded.
    05/12/14 09:18:36 weblogic.jndi.WLInitialContextFactory
    javax.naming.NoInitialContextException: Cannot instantiate cla
    ss: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotF
    oundException: weblogic.jndi.WLInitialContextFactory]
    05/12/14 09:18:36 at javax.naming.spi.NamingManager.getInitialContext(Nami
    ngManager.java:652)
    05/12/14 09:18:36 at javax.naming.InitialContext.getDefaultInitCtx(Initial
    Context.java:243)
    05/12/14 09:18:36 at javax.naming.InitialContext.init(InitialContext.java:
    219)
    05/12/14 09:18:36 at javax.naming.InitialContext.<init>(InitialContext.jav
    a:195)
    05/12/14 09:18:36 at com.ejb.test.MapFinder.getDefaultMapName(Map
    Finder.java:37)
    ##################3
    with the bpelx all I have is two lines of code that creates a java object and calls a method on it.
    The method does this:
        private String initialContextFactory = "weblogic.jndi.WLInitialContextFactory";
        private String providerUrl = "t3://localhost:7001";
        private String urlPkgPrefixes = "";
        private String mapEjbJndiName = "ejb/mycompany/Redlands";
        public String getDefaultMapName() {
          try {
              Hashtable env = new Hashtable();
              env.put(Context.INITIAL_CONTEXT_FACTORY, getInitialContextFactory());
              env.put(Context.PROVIDER_URL, getProviderUrl());
              if (getUrlPkgPrefixes() != null && !getUrlPkgPrefixes().equals(""))
                  env.put(Context.URL_PKG_PREFIXES, getUrlPkgPrefixes());
              System.out.println("    " + getInitialContextFactory());
              System.out.println("    " + getProviderUrl());
              System.out.println("    " + getUrlPkgPrefixes());
              System.out.println("    " + getEjbName());
              // Get a naming context
              context = new InitialContext(env);
               Object ms  = context.lookup(getEjbName());
              MyEJBHome home = (MyEJBHome ) PortableRemoteObject.narrow(ms, MyEJBHome.class);
              myEjb = home.create();
              return myEjb.getDefaultName();
          } catch (RemoteException re){
              System.out.println(re.getCause().getMessage());
          catch (Exception ex) {
              ex.printStackTrace();
          return null; //if unable to resolve the context factory etc...
        }

    I did exactly as you suggested. I edited the application.xml and added this
    <library path="C:\ArcGIS\test\bea\wlclient.jar"/>
    I didn't add weblogic because the needed classes were all in wlclient.jar
    I also edited the BASE_OB_CLASSPATH to include this jar.
    Here is the result when I just start BPEL PM Server. Somehow BPEL PM doesn't like to have wlclient.jar in its classpath during startup.
    Failed to create "worker" bean; exception reported is: "javax.naming.NameNotFoun
    dException: remaining name: env
    at weblogic.j2eeclient.SimpleContext.lookup(SimpleContext.java:49)
    at weblogic.j2eeclient.SimpleContext.lookup(SimpleContext.java:57)
    at weblogic.j2eeclient.SimpleContext.lookup(SimpleContext.java:62)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at com.collaxa.cube.engine.ejb.impl.WorkerBean.ejbCreate(WorkerBean.java
    :49)
    at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.evermind.server.ejb.MessageDrivenHome.getInstance(MessageDrivenHo
    me.java:1235)
    at com.evermind.server.ejb.MessageDrivenHome$2.run(MessageDrivenHome.jav
    a:1150)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:534)
    <2005-12-29 13:39:05,281> <ERROR> <collaxa> <ServerManager::loadAllDomains>
    ORABPEL START-UP ERROR!!!!!!!!
    OraBPEL run-time system failed to start due to exception:
    Could not initialize jms connection pool.
    Could not initialize connection pool for connection factory "java:comp/env/jms/
    ollaxa/BPELInvokerQueueFactory"; the reason is remaining name: env/jms/collaxa/
    PELInvokerQueueFactory.
    Note: So what I did was to removed the entry from application.xml and tried with just obsetenv.bat having the wlclient.jar added to it. This too failed!!
    Here is a snapshot of the error I got.
    Process "BPELProcess2" (revision "1.0") successfully compiled.
    <2005-12-29 13:53:11,207> <INFO> <default.collaxa.cube.engine.deployment> Proces
    s "BPELProcess2" (revision "1.0") successfully loaded.
    05/12/29 13:53:32 Cannot instantiate class: weblogic.jndi.WLInitialContextFactor
    y
    05/12/29 13:53:32 javax.naming.NoInitialContextException: Cannot instantiate cla
    ss: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotF
    oundException: weblogic.jndi.WLInitialContextFactory]
    05/12/29 13:53:32 at javax.naming.spi.NamingManager.getInitialContext(Nami
    ngManager.java:652)
    05/12/29 13:53:32 at javax.naming.InitialContext.getDefaultInitCtx(Initial
    Context.java:243)
    05/12/29 13:53:32 at javax.naming.InitialContext.init(InitialContext.java:
    219)
    05/12/29 13:53:32 at javax.naming.InitialContext.<init>(InitialContext.jav
    a:195)
    05/12/29 13:53:32 at com.esri.adf.ejb.test.MapFinder.getDefaultMapName(Map
    Finder.java:57)
    05/12/29 13:53:32 at bpel.p0.ExecLetBxExe1.execute(ExecLetBxExe1.java:62)
    05/12/29 13:53:32 at com.collaxa.cube.engine.ext.wmp.BPELXExecWMP.__execut
    eStatements(BPELXExecWMP.java:49)
    05/12/29 13:53:32 at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perfo
    rm(BPELActivityWMP.java:185)
    05/12/29 13:53:32 at com.collaxa.cube.engine.CubeEngine.performActivity(Cu
    beEngine.java:3398)
    05/12/29 13:53:32 at com.collaxa.cube.engine.CubeEngine.handleWorkItem(Cub
    eEngine.java:1905)
    05/12/29 13:53:32 at com.collaxa.cube.engine.dispatch.message.instance.Per
    formMessageHandler.handleLocal(PerformMessageHandler.java:75)
    05/12/29 13:53:32 at com.collaxa.cube.engine.dispatch.DispatchHelper.handl
    eLocalMessage(DispatchHelper.java:100)
    05/12/29 13:53:32 at com.collaxa.cube.engine.dispatch.DispatchHelper.sendM

  • How do I host my podcast (made in garageband?)

    Hi everyone,
    I am a DJ that is interested in sharing podcasts with fans. I recently bought a mac and have started using Garageband. I have already created 2 podcasts, but my question is - how do I host them? How do I prepare them to be subscribed to? The reason I ask is that the only way I can see to host them is through a .Mac account - creating a "podcast web page" - from what I understand though, I don't have to have a .Mac account to post the podcasts I make within Garageband... so any information I can get from people who post podcasts would be great!
    Since I already have created the podcasts within Garageband, can anyone explain to me how I actually get them online and able to be subscribed to by friends and fans? Any and all information would be a great help! Thank you in advance!!!

    Okay, here are the general steps of what you need to do:
    1. You have your 2 podcast episodes. Great. Are they at a bit rate that makes the file a reasonable size for download? If they aren't, you need to tweak them in you audio applications until they are. Also, if you want to add artwork to your podcast, you need to open your file in iTunes and modify the ID3 tags. More info here.
    2. You need to find a host for your files, like Libsyn . . . or, some blogging services also offer server space, if you already have a blog. Here's a decent article on the subject.
    3. You need to upload your media files to your web host, and create an RSS feed so that people can find them. Creating a feed can sometimes be confusing - you can use a podcast generator (they are all over the web) or you can build the feed yourself. iWeb can also help you set up one, but iWeb can be difficult to navigate if you want to change your feed around later. Here's a basic tutorial on building a feed. Also, you should check out the Podcast Tech Specs, the FAQ, and the top 6 podcasting questions (sticky at the top of this forum).
    4. After your RSS feed has been built, you need to check that it is valid. Run it through feed validator and then use the "Advanced -> subscribe to podcast" menu in your iTunes player to test it out.
    5. Once your podcast has had all the bugs worked out and runs like a well-oiled machine (and you are happy with the URL where it resides), you have many options. If you want to use FeedBurner to count your subscribers, you need to set yourself up with them before you do anything else, however (because you will need their URL to submit to directories). But, if you don't feel the need to do that, you can start submitting your feed URL to any directories you want your podcast listed in . . .such as the iTunes Store, Podcast Alley, Podcast Pickle, etc.
    If any of these steps are confusing to you, ask before you leap. Otherwise have fun and good luck!

  • What is a quick alternative to launching an enterprise DPS app if Apple Store rejects the App? We are under a major deadline and can't wait for Apple. We want to host the app elsewhere. How do we host our DPS app on our client's website?

    What is a quick alternative to launching an enterprise DPS app if Apple Store rejects the App? We are under a major deadline and can't wait for Apple to approve. We want to host the app elsewhere. How do we host our DPS app on our client's website? Thanks.

    Unless I misunderstand the question, you can't do what you're asking to do. Apple doesn't allow you to bypass their store and host public apps on a website. The exception is an enterprise app, which requires an Enterprise account with both Apple and Adobe. This type of enterprise app can be distributed only within the company. If that's what you want to do, you can learn more here:
    Digital Publishing Suite Help | Creating viewer apps for private distribution
    Distributing enterprise iOS viewer applications with Digital Publishing Suite | Adobe Developer Connection
    Another option is to add the development app to several devices and use those for your demo.

  • How do I host multiple domains on a single Messaging Server?

    How do I host multiple domains on a single Messaging Server?
    <p>
    To host multiple domains on one Messaging Server, use the
    mailAlternateAddress attribute. If you want to host two domains
    (customer1.com and customer2.com) on your server mail1.domain.com,
    make sure that:
    The various domains (in DNS) point to the installed mail server
    (you must have the MX records that
    points mail for customer1.com to mail1.domain.com and
    customer2.com to mail1.domain.com)
    That each person receiving mail at customer1.com and
    customer2.com has an appropriate mailAlternateAddress
    attribute describing the appropriate email address. For
    instance, John Doe can have an email address (i.e. the value
    of the 'mail' attribute for the John Doe LDAP entry) of
    [email protected] and receive his mail on
    [email protected] (the value of the mailAlternateAddress
    attribute)
    With Messaging Server 3.5, mailAlternateAddress can take the
    form of @mail1.domain.com. If jdoe's mailAlternateAddress is
    set to @mail1.domain.com, mail sent to [email protected]
    will be delivered to [email protected]

    jaygatsby1123 wrote:
    So what exactly am I doing with virtual hosts?  There is a place for Aliases...  What would I put in the "Aliases" box?
    Any other host name that you want to resolve to the specified virtual host.  It's quite literally an alias.
    if you want www.example.com and www.example.org to end up at the same web site and you already have a virtual host — Apple refers to virtual hosts as sites — configured for www.example.com in Server.app, then you'd add www.example.org as an alias for the www.example.com virtual host (site).
    Virtual hosts are implemented in a web server using some details of the HTTP or HTTPS protocol, and what the web browser (client) specified.  The client gets handed an IP address or a domain name by the user, and the client then fetches the associated IP address for the target web server from the client's DNS services or local host database, and the client then connects to the IP address and passes over the text string that the user had requested — the IP address or domain name or even some local shortcut set up in the client system — via the HTTP or HTTPS protocol.  The web server receives and processes this arriving text string from the client, and uses it to select which web site to render back to the web client.   One subtle detail lurks here, too: the server's own DNS configuration really isn't involved in the selection of the virtual host.

  • How to change host name for management agent.

    Hi,
    I 've installed management agent for oracle, it's a part of Oracle Management Framework, but I have to change host name.
    I know how to change port number, but I've no idea how to change host name.
    Have you got any idea?
    Thank you in advance.
    Matin

    Hi,
    you can change it in System Landscape directory.
    Go to the http:yourportal.com:50000/sld
    then click on the Landscape and update the new host name.
    Raghu

  • How to access host files?

    how to access host files?

    Easy and not depends on your software version:
    press Shift+cmd+G while your finder window is open and active, you will get a new window with the field where you can write /etc/hosts
    Anyway to edit hosts file you should open it with the sudo command, this can be done in terminal window, not in Finder. Also easy and can be done next way:
    press Shift+Cmd+U while Finder window is open and active, then choose Terminal.app, and after it opens enter sudo nano /etc/hosts. You will be asked for password - this is the password you enter then you installing new application. You should know few commands to edit your hosts file:
    Previoius page/Next Page of the file - Ctrl+Y/Ctrl+V
    Add record - Input the text you need on the last free line of the file and then press Ctrl+O
    Delete record - put cursor on the line you want to delete and press Ctrl+K
    Undo - Ctrl+U
    Exit - Ctrl+X
    After edit your hosts file you should update DNS records - in terminal window enter the command dscacheutil -flushcache
    But if you really don't know what are you doing, my advice is do not touch your hosts file, ask for professional to do his job. Just like I'm doing usually. )))

  • How to specify Host Server for Replicated Virtual Desktops within RDVH Collection

    My question about how to specify Host Server for Replicated Virtual Desktops within Collection.
    I know there is a aswered thread on this, but that solution (wait a week) didn't work for me.
    So i have 2 servers, RDS01 and RDS02 with both 15 Hyper-V VM's and replicating to eachother. That part works fine.
    Now I wanted to make it easy for my users I build a Connection Broker: RDCB
    All went fine in that setup, but when I want to add the existing VM's from RDS01 and RDS02 to the collection it just radomly adds running ones and replicated ones.
    So both RDS01 and RDS02 have 15 VM's running and 15 replica's in stopped state, but when I look in my collection, it says RDS01 has 23 and RDS02 has 7 VM's. When I add them all, I see he wants to add a lot of stopped states replica's from RDS01 instead of
    the running ones from RDS02.
    How can I specify which one he should use? Or need I disable replication first, setup the whole RDCB collection thing, and then turn replication back on? Or does Hyper-V replication not work at all when used in a collection?
    I hope someone can help out here. I'm googling and trying for 1,5 week now, but i can;t get it right.
    Thanks in advance.

    Hi Robin,
    Thanks for your patience.
    After you removed Replication from 1 machine on both RDS01 and RDS02, please restart that machine. After that, please add this machine to the RD collection again to test how the issue goes.
    As we know, Hyper-V Replica provides asynchronous replication of Hyper-V virtual machines between two hosting servers. It is simple to configure and does not require either shared storage or any particular storage hardware. Any server workload that can be
    virtualized in Hyper-V can be replicated. Replication works over any ordinary IP-based network, and the replicated data can be encrypted during transmission. Hyper-V Replica works with standalone servers, failover clusters, or a mixture of both. The servers
    can be physically co-located or widely separated geographically. The physical servers do not need to be in the same domain, or even joined to any domain at all.
    Currently, would you please add only running state VMs to the RD CB collection? And would you please capture some screenshots of the error message? Thanks very much for your cooperation.
    Best regards,
    Sophia Sun
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How to simulate HOST command from DB Procedure

    Hi,
    I'm using Oracle 9.2 database on Win2000 PC.
    I need to start .bat file from a database procedure. More generaly how to simulate HOST command that I'm using from Forms6i.
    Thanks,

    Thanks for the reply,
    But, I am able to successffuly execute HOST from SQL+
    only from the PC where the database is, not from the client. My .bat file is on the server side.
    From the procedure I was not able to run it in either cases
    Procedure TEST
    IS
    BEGIN
    EXECUTE IMMEDIATE 'host C:\MYBATCHFILE.BAT'
    END;
    returns ORA-00900 INVALID SQL STATMENT
    with EXECUTE IMMEDIATE '$ C:\MYBATCHFILE.BAT' returns Invalid Character Error.
    BR,

  • How can i host a server for assetto corsa

    How can i host a server for assetto corsa with log me in ?We are like 5 friends, and we are on diffrent networks Pls Help, if this is possible that is

    National Instruments also offers a web UI builder, and you can learn more about it here.  This allows you to build a web-based user interface for your programs.  I have never used it, but it says it can compile "the code into a Silverlight .XAP file, which can then be deployed to any web server for a user to invoke from a web browser".  Maybe this could run on your web server.

  • Weblogic production cluster: how to configure it for ADF, ADF Faces, BC?

    Given a production ready cluster of Weblogic 10.2. What should I do to convert it an ADF ready weblogic server ? How to make it as usable for ADF as the integrated weblogic in jdeveloper?
    any official guide from Oracle ?
    thanks,
    fabio

    For WLS 11g (aka 10.3.x) you must install the Application Development Runtime (get it from here http://www.oracle.com/technology/software/products/middleware/htdocs/fmw_11_download.html) and extend your existing domains.
    Check the Installation Guides first: http://download.oracle.com/docs/cd/E14571_01/install.htm
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How do I host a website with server?

    How do I host a website with server?

    Set up public DNS with a DNS provider pointing to your public static IP address, set up private DNS on your local network (OS X Server requires this) using Server.app DNS services, set up port-forwarding for TCP port 80 and TCP port 443 at your firewall-gateway from your public static IP address through NAT to your private static IP address, establish one or more virtual hosts (web sites) within the web setup of Server.app, and populate the web directories with the contents you wish to serve.  Those contents will be the text data and/or images or other data you wish to serve, and may be a web content management system that can store and retrieve the web content and manage the links among pages, the theming and the rest of the baggage.
    It's often easier and cheaper for a small-scale entity or a low-traffic web site to be hosted by any of various web-hosting providers.  They provider deals with keeping the content management system and the servers current, having enough server and network bandwidth to serve the contents to the Internet, and you can concentrate on the web site contents.

  • How to develop host application to test my applet

    Hi,
    Can anybody suggest how to develop host application for testing the small java card applets like heloworld..

    hi  Markusg,
    Why not look for Direct Input Program RV14BTCI for creating, changing and deleting price conditions. This will be convinient for you in handling bulk data as well.
    Regards
    Saurabh Goel

  • Newbie here.. how to create host and submit a podcast.. also I am on a PC..

    So this is what I want to do..
    I already uploaded my music track to my mobileme account.. now how do I get it to be podcast in itunes?
    There are tons of apps, but none of them seem clear to me..
    can anyone guide me?
    Thanks
    -Luis

    Thank you roger.. the other post helped with mobileme.. I will look into this link

  • Newbie: how to host 10.4 netinstall images on a 10.5 server

    I tried almost everything but I don't get it to work.
    Technical info:
    1 server running 10.5, Netboot, NSF (which should do the trick according to the documentation.
    1 client running 10.4 clean installation + firefox
    Used tools:
    Server admin tools 10.4 and 10.5
    Carbon Copy Cloner
    Disk utility
    Netrestore
    What did I try:
    Created an image of an 10.5 leopard (not server) installation dvd with the server admin tools (system image utility) and netinstall runs perfect. (I don't see netrestore but just the installer of 10.5)
    Also did this with 10.5 server image and also that worked without any problems.
    Created an master image of the 10.4 client (all the above named tools have been tried). Image creation is no problem. creating .nbi folder is no problem. Copy it to the NetBootSP0 folder, still no problem. Tried to boot from the image and there is the problem.
    Client boots with Netrestore. I can select the NetBootSP0 folder and the *.nbi folder and the image.
    I click on restore and got only this message.
    -sh-2.05b# /usr/bin/more /private/tmp/netrestore.err /private/tmp/netrestore.log /var/log/system.log
    ======= NetRestore (v. 3.3.6): Tue Jan 15 06:06:52 PST 2008 =======
    Command: /usr/sbin/asr
    Source: /private/tmp/netboot/MacHD104NetInstallSet.nbi/NetInstall-Restor
    e.dmg
    Target: /Volumes/Mac HD
    Arguments: -noprompt -noverify
    NetBooted: Yes
    Boot volume OS info:
    Operating System: 10.4.11 (8S2167)
    Mach kernel version:
    Darwin Kernel Version 8.11.1: Wed Oct 10 18:23:28 PDT 2007; root:xnu-79
    2.25.20~1/RELEASE_I386
    Kernel configured for up to 2 processors.
    2 processors are physically available.
    2 processors are logically available.
    Processor type: i486 (Intel 80486)
    Processors active: 0 1
    Primary memory available: 2.00 gigabytes
    Default processor set: 29 tasks, 97 threads, 2 processors
    Load average: 0.31, Mach factor: 1.68
    Mounted volume information:
    Filesystem 512-blocks Used Avail Capacit
    38%e.dmg
    Target: /Volumes/Mac HD
    Arguments: -noprompt -noverify
    NetBooted: Yes
    Boot volume OS info:
    Operating System: 10.4.11 (8S2167)
    Mach kernel version:
    Darwin Kernel Version 8.11.1: Wed Oct 10 18:23:28 PDT 2007; root:xnu-792.25.20~1/RELEASE_I386
    Kernel configured for up to 2 processors.
    2 processors are physically available.
    2 processors are logically available.
    Processor type: i486 (Intel 80486)
    Processors active: 0 1
    Primary memory available: 2.00 gigabytes
    Default processor set: 29 tasks, 97 threads, 2 processors
    Load average: 0.31, Mach factor: 1.68
    Mounted volume information:
    Filesystem 512-blocks Used Avail Capacity Mounted on
    /dev/disk2s9 1637408 1207816 413224 75% /
    devfs 218 218 0 100% /dev
    fdesc 2 2 0 100% /dev
    <volfs> 1024 1024 0 100% /.vol
    /dev/disk3 190 18 164 10% /Volumes
    /dev/disk4 2918 202 2572 7% /private/tmp
    /dev/disk5 190 14 168 8% /private/var/launchd
    /dev/disk6 934 128 760 14% /private/var/db
    /dev/disk0s2 233769824 12991440 220778384 6% /Volumes/Mac HD
    /dev/disk1s3 156039264 22823536 133215728 15% /Volumes/Ext-80GB
    192.168.50.230:/Library/NetBoot/NetBootSP0 155629664 23122016 131995648 15% /private/tmp/netboot
    /dev/disk7s9 1637408 1207816 429592 74% /Volumes/NetInstall-Restore 1
    Source information:
    -rw-rw-r-- 1 root admin 838860800 Jan 15 02:19 /private/tmp/netboot/MacHD104NetInstallSet.nbi/NetInstall-Restore.dmg
    06:06:52 Initiating ASR restore...
    06:06:54 Restore failed
    ~
    ~
    ~
    ...skipping...
    SETTINGS,-2,Target disk name: Mac HD
    SETTINGS,-2,Target disk mount point: /Volumes/Mac HD
    SETTINGS,-2,Target disk device number: /dev/disk0s2
    PREPARING,-1,
    INITIATING_ASR,0,0
    VALIDATE_TARGET,-1,0
    VALIDATE_SOURCE,-1,0
    VALIDATE_SOURCE,-1,0
    VALIDATE_SOURCE,1,0
    VALIDATE_SOURCE,3,0
    VALIDATE_SOURCE,5,0
    FAILURE_ASR,-2,0
    ...skipping...
    Jan 15 06:05:22 localhost kernel[0]: hi mem tramps at 0xffe00000
    Jan 15 06:05:22 localhost kernel[0]: PAE enabled
    Jan 15 06:05:22 localhost kernel[0]: 64 bit mode enabled
    Jan 15 06:05:22 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jan 15 06:05:22 localhost kernel[0]: vmpagebootstrap: 512640 free pages
    Jan 15 06:05:22 localhost kernel[0]: migtable_maxdispl = 71
    Jan 15 06:05:22 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Jan 15 06:05:22 localhost kernel[0]: ACPI CA 20060421
    Jan 15 06:05:22 localhost kernel[0]: AppleIntelCPUPowerManagement: ready
    Jan 15 06:05:22 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Jan 15 06:05:22 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Jan 15 06:05:22 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jan 15 06:05:22 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jan 15 06:05:22 localhost kernel[0]: using 10485 buffer headers and 4096 cluster IO buffer headers
    Jan 15 06:05:22 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Jan 15 06:05:22 localhost kernel[0]: Started CPU 01
    Jan 15 06:05:22 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Jan 15 06:05:22 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Jan 15 06:05:22 localhost kernel[0]: Previous Shutdown Cause: 3
    Jan 15 06:05:22 localhost kernel[0]: Security auditing service present
    Jan 15 06:05:22 localhost kernel[0]: BSM auditing present
    Jan 15 06:05:22 localhost kernel[0]: disabled
    Jan 15 06:05:22 localhost kernel[0]: From path: "<dict><key>IOProviderClass</key><string>IONetworkInterface</string><key>IOPare ntMatch</key><dict><key>IOPropertyMatch</key><dict><key>IOMACAddress</key><data format="hex">0017f2d89614</da
    ta></dict></dict></dict>", Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IONetworkInterface</string><key>IOParentMatch</key><dict ID="2"><key>IOPropertyMatch</key><dict ID="3"><key>IOMACAddress</key><data ID="4">ABfy2
    JYU</data></dict></dict></dict>
    Jan 15 06:05:22 localhost kernel[0]: display: family specific matching fails
    Jan 15 06:05:22 localhost kernel[0]: yukonosx: Ethernet address 00:17:f2:d8:96:14
    Jan 15 06:05:22 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C/IOPCI2PCIBridge/ PXS1@0/yukonosx/IOEthernetInterface
    Jan 15 06:05:22 localhost kernel[0]: BSD root: en0
    Jan 15 06:05:22 localhost kernel[0]: netboot: using network interface 'en0'
    Jan 15 06:05:22 localhost kernel[0]: netboot: retrieving IP information from DHCP response
    Jan 15 06:05:22 localhost kernel[0]: netboot: IP address 192.168.50.189 netmask 255.255.255.0 router 192.168.50.1
    Jan 15 06:05:22 localhost kernel[0]: netboot: adding default route 192.168.50.1
    Jan 15 06:05:22 localhost kernel[0]: netboot: retrieving root path from BSDP response
    Jan 15 06:05:22 localhost kernel[0]: Server 192.168.50.230 Mount /Library/NetBoot/NetBootSP0 Image /MacHD104NetInstallSet.nbi/NetInstall-Restore.dmg
    Jan 15 06:05:22 localhost kernel[0]: USB caused wake event (EHCI)
    Jan 15 06:05:22 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 0019e3fffe80c6ea; max speed s800.
    Jan 15 06:05:22 localhost kernel[0]: Extension "com.apple.driver.AppleUSBTCKeyboard" has no kernel dependency.
    Jan 15 06:05:22 localhost kernel[0]: Extension "com.apple.driver.AppleUSBTCKeyEventDriver" has no kernel dependency.
    Jan 15 06:05:22 localhost kernel[0]: CSRHIDTransitionDriver::probe:
    Jan 15 06:05:22 localhost kernel[0]: CSRHIDTransitionDriver::start before command
    Jan 15 06:05:22 localhost kernel[0]: Extension "com.apple.driver.iTunesPhoneDriver" has no kernel dependency.
    Jan 15 06:05:22 localhost kernel[0]: CSRHIDTransitionDriver::stop
    Jan 15 06:05:22 localhost kernel[0]: IOBluetoothHCIController::start Idle Timer Stopped
    Jan 15 06:05:22 localhost kernel[0]: AppleYukon - en0 link active, 1000-Mbit, full duplex, symmetric flow control enabled
    Jan 15 06:05:22 localhost kernel[0]: root on 192.168.50.230:/Library/NetBoot/NetBootSP0
    Jan 15 06:05:22 localhost kernel[0]: netboot_setup: calling dirootimage
    Jan 15 06:05:22 localhost kernel[0]: IOHDIXController: NOTE: administrator is creating non-ejectable disk image
    Jan 15 06:05:22 localhost kernel[0]: netboot: root device 0xe00000d
    Jan 15 06:05:23 localhost memberd[38]: memberd starting up
    Jan 15 06:05:24 localhost configd[35]: loading com.apple.print.notification
    Jan 15 06:05:24 localhost configd[35]: adding com.apple.SystemConfiguration.PreferencesMonitor
    Jan 15 06:05:24 localhost configd[35]: loading com.apple.SystemConfiguration.PowerManagement
    Jan 15 06:05:24 localhost configd[35]: adding com.apple.SystemConfiguration.InterfaceNamer
    Jan 15 06:05:24 localhost configd[35]: loading com.apple.SystemConfiguration.DynamicPowerStep
    Jan 15 06:05:24 localhost configd[35]: loading com.apple.SystemConfiguration.Bluetooth
    Jan 15 06:05:24 localhost configd[35]: loading com.apple.SystemConfiguration.BatteryUpdater13
    Jan 15 06:05:24 localhost configd[35]: adding com.apple.SystemConfiguration.KernelEventMonitor
    Jan 15 06:05:24 localhost configd[35]: adding com.apple.SystemConfiguration.LinkConfiguration
    Jan 15 06:05:24 localhost configd[35]: loading com.apple.SystemConfiguration.ATconfig
    Jan 15 06:05:25 localhost lookupd[43]: lookupd (version 369.6) starting - Tue Jan 15 06:05:25 2008
    Jan 15 06:05:25 localhost configd[35]: loading com.apple.SystemConfiguration.EAPOLController
    Jan 15 06:05:25 localhost configd[35]: loading com.apple.SystemConfiguration.IP6Configuration
    Jan 15 06:05:25 localhost configd[35]: loading com.apple.SystemConfiguration.IPConfiguration
    Jan 15 06:05:25 localhost configd[35]: adding com.apple.SystemConfiguration.IPMonitor
    Jan 15 06:05:25 localhost configd[35]: adding com.apple.SystemConfiguration.Kicker
    Jan 15 06:05:25 localhost configd[35]: loading com.apple.SystemConfiguration.PPPController
    Jan 15 06:05:26 localhost diskarbitrationd[37]: disk2s9 hfs 1810949D-6F5C-34D8-9FE7-C84909B7C99D NetInstall-Restore /
    Jan 15 06:05:26 localhost DirectoryService[42]: Launched version 2.1 (v353.6)
    Jan 15 06:05:26 localhost diskarbitrationd[37]: disk0s2 hfs D40F974A-07A0-3165-BE9E-A3FF21247526 Mac HD /Volumes/Mac HD
    Jan 15 06:05:26 localhost diskarbitrationd[37]: disk1s3 hfs 47260607-3621-3430-8DA8-3C845734F792 Ext-80GB /Volumes/Ext-80GB
    Jan 15 06:05:26 localhost configd[35]: Starting kicker for enable-network
    Jan 15 06:05:26 localhost configd[35]: Starting kicker for network_change
    Jan 15 06:05:26 localhost configd[35]: Starting kicker for AppleFileServer
    Jan 15 06:05:26 localhost configd[35]: PM configd:_copyPMSettings(): using profile #1 for power source Battery Power
    Jan 15 06:05:26 localhost configd[35]: PM configd:_copyPMSettings(): using profile #2 for power source AC Power
    Jan 15 06:05:28 localhost configd[35]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Jan 15 06:05:28 localhost configd[35]: posting notification com.apple.system.config.network_change
    Jan 15 06:05:28 localhost lookupd[94]: lookupd (version 369.6) starting - Tue Jan 15 06:05:28 2008
    Jan 15 06:05:28 localhost enable-network[95]: process network configuration change
    Jan 15 06:05:28 localhost configd[35]: hostname (multicast DNS) = 192-168-50-189
    Jan 15 06:05:28 192-168-50-189 configd[35]: setting hostname to "192-168-50-189.local"
    Jan 15 06:05:28 192-168-50-189 configd[35]: target=enable-network: exit status = 1
    Jan 15 06:05:28 192-168-50-189 configd[35]: target=enable-network: disabled
    Jan 15 06:05:28 192-168-50-189 mDNSResponder-108.6 (Jul 19 2007 11: 41:28)[116]: starting
    Jan 15 06:05:28 192-168-50-189 NETRESTORE: Time to boot: 17 seconds
    Jan 15 06:05:31 192-168-50-189 mDNSResponder: Adding browse domain local.
    Jan 15 06:05:33 192-168-50-189 NETRESTORE: Volume /dev/disk0 mounted\n
    Jan 15 06:05:33 192-168-50-189 NETRESTORE: Volume /dev/disk1 mounted\n
    Jan 15 06:05:34 192-168-50-189 NETRESTORE: Volume /dev/disk2 mounted\n
    Jan 15 06:05:34 192-168-50-189 NETRESTORE: Volume /dev/disk3 mounted\n
    Jan 15 06:05:34 192-168-50-189 NETRESTORE: Volume /dev/disk4 mounted\n
    Jan 15 06:05:34 192-168-50-189 NETRESTORE: Volume /dev/disk5 mounted\n
    Jan 15 06:05:35 192-168-50-189 NETRESTORE: Volume /dev/disk6 mounted\n
    Jan 15 06:05:35 192-168-50-189 NETRESTORE: Mounting NetBoot sharepoint
    Jan 15 06:05:35 192-168-50-189 NETRESTORE: Launching NetRestore.app
    Jan 15 06:05:41 192-168-50-189 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: (-1) Cannot use ATS Persistent Store - switching to old FODB cache code
    Jan 15 06:05:47 192-168-50-189 NETRESTORE: READY -2 0
    Jan 15 06:06:03 192-168-50-189 NETRESTORE: SETTINGS -2 Target disk name: Mac HD
    Jan 15 06:06:03 192-168-50-189 NETRESTORE: SETTINGS -2 Target disk mount point: /Volumes/Mac HD
    Jan 15 06:06:03 192-168-50-189 NETRESTORE: SETTINGS -2 Target disk device number: /dev/disk0s2
    Jan 15 06:06:03 192-168-50-189 NETRESTORE: PREPARING -1
    Jan 15 06:06:05 192-168-50-189 NETRESTORE: VALIDATE_SOURCE -1 0
    Jan 15 06:06:06 192-168-50-189 NETRESTORE: VALIDATE_SIZES 11 0
    Jan 15 06:06:52 192-168-50-189 NETRESTORE: SETTINGS -2 Target disk name: Mac HD
    Jan 15 06:06:52 192-168-50-189 NETRESTORE: SETTINGS -2 Target disk mount point: /Volumes/Mac HD
    Jan 15 06:06:52 192-168-50-189 NETRESTORE: SETTINGS -2 Target disk device number: /dev/disk0s2
    Jan 15 06:06:52 192-168-50-189 NETRESTORE: PREPARING -1
    Jan 15 06:06:53 192-168-50-189 NETRESTORE: VALIDATE_SOURCE -1 0
    -sh-2.05b#
    Can someone explain me what is going wrong?
    I have to say that this error only shows when i try to boot from the netinstall image i created with the 10.4 system image utility.
    The nbi image i created with netrestore helper does boot, shows me the installer, says it is completed but when it is rebooting the OS is still the same as before the installation, very weird.
    According to this online document it should work as long as you create it with the right tools (10.4 tools for 10.4 images):
    http://docs.info.apple.com/article.html?artnum=306542
    But probably I missed a little detail which I also could not find here on the forum an also not on other forum.
    Thanks in advance for your time responding to this.

    Never mind, I already found the solution myself.
    What I did wrong was:
    - not copying the master image to the nbi folder
    - selecting the netinstall-restore.dmg image as source to copy to my HD.
    The thing is, when you create a netinstall image for 10.5, the image itself is already included in the netinstall image so you don't have to do anything else.
    With the 10.4 image however, you also have to copy the master image to the NetBootSP0 directory.
    In the *.nbi folder contains an netinstall-restore.dmg file. But that is only to boot you to netrestore, it's not the image itself.
    Other alternative is to copy the images to another folder that you share with AFP and adjust the configuration of netrestore like described in this manual:
    http://www.shellharbourd.det.nsw.edu.au/pdf/misc/osxrestoringnet.pdf
    This manual was also how I figured out that I forgot to copy the image to the NetBootSP0 folder.

Maybe you are looking for

  • Trying to create a contact sheet for passport photos....HELP!

    Aperture 3 and iMac are both new to me and after a lot of research, I finally figured out how to make a contact sheet for my passport photo so that I don't have to pay 10.00 for a measly 2x2 photo at Walgreen's. I went to file>print>selected the 8x10

  • Shape does not stay on the same page

    How do I get shapes to stay where I put them? Specifically: 1) How can I draw *circles around words* and make them STAY around those words, even when I add text and page-breaks above those words? 2) How can I draw *arrows ON my pictures* and make the

  • Is a pram/smc reset without a battery possible?

    I have a macbook aluminum unibody 2008. It has a removable battery, but it died on me. I've been running my macbook on the power adapter. My down arrrow key does not work and the time is incorrect. I tried to do a pram reset, but it didn't work. Do I

  • How to export dynamic translations

    Hello, I have an application where I have defined various dynamic translation strings (Used by static LOVs). Now I want to move the application from e.g. development enviroment to production enviroment. As far as I've seen, the dynamic translations I

  • JNLP prompted to Save (only) in Windows Server 2003 SP1 over https

    In Windows Server 2003 when using https to download the jnlp and jars, IE 6.0 prompts to Save the jnlp file. It does not give the option to open it straight from IE.. The IE settings are: Do not save encrypted files to disk - off/unchecked Empty Temp