Import solaris media - please remind me

Hi,
I am on N1SPS 5.2. I've already imported created profiles for various releases
of Solaris throughout the year, but I've forgotten what to do!
Can someone please remind me?
What I have so far:
Solaris 10 807 media NFS mounted to my workstation, with s0 of the disk mounted
to /mnt on masterserver.
When I go to N1SPS, I go to "OS Provisioning" and "Create Profile".
I have a template created with all my details, paths and so on. What next?
I also have a remote host which is a Local Distributor - I need to get the same
onto there as well.
Please remind me about what to do!
rachel

A pity there is no checklist ... maybe it would be worthwhile creating one and sharing it
till then I suggest:
http://docs.sun.com/app/docs/coll/1502.1?l=en
( http://docs.sun.com/app/docs/doc/819-6519?l=en )
and for 6.0:
http://docs.sun.com/app/docs/coll/1119.7
( http://docs.sun.com/app/docs/doc/820-2485/6ne37q9q2?a=view )
hth
L

Similar Messages

  • Import javax.media.* is not working

    Hi,
    I'm new to java and i was trying to create a media player using the javax.media package from the JMF. I installed it using the windows setup and it seemed to install correctly. Testing it with the java.sun.com applet tester worked. The media player is also working...
    The only problem is that when i import javax.medis.* it gives me a compiler error:
    package javax.media does not exist
    my code is as follows:
    import java.applet.*;
    import java.awt.*;
    import java.net.*;
    import javax.media.*;
    public class PlayerApplet extends Applet {
         Player player = null;
    public void init() {
         setLayout( new BorderLayout() );
         String mediaFile = getParameter( "FILE" );
         try{
              URL mediaURL = new URL( getDocumentBase(), mediaFile );
              player = Manager.createRealizedPlayer( mediaURL );
              if (player.getVisualComponent() != null)
              add("Center", player.getVisualComponent());
              if (player.getControlPanelComponent() != null)
              add("South", player.getControlPanelComponent());
         catch (Exception e){
              System.err.println( "Got exception " + e );
    public void start() {
         player.start();
    public void stop() {
         player.stop();
         player.deallocate();
    public void destroy() {
         player.close();
    } Could someone please help me out here... i've tried all the few probable solutions... but to no avail...

    Well changing the classpath to the correct one still didn't work.... but i still found the solution.
    The Developer Environment that i use is JCreator and it seems it ignores the classpath and has its own settings for the class path... changing this also didn't work.
    What worked was copying the Jar files from the JMF2.1.1e installed location into the path of the original classpath

  • (HELP!)How can I import Windows Media Player Playlists, into iTunes Playlists, with Music . .  for an iPod

    How can I import Windows Media Player Playlists, into iTunes Playlists, with Music . .  for an iPod
    We are having no luck with the thousands of songs we have to manualy add to a particular playlist in iTunes alone. .. there must be a simpler way! How can this be done . . . if there is and it's complicated, is the Genius allowed to help us out with this? They seem to only master Mac's only. .  or can they help us? PL E A SE E E  HELLPPP!

    tt2,
    Your very helpful and knowledgeable. I for one appreciate all the hardwork and help you have been giving the people on theses lists, especially with the problems associated with the "importing playlists" from windows media. Unfortunately I need more help if you or someone else can provide it. I followed all the steps you have instructed so far in the threads I have seen. Unfortunately nothing so far works for me. Maybe you or someone can help me, I'd really appreciate it. I tried the notepad++ method and when I click on save I always get a notepad file that my iTunes can't do anything with. I click the "convert to UTF-8 without BOM" then click save as and it still saves as a notepad file. I am also unable to find the \n\ file path to replace with my \C:\ filepath. Here is a copy of the first part of one of my playlists:
    <?wpl version="1.0"?>
    <smil>
        <head>
            <meta name="Generator" content="Microsoft Windows Media Player -- 12.0.7601.17514"/>
            <meta name="ItemCount" content="161"/>
            <author/>
            <title>Power Surge</title>
        </head>
        <body>
            <seq>
                <media src="..\Various Artists\Mixed Tape 2\13 Out of Control.wma" tid="{650561AF-AA9D-4EA3-84CC-2F09C24DF3B3}"/>
                <media src="..\Various Artists\Mixed Tape 1\12 One Step Closer.wma" tid="{EE5ADD9D-A879-404A-BC60-CE841045BCB6}"/>
                <media src="..\Various Artists\Mixed Tape 1\15 Click Click Boom.wma" tid="{0F71941C-1B67-425F-BDAA-246618709179}"/>
    Now I went and switched the part from  <media src="..\ to <media src="C:\ in all the files in hopes that was where I am supposed to have my drive letter but it didn't seem to help. Please forgive my encoding ignorance if that's what my problem is. I hope you can help.  Thanks in advance.
    Madmaxneo

  • I want to extract the Solaris media using "unpackmedia" option

    pack and unpack options operates on only miniroot archives and not on whole Solaris media.
    I want to extract the Solaris media using "unpackmedia" option.
    unpackmedia option of root_archive internally extract miniroots and additionally it extracts X.cpio.bz2 and pkg_db.cpio.bz2 based on some manipulations.
    man page of root_archive on solaris 11 still shows the information about these two removed options.
    Please let me know is there other way to achieve operations same as provided by unpackmedia option?
    Regards,
    Umesh

    When you intermix java/javascript code like this you have to realise the order in which this occurs.
    1 - all java code is executed - produces a static html
    2 - html is loaded, and javascript is run.
    So you can't run java code from an onClick event on the page.
    You have to submit a request (ie submit form/click link) to run java code, and it sends a response (new page) to the browser.
    So what you would end up with is code like this on your page
    Assuming you have three items in your list: {Item0, Item1, Item2} this will be the result:
    var z=0
    // for item0
    c.options[z]=new Option("Name0",Id0)
    z++
    c.options[z]=new Option("Name1",Id1)
    // for item1
    c.options[z]=new Option("Name0",Id0)
    z++
    c.options[z]=new Option("Name1",Id1)
    // for item2
    c.options[z]=new Option("Item0",Item0)
    z++
    c.options[z]=new Option("Item1",Item1)Suggestions as to what is wrong with this code
    1 - you only increment z once on each loop, but save two items.
    2 - you aren't using your counter 'I' in the get method.
    3 - you might need quotes around the values as well as the names.
    Personally, I think you're going the entire wrong way about this.
    Should you be using public static variable attributes? Are these values to be the same for every single user in the system?
    I would prefer to use a jsp scope (application scope if it is for all users) and just generate the html for the select right onto the page, rather than generating javascript to run and build the list.
    I would also use JSTL
    ie
    <select name="mySelect>
      <c:forEach var="asset" items="${assetList}">
        <option value="${asset.id}"><c:out value="${asset.name}"/>
      </c:forEach>
    </select>

  • How to import javax.media.*

    i am doing project on audio ,video transmission over the LAN.
    after installing JMF1.2.1, when i run the program i am getting the error
    "D:\raghu\amp\audiolabreports\ampcom\AmpCom.java:3: package javax.media does not exist
    import javax.media.*;
    ^
    1 error"
    please help me out
    -raghnath.g

    Hi,
    You need to place jmf.jar in your classpath.
    -Amol

  • I accidentally imported all media files on my iMac into iMovie.

    I accidentally imported all media files on my iMac into iMovie. Now I have over 10,000 "clips" in a single event library. It is massive and causing performance issues. Some are photos, some are movies, some are music/voice memos and many are stock computer icons/images. If I delete them from iMove (via move to trash) via select all, am I deleting them from iMovie or from my iMac?

    No problem!  Also, a quick bit of information.  If you did not already know this, when you empty the trash, it does not actually delete your files.  It just allows the space that those files were taking up to be overwritten.  That's why you can go to your Time Machine and recover these files.  So, your computer will not improve in the speed department that much after deletion.  I'm pretty sure there's a way to completely wipe files off of your computer, therefore actually regenerating space, however I do not know how to get through that process.  You may want to ask this in a new separate discussion.  Also, please respond to my reply (with a link) right after your add the conversation if you want to create the thread, because I'd like to know too, based on the fact that I cleared 259.82GB off of my computer within the last few months in one sitting.

  • OS is Mountain Lion, upgraded no problems, used an external Hard drive for my time machine, now my iPhoto will not show any of my photo's or ay new ones I import! Help please!!

    OS is Mountain Lion, upgraded no problems, used an external Hard drive for my time machine, now my iPhoto will not show any of my photo's or ay new ones I import! Help please!!

    Do you get this window when you hold down the Command+Option keys and launch iPhoto?
    If not then you're not holding down both keys long enough.
    OT

  • Pages "document can't be opened"... Important document! Please help...

    I made a document in pages this morning and attempted to open it just now, but it says "document can't be opened". I have tried restarting the app and ipad, nothing seems to work. I can't email it to myself either, because it can't create an email or export the document because the 'creating email,page just loads forever. I need this important document ASAP, please, do you have any suggestions? The app and my ipad 2 are both updated.
    Thank you!

    When this has happened to me, I have never been able to successfully open the document.
    Have you tried going to iCloud.com and see if you can open the file on your computer? If that doesn't work, more than likely the document isn't going to open. It's corrupt for some reason, and without being able to get into the file, there is no way to email it or change the format as you already know,

  • Importation video impossible, please help

    Bonjour, I m working with Adobe Premiere pro CS3 on Win Xp sp3.
    Its now impossible to import any media video !?
    Look like a audio media.
    Tanx for help and have a happy new year
    Have a look on my video.

    To the OP - welcome to the forum.
    In follow up to Jim's comments:
    This ARTICLE will give you some background on the AVI "wrapper," and tell you how to "peek inside" that wrapper.
    If the CODEC inside the AVI is DivX/Xvid, you will most likely have issues and conversion of that delivery-only material is the best course of action.
    If it's MJPEG, then there are "fixes" in most cases. See this ARTICLE, if MJPEG.
    Good luck, and let us know the full specs. of that AV material.
    Hunt

  • Import Solaris 11 express

    Sooo.. Import Solaris 11 Express not supported?
    Job ID : Louie.161
    Job Name : -
    Job Type : VirtImageLibrary.importImagesFromUrl
    Job Desc : -
    Run ID : 1
    Status : FAILED
    Mode : Actual run
    Owner : root
    Create Date : 01/28/2011 03:13:50 PM CET
    Start Date : 01/28/2011 03:13:50 PM CET
    Last Updated : 01/28/2011 03:13:59 PM CET
    Execution Order : SEQUENTIAL
    Failure Policy : CONTINUE_ON_FAILURE
    Task : ISOImageTask
    Target : OPSLIB
    Status : FAILED
    Result : Only Solaris, Red Hat or SUSE OS images are supported for OS provisioning. : The ISO file being imported is not supported by OpsCenter (32499)
    Logs :
    01/28/2011 03:13:59 PM CET INFO Start adding image info to database
    01/28/2011 03:13:59 PM CET INFO Only Solaris, Red Hat or SUSE OS images are supported for OS provisioning.
    Or what is wrong?

    Sooo.. Import Solaris 11 Express not supported?
    Job ID : Louie.161
    Job Name : -
    Job Type : VirtImageLibrary.importImagesFromUrl
    Job Desc : -
    Run ID : 1
    Status : FAILED
    Mode : Actual run
    Owner : root
    Create Date : 01/28/2011 03:13:50 PM CET
    Start Date : 01/28/2011 03:13:50 PM CET
    Last Updated : 01/28/2011 03:13:59 PM CET
    Execution Order : SEQUENTIAL
    Failure Policy : CONTINUE_ON_FAILURE
    Task : ISOImageTask
    Target : OPSLIB
    Status : FAILED
    Result : Only Solaris, Red Hat or SUSE OS images are supported for OS provisioning. : The ISO file being imported is not supported by OpsCenter (32499)
    Logs :
    01/28/2011 03:13:59 PM CET INFO Start adding image info to database
    01/28/2011 03:13:59 PM CET INFO Only Solaris, Red Hat or SUSE OS images are supported for OS provisioning.
    Or what is wrong?

  • Recovery from imported tape media fails and causes DPM management console to crash with ID: 917

    Hi.
    I have a newly installed DPM 2012 R2 on a Windows 2012 R2 with a standalone dedicated SQL server which is causing me a bit of a headache right now.
    I'm about to restore some files from an imported tape media, the tape is from our previous DPM server (DPM 2010). I have identified the media and cataloged it and i'm able to browse it to choose wich files to restore. But as soon as i try to
    finish up a restore job it causes the console to crash.
    My server is running just fine with backups and restores from i.e tapes that is backed up by this server - no problem there - but imported is not working.
    Below is the message from console when it crashes.
    Connection to the DPM service has been lost.
    Review the application event log for information about a possible service shutdown. Verify that the following services are not disabled:
                DPM
                DPM Replication Agent
                SQLAgent$MSSQLSERVER
                MSSQL$MSSQLSERVER
                Virtual Disk Service
                Volume Shadow Copy
    ID: 917
    Any ideas?
    //Dan

    Hello,
    I am having the exact same problem when trying to restore from tape on our secondary DPM server.  I checked the event viewer and found event ID 943 (even though the console crash shows ID 917).  The event viewer error is below:
    Log Name:      Application
    Source:        MSDPM
    Date:          4/2/2015 9:02:55 AM
    Event ID:      943
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      DPM_SERVER_NAME
    Description:
    The description for Event ID 943 from source MSDPM cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    Unable to connect to the DPM database because the database is in an inconsistent state.
    Problem Details:
    <FatalServiceError><__System><ID>19</ID><Seq>98909</Seq><TimeCreated>4/2/2015 2:02:55 PM</TimeCreated><Source>DpmThreadPool.cs</Source><Line>163</Line><HasError>True</HasError></__System><ExceptionType>DBCorruptionException</ExceptionType><ExceptionMessage>DLS
    error:  SP='dbo.prc_ARM_DataSource_GetServerName' Error=50001</ExceptionMessage><ExceptionDetails>Microsoft.Internal.EnterpriseStorage.Dls.DB.DBCorruptionException: DLS error:  SP='dbo.prc_ARM_DataSource_GetServerName' Error=50001
       at Microsoft.Internal.EnterpriseStorage.Dls.DB.SqlRetryCommand.ValidateReturnValue(String errorTitle)
       at Microsoft.Internal.EnterpriseStorage.Dls.PRMCatalog.DatasourceHelper.GetDatasourceServerName(SqlContext sqlCtx, Guid datasourceId)
       at Microsoft.Internal.EnterpriseStorage.Dls.PRMCatalog.PrmCatalog.GetDatasourceServerName(Guid datasourceId)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.Datasource.FillAppSpecificPropertiesForFS(ProtectionConfigType protectionConfig)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.Datasource.SetDestinationConfig(IMCatalogDB imCatalog, DatasetType dataset, RecoveryInformationType recoveryInformation, RecoveryTaskDefinitionType recoveryTaskDefinition)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.Datasource.AddRecoveryTaskDefinitionForDataset(IMCatalogDB imCatalog, JobTranslator jobTranslator, DatasetType dataset, RecoveryInformationType recoveryInformation, Boolean additionalRestore, Boolean
    isSerial, Guid parentTaskDefId)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.Datasource.GenerateRecoveryTaskDefinitions(IMCatalogDB imCatalog, JobTranslator jobTranslator, RecoveryInformationType recoveryInformation, Guid parentTaskDefId)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.RecoveryTranslator.GenerateRecoveryTaskDefinitionsRecursively(IMCatalogDB imCatalog, JobTranslator jobTranslator, RecoveryInformationType recoveryInformation, Guid parentTaskDefId)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.RecoveryTranslator.GenerateRecoveryTaskDefinitions(IMCatalogDB imCatalog, RecoveryInformations recoveryInformations)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.RecoveryTranslator.StartRecovery(Guid jobDefinitionId, Guid jobId, RecoveryInformations recoveryInformations, AdhocJobsContext jobContext)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.RecoveryTranslator.StartRecovery(String recoveryXml, Guid jobDefinitionId, Guid jobId, AdhocJobsContext jobContext)
       at Microsoft.Internal.EnterpriseStorage.Dls.Engine.CIntentServices.TriggerRecovery(UInt16* bstrIMCatalogXml, _GUID jobDefinitionId, _GUID jobId, AdhocJobsContext jobContext)
       at Microsoft.Internal.EnterpriseStorage.Dls.Engine.CCoreServices.TriggerRecovery(CCoreServices* , UInt16* bstrRecoveryInformationXml, _GUID jobDefinitionId, _GUID jobId, UInt16* bstrJobContextXml, tagSAFEARRAY** exceptionResult)</ExceptionDetails></FatalServiceError>
    the message resource is present but the message is not found in the string/message table
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="MSDPM" />
        <EventID Qualifiers="0">943</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2015-04-02T14:02:55.000000000Z" />
        <EventRecordID>17544</EventRecordID>
        <Channel>Application</Channel>
        <Computer>DPM_SERVER_NAME</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Unable to connect to the DPM database because the database is in an inconsistent state.
    Problem Details:
    &lt;FatalServiceError&gt;&lt;__System&gt;&lt;ID&gt;19&lt;/ID&gt;&lt;Seq&gt;98909&lt;/Seq&gt;&lt;TimeCreated&gt;4/2/2015 2:02:55 PM&lt;/TimeCreated&gt;&lt;Source&gt;DpmThreadPool.cs&lt;/Source&gt;&lt;Line&gt;163&lt;/Line&gt;&lt;HasError&gt;True&lt;/HasError&gt;&lt;/__System&gt;&lt;ExceptionType&gt;DBCorruptionException&lt;/ExceptionType&gt;&lt;ExceptionMessage&gt;DLS
    error:  SP='dbo.prc_ARM_DataSource_GetServerName' Error=50001&lt;/ExceptionMessage&gt;&lt;ExceptionDetails&gt;Microsoft.Internal.EnterpriseStorage.Dls.DB.DBCorruptionException: DLS error:  SP='dbo.prc_ARM_DataSource_GetServerName'
    Error=50001
       at Microsoft.Internal.EnterpriseStorage.Dls.DB.SqlRetryCommand.ValidateReturnValue(String errorTitle)
       at Microsoft.Internal.EnterpriseStorage.Dls.PRMCatalog.DatasourceHelper.GetDatasourceServerName(SqlContext sqlCtx, Guid datasourceId)
       at Microsoft.Internal.EnterpriseStorage.Dls.PRMCatalog.PrmCatalog.GetDatasourceServerName(Guid datasourceId)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.Datasource.FillAppSpecificPropertiesForFS(ProtectionConfigType protectionConfig)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.Datasource.SetDestinationConfig(IMCatalogDB imCatalog, DatasetType dataset, RecoveryInformationType recoveryInformation, RecoveryTaskDefinitionType recoveryTaskDefinition)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.Datasource.AddRecoveryTaskDefinitionForDataset(IMCatalogDB imCatalog, JobTranslator jobTranslator, DatasetType dataset, RecoveryInformationType recoveryInformation, Boolean additionalRestore, Boolean
    isSerial, Guid parentTaskDefId)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.Datasource.GenerateRecoveryTaskDefinitions(IMCatalogDB imCatalog, JobTranslator jobTranslator, RecoveryInformationType recoveryInformation, Guid parentTaskDefId)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.RecoveryTranslator.GenerateRecoveryTaskDefinitionsRecursively(IMCatalogDB imCatalog, JobTranslator jobTranslator, RecoveryInformationType recoveryInformation, Guid parentTaskDefId)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.RecoveryTranslator.GenerateRecoveryTaskDefinitions(IMCatalogDB imCatalog, RecoveryInformations recoveryInformations)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.RecoveryTranslator.StartRecovery(Guid jobDefinitionId, Guid jobId, RecoveryInformations recoveryInformations, AdhocJobsContext jobContext)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.RecoveryTranslator.StartRecovery(String recoveryXml, Guid jobDefinitionId, Guid jobId, AdhocJobsContext jobContext)
       at Microsoft.Internal.EnterpriseStorage.Dls.Engine.CIntentServices.TriggerRecovery(UInt16* bstrIMCatalogXml, _GUID jobDefinitionId, _GUID jobId, AdhocJobsContext jobContext)
       at Microsoft.Internal.EnterpriseStorage.Dls.Engine.CCoreServices.TriggerRecovery(CCoreServices* , UInt16* bstrRecoveryInformationXml, _GUID jobDefinitionId, _GUID jobId, UInt16* bstrJobContextXml, tagSAFEARRAY** exceptionResult)&lt;/ExceptionDetails&gt;&lt;/FatalServiceError&gt;
    </Data>
        </EventData>
    </Event>
    I'm guessing if you checked your event viewer, you would have the same error after the crash.  I'm hoping Microsoft has a fix for this besides restoring the database...

  • Hello, okay? since then, was robbed today, and my find my    iphone this down, please tell me if he has a way to locate the computer, I need the iphone again, it has many important data it please help me

    hello, okay? since then, was robbed today, and my find my
      iphone this down, please tell me if he has a way to locate the computer, I need the iphone again, it has many important data it please help me

    It's gone and you most likely are not getting it back.
    If you had important info on it, you should have made backups so you would not lose the data.

  • Android and import flash.media.Microphone not working?

    Is "import flash.media.Microphone" working on Android devices ?
    I am trying to call "Alert.show(Microphone.names.length.toString())" but it does not showing anything up on Android device (and even mic.rate = 11 throws an error as: mic=Microphone.getMicrophone(-1))
    Any clues why it is not working (PC display on various browser including chrome is fine)
    Testing desktop (WIN 10,1,82,76) and Android (10.1.92.8)

    so after a while checking it gives me
    I've got:
    mic = Microphone.getMicrophone(-1);
    and this: mic.rate = 11;
    gives me error 1009 (property of null object)
    then question is: Does Adobe Flash Player 10.1 (10.1.92.8) on Android supports Microphone class?
    Apparently not as getMicrophone(-1) returns null object (but hey, I am pretty sure my mobile phone's got two of them) ...
    anyone can confirm that?

  • FCP 6 bug importing P2 media

    After running into a problem where DVCProHD media recorded at 24pA was coming in at 29.97, i found this post on creative cow:
    http://forums.creativecow.net/readpost/8/940441?
    Seems there is a bug in FCP 6 that a lot of people are experiencing. Importing the media works correctly in FCP 5, so in the short term that is what I will have use to acquire the media.
    Can we expect a bug fix soon??? This is really a pain to work around!

    Sorry, been away all weekend.
    I have never tried this. I tried the database and didn't like the way it handled things (wither that, or I was just too lazy to learn it well.) but I think that you can export QT files out of the database can't you?
    Also, and I know that this doesn't help this time but, this is a great example of why I always copy the entire contents of the card to a backup drive before I do anything else. I know that it takes time but I haven't lost any footage yet either.
    Hopefully someone will stop by that knows database better.
    ooooooooo, what version of QT are you running? The database only works correctly up to 7.2.6. If you have upgraded past that I think that you are asking for trouble.
    K

  • Importing windows media video

    I can't import windows media video file into itunes. Can somebody help?

    iTunes cannot import Windows Media Video. You'll have to use some other software to convert your WMV into a format iTunes can accept. Try Videora iPod Converter, which many people seem to have success with.

Maybe you are looking for

  • Creating a time lapse

    I imported video from my newly bought HD video camcorder and was wondering if anyone out there knew how to make a time lapse from the video, as in speed up or down the time in which the video was taken. Just wondering if there is a way to do this in

  • Monitoring activities from the Time Capsule

    I have my TC since the first shipping of Apple and I'm searching for a way to see if there is any activity at all with the HD. I'm concern about a security issue, even if I use WPA2 Personal with time access control and a different psswd for the driv

  • Memory management in Java

    HI all, I want to know what is memory management in JAVA means ?Is it related to memory management of java VM.?

  • I have a 64 bit computer and the Adobe flash 10.3 is working perfectly.

    All you need is more space in your computer, you can't have a 32 bit, you have to have more ram added or less clutter.  I am a beta tester and I always make sure I clean my computer once a month.  If you do that you will have more space in your compu

  • Can I download adobd digital edition to my tablet android?

    how I do that?