|
|
#1 |
|
Took the Plunge, Now Have Questions...
I am a long time and very comfortable Windows user....
I am in need of a new laptop as I can longer use one laptop for both business purposes and personal purposes...I debated whether to get a Windows ultrabook or try a MacBook...I have done a lot of reading and decided for the first time in my life to give Apple a try... I ordered a MBA with an i7 / 8GB of RAM and a 256 GB SSD...I will need to run Parallels [or some other VM] as I do have some Windows applications that I can not avoid using... I would appreciate answers to the following items: 1. Backup I am fairly comfortable with Windows programming and have written a number of small application...one of the most useful such applications is a simple bat file which when combined with Window's Task Manager automatically backups critical folders on my hard drive. Is there a simple way to replicate this functionality is OS X...is there an easy way to do this OR is this best done through learning AppleScript or other? 2. Case I am fanatical about keeping everything I own in "like new" shape and with that....is a case / shell a good idea [or, does it create cooling issues] and, if yes, which is best / recommended. 3. PDF I am going to try to use native Mac apps to the greatest extent possible and would therefore like to know what is the Mac application that is closes to Adobe Acrobat as I need an application for password protecting PDF files, etc. 4. NTFS Drives I will need to read / write to my existing NTFS formatted drives and, in particular, my NAS drive...what is the best application for this purpose, is it Paragon's NTFS for MAC 5. Time Machine I will be using -- at least that is the current plan -- Time Machine for backup purposes and was wondering whether it is possible to use Time Machine with an NTFS formatted drive which is AFP compliant. 6. Update I noticed that Apple has released a V2.0 update for all 2012 laptops...how do I check whether I need to install this update? 7. VPN I will need to connect to a Cisco SA...I was able to do so with iOS 6's built in VPN app which was Cisco clients...is there a similar app in OS 10.8? And, if there is anything else that I should be aware of know please add it to your response....thanks for reading this post and for responding. Joel Last edited by JoelBC; Nov 24, 2012 at 12:02 PM. Reason: Added details about my NAS |
|
|
|
0
|
|
|
#2 | |
|
Quote:
__________________
|
||
|
|
1
|
|
|
#3 |
|
Appreciate the response...two quick follow ups:
1. Backups I am looking to write a small application / script that backups specific folders to a USB thumb drive or portable drive without any compression...is this possible in TimeMachine? 2. PDF I will give Preview a try but is it compatible with files that have been PDF password protected files using Adobe Acrobat? Thanks, Joel |
|
|
|
0
|
|
|
#4 | |
|
Quote:
2. I believe that it is. I have opened password protected PDFs with it in the past, but I don't know if they were created with Adobe initially.
__________________
"I would never die for my beliefs because I might be wrong." - Bertrand Russell
iTerm2 + oh-my-zsh + tmux-powerline + ttytter = bliss |
||
|
|
0
|
|
|
#5 | ||||||
|
Quote:
Quote:
Quote:
http://www.makeuseof.com/tag/paragon...eview-rewards/ For NAS, the file system doesn't matter as it's offered up to OS X as either CIFS, AFP or NFS. Quote:
Quote:
Quote:
|
|||||||
|
|
0
|
|
|
#6 | ||||||
|
First, thank-you for your response as they are both appreciated and very helpful....a few follow ups which hopefully you will not mind...
Quote:
Although I will Google "Bash Script" could you i) please elaborate on the language, syntax, difficulty, etc. and ii) please confirm that launcher is essentially Mac's version of Task Manager? Quote:
Quote:
Quote:
I am somewhat confused about the first sentence above...I would appreciate you expanding on how the creation of a disk image containing an independent JHFSX file system is different / same from how TimeMachine would normally operate. Quote:
Quote:
Thanks for the help, Joel |
|||||||
|
|
0
|
|
|
#7 | |
|
Quote:
Here's a sample rsync script: Code:
#!/bin/bash #rsync.sh - A simple backup script rsync -a /Users/$USERNAME/Documents/ /Volumes/ThumbDrive/BackupFolder/ The switch of -a gets you the Archive option, which is a shortcut that preserves permissions, timestamps and the like. Of course you replace $USERNAME as appropriate and the backup destination will change based on your specific machine, but you get the idea. Don't forget to chmod +x your script from the CLI! Unfortunately, launchd is a bit more complicated than Task Scheduler as there's no GUI included in the OS. There's Lingon, but I've never used it. It's highly regarded, though, and it's by the same guy that made Smultron, so I imagine it's pretty good. Here are some directions for creating a .plist file to talk to launchd. First, construct your .plist file. Here's an example that uses the script above. Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.blah.rsync-trigger</string>
<key>ProgramArguments</key>
<array>
<string>/bin/sh</string>
<string>/path/to/rsync.sh</string>
</array>
<key>StartCalendarInterval</key>
<dict>
<key>Hour</key>
<integer>3</integer>
<key>Minute</key>
<integer>35</integer>
</dict>
</dict>
</plist>
Save that .plist in your ~/Library/LaunchAgents directory. Load it into launchd like this: Code:
superjudge on mentalla on local [ 2.45, 2.46, 2.42 ] (17:34:57) 206 /Users/superjudge % > launchctl load Library/LaunchAgents/com.blah.rsync-trigger.plist http://floppix.ccai.com/scripts1.html http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-2.html http://www.haykranen.nl/2008/05/05/rsync/ https://developer.apple.com/library/...d.plist.5.html http://alvinalexander.com/mac-os-x/l...lendarinterval ii) Yes, launchd is roughly equivalent to Task Scheduler on Windows.
__________________
"I would never die for my beliefs because I might be wrong." - Bertrand Russell
iTerm2 + oh-my-zsh + tmux-powerline + ttytter = bliss Last edited by SuperJudge; Nov 24, 2012 at 05:09 PM. Reason: Forgot some steps |
||
|
|
0
|
|
|
#8 |
|
Good to try out the Apple platform, just keep an eye on temperature if you have long runs of high CPU utilisation. You may want to get smcfancontrol (OS X) to have different fan speed settings.
I am also very structured and use FBackup (under Windows, free) for my documents etc backups. If you do decide to run Windows under bootcamp then you can use Winclone for backing up the whole bootcamp partition (shareware, something like 20 USD from memory and worth it). OS X is a different paradigm but if you persevere then you'll eventually get there. At the moment I am trying to get Windows 8 loaded but the keyboard mapping is getting the better of me.... grr..... (and just bought another Mac mini). Windows 8 is extremely frustrating and it is beyond me why people like it oh wait it must be this tablet thingy.... |
|
|
|
0
|
|
|
#9 | ||
|
Quote:
Quote:
1. Backup I will most definitely try the batch scripting as it seems like it will be useful to learn...I will, until I get proficient, use this application which I found on the web earlier today which seems to "do it all" [at least for my needs]...the url is http://download.cnet.com/Backuplist/...2_4-93627.html 2. Windows 8 I have been using it for a while...it is one of the reasons why I am trying OS X...it is wonderful on a tablet but useless on a laptop as there is far too much clicking..to me, anyone staying with the windows platform need to either i) get something like Start 8 to make WIndows 8 like Windows 7 or ii) stick with Windows 7 Thanks to all, Joel |
|||
|
|
0
|
|
|
#10 | ||||||
|
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
|
|||||||
|
|
1
|
|
|
#11 | |||||
|
Quote:
Quote:
Quote:
Quote:
Quote:
With respect to i) above is not the case everytime I open the VM its virtual disk will change which means that there is no way to avoid TimeMachine from consistently backing it up other than excluding it. While on the subject of TimeMachine, what is the protocol when one’s DAS or NAS is full as a result of TimeMachine [i.e. is there a feature to delete backups beyond a certain age]? ***** Thanks for the assistance and the time as it is greatly appreciated, Joel |
||||||
|
|
0
|
|
|
#12 | |||||
|
Quote:
Quote:
Quote:
Quote:
Quote:
|
||||||
|
|
1
|
|
|
#13 | |||
|
Quote:
Quote:
Quote:
****** Again, thanks for everything, Joel ---------- One more thing...will a just ordered MBA come with Lion or Mountain Lion as forgot to ask the sales agent but truthfully just figured it would come with Mountain Lion? And, if not, what is the best way to upgrade from Lion to Mountain Lion? |
||||
|
|
0
|
|
|
#14 | |
|
Quote:
After two separate calls, each with a 10 minute confirmation of who I am, I was finally put to a Level 2 technical advisor...though he could not provide me with the specific version of Netatalk that was was being used on my NAS drive he did tell me i) it was a version of 2 and ii) the firmware upgrade was specifically written to be compatible with OS 10.7 and 10.8 so apparently I am good to go... A little more detail would have increased my confidence but I will preform a test or two to ensure that all is okay... Thanks for all the help, Joel |
||
|
|
0
|
|
|
#15 |
|
MBA arrived today but because I am swamped at work there is no way that I will be able to start setting it up until the weekend...
I do however have one question -- and, apologies as I am new to the Mac world -- and that is whether or not there will be a mid-cycle refresh of the unit or whether the next update will be in late Spring / early Summer time frame as I would hate to have spent $2,000 on a laptop and accessories only to have replaced by another unit in a few weeks time. Thanks in advance, Joel |
|
|
|
0
|
|
|
#16 | |
|
Quote:
From Wikipedia, you can see there was a MBA released in late 2010 and a refresh appeared in mid-2011 which is less than a year. So it's possible to see a refresh before summer 2013. |
||
|
|
0
|
|
|
#17 | |
|
Quote:
I am in a situation where I would have liked to have waited until the next refresh -- which presumably will have Haswell and which, in turn, presumably will not be before late Spring / early Summer -- but need a new computer now [i.e. the is a case of "need to buy something" rather than "want to buy something"] so here I am. I think, for the reasons that I noted above, that I am safe because I do not think that there will be a refresh before Haswell...what are your thoughts? Thanks, Joel |
||
|
|
0
|
|
|
#18 |
|
__________________
Powered by OSX 10.9 Ocelot Will someone please make a safari extension that gives us back the downvote button? |
|
|
|
0
|
|
|
#19 | |
|
Quote:
|
||
|
|
0
|
|
|
#20 |
|
Although there is an entire thread on cases it is mixed with bags, cases, skins, etc. so I am asking again....
I am looking for a case to cover my MBA that will NOT in and of itself scratch it...I need protection from scratches...I do *NOT* need protection from "drops" as I am very careful with the things that I own... With that, which case would you recommend. Thanks in advance, Joel |
|
|
|
0
|
|
|
#21 |
|
Before you drop $$$ on Adobe Acrobat, take a look at PDFPenPro from Smile Software, is a lot less expensive and has a lot of capabilities.
TextExpander by Smile is also a great app, by the way (but don't buy it from the App Store, sandbox restrictions prevent Smile from releasing updates to it via the App Store). I'm not affiliated, just a happy customer. |
|
|
|
0
|
|
|
#22 | ||
|
Quote:
Quote:
Thanks, Joel |
|||
|
|
0
|
|
|
#23 |
|
I don't know if PDFPenPro can open Acrobat files, I've only used it to create and open pdf files. Sounds like you are a more sophisticated user of Adobe - maybe this site would help you? https://smilesoftware.com/PDFpenPro/compare.html
Or, ask the folks at Smile, their tech support is very responsive (Support page on their site has a link to email). Sandboxing is a security measure apps sold through the Mac App Store have to abide by, prevents apps from interacting with one another (I'm sure that's not a technically right description). TextExpander works regardless of what app you are using, which violates Apple's sandbox rules. Apple allows apps "grandfathered" in before the sandboxing restrictions, but does not allow devs to build additional functionality in the grandfathered apps - so while you can buy TE on the app store, you would be better served to buy it direct from Smile in order to get upgrades w/ additional functionality. |
|
|
|
0
|
|
|
#24 | |
|
Quote:
|
||
|
|
0
|
|
|
#25 | |
|
Quote:
I think that I got a fairly good unit in that: 1. Battery / Health Information / Cycle Count = 0 2. Display string = LSN133BT01A02 = Samsung 3. Hard disk drive = SM256E = Samsung I will write more once I get a few more hours on the laptop, Thanks for all the help, Joel |
||
|
|
0
|
![]() |
|
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 02:41 AM.







I support the
Linear Mode
