Is there any command-line to save iCal database ?

Thanks in advance,

Not to tell iCal to do it, but you can just copy the files somewhere. EG:
cp -R Library/Application\ Support/iCal/ Desktop/iCalCopy/
AK

Similar Messages

  • Is there any command line i can use to install a .pkg file to my own directory?)

    I'm a newer of Mac OS X, i need to insatll lots of .pkg package to my mac machine, so i think of install them use a script automatically, but i cnanot find any way to use the command line to insatll the .pkg package to my own forder(like /myapp). can somebody help me? thanks a lot.

    Here's a article on how to move your home dir:
    How to Move the Home Folder in OS X – and Why
    The key basic steps are to copy your home dir to another drive and using the Accounts Preferences advanced options for the your account to redefine where your home dir is.
    With or without the home dir moved you can organize your apps as you see fit.  I keep my apps categorized; doc/text related apps, video apps, calculators, etc.  They could even be on a third drive if you want, but that makes backups a bit more complicated (always backup).
    The advantage of keeping the home dir separate from the boot dir is (a) if the boot drive fails it doesn't take your stuff with it, (b) it allows you to have multiple boot drives and switch among them if necessary while using the same home dir, and (c) if you use a ssd for a boot drive it allows you to use a relatively small ssd (I use a 120GB).
    With a ssd as a boot drive you could still elect to put key apps on it for performance reasons.  I do that for commonly used stuff.  But it's mainly reserved for the boot system.  I try not to put any more that I have to on it just to minimize needless writing to the ssd.  Of course you cannot stop ssd writes by the OS itself (e.g., swap space -- but that too can be minimized with enough ram).

  • Are there any command line utilities(@client machine)/APIs to initate software installtion from SCCM 2012 application catalog?

    I'm searching for any utilities / APIs available for SCCM 2012 Application catalog, to initiate a Application installation from a Script(From client machine). Got to know there Client programming is possible, but not able to get good examples. Please help
    Regards, Eswar

    Hi,
    Hope the following sample could help you.
    Sample SCCM Application
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Is there any command line option, so that when I open firefox from command line it uses the already opened firefox, instead of creating a new firefox window.

    for example: this option is available with jedit editor.
    jedit
    above cmd always opens a new jedit instance.
    jedit -reuseview
    above cmd checks if there is a existing jedit instance if yes brings it to focus else opens up a new one.

    Start your '''Computer''' in safe mode with networking. Then start Firefox.
    After a bit, close it. Then open it a few minutes later.
    '''[http://encyclopedia2.thefreedictionary.com/Linux+Safe+Mode Starting The Computer In Safe Mode;<br>Free Online Encyclopedia]'''

  • Is there any command line tool to view the message on the topic?

    Hi
    How can I view/browse the messages on the queue/topic, without write a program?
    Jirong

    Hi,
    I would recommend you to have a look at this excellent Hermes: http://www.hermesjms.com/
    Cheers
    Arnaud

  • Any command line audio player with song rating and play count?

    Is there any command line audio player that can handle song rating and play count? Thank you

    I answer my question: mpd + mpdcron can store song rating and play count and much more to sqlite database.
    Last edited by hariskar (2015-03-20 05:01:09)

  • Is there any command/query/etc, which would allow to understand what database objects (for example tables) are consuming memory and how much of it?

    TimesTen Release 11.2.1.9.6 (64 bit Linux/x86_64)
    Command> dssize;
    PERM_ALLOCATED_SIZE:      51200000
      PERM_IN_USE_SIZE: 45996153
    PERM_IN_USE_HIGH_WATER:   50033464
    TEMP_ALLOCATED_SIZE:      2457600
    TEMP_IN_USE_SIZE:         19680
    TEMP_IN_USE_HIGH_WATER:   26760
    Is there any command/query/etc, which would allow to understand what database objects (for example tables) are consuming memory and how much of it?
    tried to use ttsize function, but it gives some senseless results – for example, for the biggest table, tokens, it produces following output (that this table is 90GB in size – what physically cannot be true):
    Command> call ttsize('tokens',null,null);
    < 90885669274.0000 >
    1 row found.

    Are you able to use the command line version of ttSize instead? This splits out how much space is being used by indexes (in the Temp section of the TT memory segment), which I think is being combined into one, whole figure in the procedure version of ttSize you're using. For example:
    ttSize -tbl ia my_ttdb
    Rows = 4
    Total in-line row bytes = 17524
    Total = 17524
    Command> create index i1 on ia(a);
    ttSize -tbl ia my_ttdb;
    Rows = 4
    Total in-line row bytes = 17524
    Indexes:
    Range index JSPALMER.I1 adds 5618 bytes
      Total index bytes = 5618
    Total = 23142
    Command> call ttsize ('ia',,);
    < 23142.0000000000 >
    1 row found.
    In 11.2.2 we added the procedure ttComputeTabSizes which populates system tables with detailed table size data, and was designed to be an alternative to ttSize. Unfortunately it still doesn't calculate index usage though, and it isn't in 11.2.1.

  • I'm trying to backup a my harddrive with disk utility but I'm getting an error  Unable to create Backup.dmg" (input/output error). Is there any other way to save my data? I believe my hard drive is failing or corrupt file. I can't boot up. Grey screen

    I'm trying to backup a my hard drive with disk utility but I'm getting an error  Unable to create Backup.dmg" (input/output error). Is there any other way to save my data? I believe my hard drive is failing or corrupt file. I can't boot up. Grey screen and spinning wheel. I've tried everything https://discussions.apple.com/message/20580424#20580424
    any help will be greatly appreciated.

    Check here. Also have you done a TimeMachine back up?
    http://support.apple.com/kb/TS2570

  • Is there any command in Reports 6i - which is similar to raise form_trigger

    Is there any command in Reports 6i - which is similar to raise form_trigger_failure in forms6i.

    This might be helpful,
    You must raise the exception from within your PL/SQL.
    SRW.PROGRAM_ABORT examples
    /* Suppose you want to put a border around the salary if it is greater
    than 0.
    ** Suppose, also, that if the report fetches a salary less than 0, you
    want to
    ** raise a customized error message (i.e., "FOUND A NEGATIVE SALARY. .
    ** then terminate the report execution. To do so, you could write the
    ** following format trigger for F_SAL.
    FUNCTION foo return boolean is
    BEGIN
    if :sal >= 0 then
    srw.attr.mask := SRW.BORDERWIDTH_ATTR;
    srw.attr.borderwidth := 1;
    srw.set_attr (0, srw.attr);
    else
    srw.message(100, 'FOUND A NEGATIVE SALARY.
    CHECK THE EMP TABLE.');
    raise srw.program_abort;
    end if;
    RETURN (TRUE);
    END;

  • Is there a command line option for VNC to automatically launch in fullscreen mode?

    I can launch a VNC window from the command line, as such:
    open vnc://username:password@hostname
    ... but I'd like it to automatically start in full screen mode. Is there a command line option for this?
    I'm using an old MacMini purely to connect to another Mac over screen sharing, but when the MacMini boots I'd like it to go straight into the fullscreen of the other desktop.
    Many thanks!

    Set the Integer pref browser.sessionstore.max_resumed_crashes to 0 on the about:config page to get the about:sessionrestore page immediately with the first restart after a crash has occurred or the Task Manager was used to close Firefox.
    * http://kb.mozillazine.org/browser.sessionstore.max_resumed_crashes
    That will allow you to deselect the tab(s) that you do not want to reopen, but will allow to reopen other tabs.
    See:
    * http://kb.mozillazine.org/Session_Restore#Restoring_a_session_after_a_crash
    * http://kb.mozillazine.org/Browser.sessionstore.max_resumed_crashes

  • I have a late 2011 macbook pro i want to reinstall os lion 10.7 so when i reboot hold down options key click on recovery hd then in the os x utilities screen it says reinstall mac os x is there any way i can save this download so i can burn to dvd

    i have a late 2011 macbook pro i want to reinstall os lion 10.7 so when i reboot hold down options key click on recovery hd then in the os x utilities screen it says reinstall mac os x is there any way i can save this download so i can burn to dvd

    steve359 wrote:
    Sorry ... I read but was unfortunately distracted from your original post.  You have a system that came with Lion.  The Lion that is on your system is only for your computer and cannot be downloaded from the app store again because you never purchased it officially through the App Store.
    Try this for making an external USB/DVD copy of Recovery on an external disk.  internet is still required for reinstall, though, I believe: http://support.apple.com/kb/HT4848.  But at least you have a separate Recovery Partition if you ever need a fully new and empty internal disk.
    Your assumption is incorrect. Although he may not be able to download it from the App store he can download it directly for the Apple servers using the recovery partition on his original drive.
    All you have to do is start the install routine and then point the install to an external hard drive. Once the download is finished the computer will reboot to start the install. At that reboot disconnect the external drive so the install can not start. Boot the computer back into the OS on the internal hard drive, which is what will happen automatically once the external drive is disconnected. Then connect the external and copy the files from it that were downloaded. Right click on that downloaded package file and select Show contents. In the contents of that package is a file called InstallESD.DMG. Copy that file out of the package and burn it down to a DVD or USB thumb drive and you now have the Full Lion Installer. I have several of them laying around on different hard drives and 2 USB thumb drives which I have used to reinstall Lion on my 15" MBP.
    Sorry OP I should of just typed this out in my first post.

  • Is there any way to LOCK/save text messages?

    Is there any way to LOCK/save text messages?

    Not really, except with third-party apps:
    https://discussions.apple.com/message/15205763#15205763
    https://discussions.apple.com/message/5537905#5537905

  • Hi! Is there any way I can save my messages in Imessage?

    Hi! Is there any way I can save my messages in Imessage aside from taking screenshots of it?

    Shaun,
    Recently I got an iPhone 5 and when I activated it, I lost all of my voicemails from my previouse phone.  With Verizon (I'm not sure about other carrier's), they were able to provide me with a phone number where I could access my old messages.  I then used a website www.SaveMyVM.com to make permanemnt MP3 backups of them.
    I believe the messages only remain on Verizon's system for a few days after activating a new phone, so time I would give them a call as soon as possible.
    Hope this helps,
    Jaimie

  • Is there any command in SQL or in form6i to view the role of current user?

    Hi Friends,
    Is there any command in SQL or in form6i to view the role of current user?
    Please reply me on urgently basis.
    Shahzad

    select * from SYS.dba_role_privs where grantee=<USERNAME>
    Ensure that you have select privs on above system view.
    Cheers........ Bob

  • Is there any command/FM to get rid of  error message in CATT?

    Dear friends,
    Is there any command/FM to get rid of  error message in CATT? such as the following in eCATT script?
    MESSAGE ( MSG_1 ).
    ENDMESSAGE ( E_MSG_1 ).
    or any body now how to get the socrce code of these commands?
    Many thanks!
    Cliff

    Hi,
      See the help
    http://help.sap.com/saphelp_nw04/helpdata/en/d7/e2143b408e11d1896b0000e8322d00/frameset.htm
    Regards
    Kiran Sure

Maybe you are looking for

  • Mouse over actual panzoom animation graphic causes all to vanish ?

    Hi, see code below. We have movieClip called Map_Collection (in properties) within which are movie clips BusRoute_42 and BusRoute_43 (in properties) as well as the basic map artwork graphic. These are lines that glow (motion tween alpha1% to 100% to

  • I think I have a virus, how can I get rid of it?

    When ever I am on the internet and I try to go to different websites, this drop down usually appears and says "safari can not identify the server..." It is either asking about the website I am trying to go to, or trying to send me to a completely dif

  • Setting Adapter Specific properties

    Hi All, I have the following Scenario : Source system ; SAP R/3   - Client Proxy is created to send the data Destination System : JMS(Websphere MQ) . Receiver JMS channel is used to deliver the message. I have written a proxy in R/3 system to post th

  • Firefox is unbearably slow on XP after updating (/questions/985969)

    Typing is very slow in textboxes in Firefox 28 on XP Pro SP3

  • JMS send seems to work, but receive and browse not

    Hi, I use an Oracle9i database, registered it to OID and also registered a QueueConnectionFactory using Oracle sample code with slight changes as you can see below. I then wrote a little AQ-JMS test programm to test sending and receiving messages als