Quantcast
Channel: Mac Apps
Viewing all 22110 articles
Browse latest View live

Scheduled local folder backup?

$
0
0
I would like to set up an automated backup of my large itunes folder.
It resides on an external drive and is excluded from my Time Machine (would overwhelm the backup disk). I have a separate external drive to use as a backup.

Is there a simple way to set this up? I've tried SyncTwoFolders, but it didn't seem to run the scheduled backups properly. I came back after a few days and didn't see a backup log.

I am now running arRsync, which works nicely but I can't figure out how to schedule it.

I am not interested in cloud backup, just local redundancy.

[How to] control your mac using win RDP client (XRDP compiling guide on OSx)

$
0
0
Sorry if it's wrong place to share that.

Introduction

Next guide will describe how to compile xrdp on your mac.



Why I need it because it's much more easy to manage mac computer from windows computer. You don't need to search vnc client you can simply use windows built-in rdp client. (and as for me during connection with VNC client to mac default VNC server aka ARD I have hanging of login screen very often, using XRDP possibility to see hanged vnc login screen reduced, why? i don't know...)

If you want just install it you can download Installer OSxXRDP.zip and simply install it. Installation will be done automatically (below i will describe how installer works).

Download OSxXRDP installer

But if you paranoiac and afraid of some code injections please follow by steps and compile it by yourself :)

Caution:
I'm really big mac hater (it's not related to Big'MC :) ) I don't like OS x and I'm pretty sure that OS x it's bad, old and outdated copy of Linux (it's mine IMHO so just keep in mind when you are reading that)

Preparation

I wouldn't describe how install x Code or command line tools you can find it over Internet or ask apple how to do that.

First step simply create folder for our project
Let's do that in the root of user folder.
Code:

$ mkdir ~/xrdp
Second step we need additional libraries to compile XRDP.
Code:

autoconf
automake
gettext
libtool
tree

And my suggestion is to install wget (good linux tool to download files).
Download this file:
Download wget installer
Extract it (double click on file) and install pkg file.

Using wget you can simply download files from command line for example previous file can be downloaded with such command:
Code:

$ wget "http://drive.google.com/uc?export=download&id=0BxdJaRbJyqkOWmhDOUdfNlhBdzg" -O wget-1.14_5.pkg.zip
But if you don't have it yet use safari to download, if you have it you don't need it (I mean it's just example).

There is a few ways to install libs:
  1. You can download installers for them using links (I've made them using macports)

    Create folder to download them:
    Code:

    $ mkdir ~/xrdp/deps
    Download each installer into this folder:
    autoconf:
    Code:

    $ wget "http://drive.google.com/uc?export=download&id=0BxdJaRbJyqkOTG92alFFNkFaVGM" -O ~/xrdp/deps/autoconf-1_2.69_2.pkg.zip
    automake:
    Code:

    $ wget "http://drive.google.com/uc?export=download&id=0BxdJaRbJyqkOZmQyTG1HbXFCQXM" -O ~/xrdp/deps/automake-1.14.dmg.zip
    gettext:
    Code:

    $ wget "http://drive.google.com/uc?export=download&id=0BxdJaRbJyqkOZHpGam15UVBaUW8" -O ~/xrdp/deps/gettext-0.18.3.1_1.pkg.zip
    libtool:
    Code:

    $ wget "http://drive.google.com/uc?export=download&id=0BxdJaRbJyqkOby1MQVk4ZWpGb1k" -O ~/xrdp/deps/libtool-2.4.2_3.pkg.zip
    tree:
    Code:

    $ wget "http://drive.google.com/uc?export=download&id=0BxdJaRbJyqkOXzVyUl9hNV93cTg" -O ~/xrdp/deps/tree-1.6.0.dmg.zip
    If you still want to use safari follow by this link and download each file:
    Libs Installers

    Extract each installer and install every sure you need root privileges for that.

    If it doesn't work (then sorry sometimes it's happened) or again if you are paranoiac you can skip this steps and go to the 2nd or 3rd :)
  2. It was my way.
    You need install macports as described here: https://www.macports.org/install.php
    When you have configured macports.

    Invoke installation by typing in console:
    Code:

    $ sudo port install autoconf
    $ sudo port install automake
    $ sudo port install gettext
    $ sudo port install libtool
    $ sudo port install tree

    Sit back and relax.
  3. Another way. It' using another repository such like homebrew.
    http://brew.sh/

    Brew doesn't need root so it's for you if afraid root a lot :)
    Code:

    $ brew install autoconf
    $ brew install automake
    $ brew install libtool
    $ brew install gettext

    I've didn't tried this way but I think it should work.
    Because there is a man who tried this:
    http://stackoverflow.com/questions/1...yone-done-this
  4. You can try another repo similar to macports or brew. Or you can try install libs from sources feel free :)

Third step Actually it's XRDP downloading.

Using wget just copy-paste this into shell (or you can use safari):
Code:

$ wget "http://downloads.sourceforge.net/project/xrdp/xrdp/0.6.0/xrdp-v0.6.0.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fxrdp%2Ffiles%2F&ts=1359787244&use_mirror=iweb" -O ~/xrdp/xrdp-v0.6.0.tar.gz
Now extract sources:
Code:

$ cd ~/xrdp
$ tar xvzf "xrdp-v0.6.0.tar.gz"
$ cd ~/xrdp/xrdp-v0.6.0

Patching

Now you need to apply patch. Really it can be compiled without this patch but.

Underlying story:
XRDP uses Unix standards to read environments. As I've told you mac it's just cripple Linux sometimes this function available sometimes not. It can be included into libSystem.B.dylib. It doesn't depend on version of mac os even when libs have the same version on one mac it's supported another no. I have suspicious that it's depends on version of x code, it seems mac devs unsucceeded to remove it from each tool and perform solution to make _environ function available but sometimes this function available even when x code wasn't installed maybe some another apple app can modify it too...

So you need to apply small patch to use native OS x calls into this os_calls.c file:
Code:

--- ../xrdp-v0.6.0/common/os_calls.c 2012-02-21 11:00:55.000000000 -0800
+++ ../xrdp-environ/common/os_calls.c 2014-08-17 23:54:53.000000000 -0700
@@ -67,6 +67,9 @@

/* for clearenv() */
#if defined(_WIN32)
+#elif __APPLE__
+#include <crt_externs.h>
+#define environ *_NSGetEnviron();
#else
extern char** environ;
#endif
@@ -2113,7 +2116,7 @@
void APP_CC
g_clearenv(void)
{
-#if defined(_WIN32)
+#if defined(_WIN32) || defined(__APPLE__)
#else
environ = 0;
#endif

You can download this patch by link:
Code:

$ wget "http://drive.google.com/uc?export=download&id=0BxdJaRbJyqkOb09qMWwxQ2QycG8" -O ~/xrdp/os_calls.c.patch
And actually the command to apply this patch:
Code:

$ patch ~/xrdp/xrdp-v0.6.0/common/os_calls.c < ~/xrdp/os_calls.c.patch
Configuring and compilation

Run next:
Code:

$ ./bootstrap
Now we need to configure it properly:
Set defaults directories, set it as 32bit as I know there is some mac PCs with 32 bit os (yes PC because now mac it's IBM PC architecture) and target min version of OS x.
So in this case I think this binaries will run without problems when you want to transfer it to another mac.
Code:

$ ./configure -prefix=/usr -sysconfdir=/etc -localstatedir=/var CFLAGS="-m32 -mmacosx-version-min=10.6"
After successful configuration run:
Code:

$ make
And finally to put binaries and all content into appropriate directories as root:
Code:

$ sudo make install
Configuring XRDP
You think that's all? Don't be so naive it's just begging...

xrdp.ini
So now we need to reconfigure XRDP with values for mac because it's configured as Linux tool.
Run next to change name of libs inside configuration:
Code:

$ cp /etc/xrdp/xrdp.ini /etc/xrdp/xrdp.ini.bak
$ sudo sed -i 's/.so/.dylib/' /etc/xrdp/xrdp.ini

After that edit this file and change max_bpp to 16 bit color because in some reason when you are trying to use 24 after connecting to mac vnc you will receive grey messed and very creepy screen (it's happened only when you using mstsc when you connecting from Linux everything fine). So to chnge it just run this:
Code:

$ sudo sed -i 's/max_bpp=24/max_bpp=16/' /etc/xrdp/xrdp.ini
Or you can download already modified xrdp.ini file and replace your own:
Code:

$ wget "http://drive.google.com/uc?export=download&id=0BxdJaRbJyqkOTXFQeG9lRHRleEk" -O ~/xrdp/xrdp.ini
$ sudo cp /etc/xrdp/xrdp.ini /etc/xrdp/xrdp.ini.bak
$ sudo cp ~/xrdp/xrdp.ini /etc/xrdp/xrdp.ini
$ sudo chmod 666 /etc/xrdp/xrdp.ini

xrdp.sh
In some reason original xrdp.sh doesn't work correctly on mac (i don't remember what the reason). So you can try to fix it. Or simply download and replace. To do that run next commands:
Code:

$ wget "http://drive.google.com/uc?export=download&id=0BxdJaRbJyqkOek5sOHZGNTRKQVk" -O ~/xrdp/xrdp.sh
$ sudo cp /etc/xrdp/xrdp.sh /etc/xrdp/xrdp.sh.bak
$ sudo cp ~/xrdp/xrdp.sh /etc/xrdp/xrdp.sh
$ sudo chmod 777 /etc/xrdp/xrdp.sh

rsakeys.ini
Please check now if rsakeys.ini exists:
Code:

$ sudo ls /etc/xrdp/rsakeys.ini
If you see as output the name of file so you don't need to perform next command.
If answer that there is no such file so you need to run this:
Code:

$ sudo xrdp-keygen xrdp /etc/xrdp/rsakeys.ini
$ sudo chmod 666 /etc/xrdp/rsakeys.ini

So from here we are done to launch XRDP manually.
You can try:
Code:

$ sudo /etc/xrdp/xrdp.sh
And check result with:
Code:

$ ps -A|grep xrdp|grep -v grep
  850 ?        00:00:00 xrdp-sesman
  851 ?        00:00:00 xrdp

You will see two process as an answer: xrdp, xrdp-sesman. If no you need to find what's wrong....

XRDP OS x daemon
Sure it's evidentially stupid idea to start xrdp every time manually.
So we need to create OS x daemon... It's really bad, pure documented system. But I've did that.
Download this description xml file:
Code:

$ wget "http://drive.google.com/uc?export=download&id=0BxdJaRbJyqkOdXppLVFLMGRsZFE" -O ~/xrdp/my.xrdp.plist
$ sudo cp ~/xrdp/my.xrdp.plist /Library/LaunchDaemons/my.xrdp.plist
$ sudo chmod 644 /Library/LaunchDaemons/my.xrdp.plist
$ sudo launchctl load -F /Library/LaunchDaemons/my.xrdp.plist
$ sudo launchctl start my.xrdp

Enable VNC aka ARD
And now don't forget to start VNC to which your XRDP instance will be connected.
You can do that using GUI settings of mac.
Or simply run this to activate access with the password 12345678 (you can change it):
Code:

$ /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -activate -configure -access -on -clientopts -setvnclegacy -vnclegacy yes -clientopts -setvncpw -vncpw 12345678 -restart -agent -privs -all
So VNC will be enabled at port 5900 (you can try some custom vnc to change it if you want).

Installer
Installer assembled using packagemaker app from apple.
As I've mentioned above you can download it from here:
Download OSxXRDP installer
It contains few scripts and two packages.
  1. First script will run before start to check your current language if it's Russian language simply exit. You will pass it without problems it's only for Russians why because they're invaders and they support their government in this actions. (Sure it's simply to skip but at least maybe they will think why I did that...)
  2. Just go through the dialogs (maybe you'll be asked about choose drive... due to some apple bug sometimes it can ask sometimes no)
  3. By default two packages available and marked: one for binaries another one for daemon. So normally you need both.
  4. After finish you will see such screen and you can try to check if services where started.

That's all now you can launch you RDP client and connect to mac by IP :)

Attached Thumbnails
Click image for larger version

Name:	RDPScreen.png
Views:	N/A
Size:	79.3 KB
ID:	488047   Click image for larger version

Name:	startscreen.png
Views:	N/A
Size:	112.4 KB
ID:	488048   Click image for larger version

Name:	getcurrentlanguage.png
Views:	N/A
Size:	201.4 KB
ID:	488049  

Click image for larger version

Name:	installationfinished.png
Views:	N/A
Size:	196.7 KB
ID:	488050   Click image for larger version

Name:	packages.png
Views:	N/A
Size:	134.1 KB
ID:	488051  

Put Documents, Downloads etc inside Dropbox?

$
0
0
Hi,

I'm an avid dropbox user and although my partner uses it too, she's not as thorough with keeping everything in the dropbox folder that needs to be, which has caused a few issues in the past. Now that dropbox has upgraded the size of her pro account to 1tb, and her internal SSD is 960gb, I thought that trying to get as much of her work synched as possible might be a good idea.

Folders like the desktop, download folders and documents folder that come standard were my first thoughts. Possibly even her music, videos and photos?

Is this possible? I realise we can create new folders, but that would involve being savvy with keeping everything up to date. Her downloads folder is packed full things as it is and I'm not sure she'd remember to move things across.

I've wondered whether symlinks are the way to go but haven't tried anything yet.

PS, there's the chance of her being able to use a smaller 500gb Air for work purposes, which would be great if their download folders etc could stay synched so it doesn't really matter what computer she's on. Is that possible?

Thanks very much!

VMWare Fusion Download

$
0
0
This cuts across all software purchases.

Just downloaded Fusion 6 from VMWare/Digital River. I can understand needing some personal info for identification purposes. But it seems as though you give up all informational rights by using their (everyones) software to having your info mined to who-knows-who for whatever reason the software company deems fit. Leave me pout of your ads campaigns!

Exporting iMove video

$
0
0
I imported a video from my iPhone onto my Mac, and imported it straight into iMove. I made all the changes I needed, but It will not let me save it! It is frustrating...any help?

iPhoto "Last 12 Months"

$
0
0
This album is pretty useless to me, because if I want to sync photos to my Mac they're already synced with Photo Stream. So how do I get the Last 12 Months album to stop syncing, or just completely delete it? Or is it possible to sync it with my Photo Stream album? Because when I delete a photo from my Photo Stream (on my phone) it is still being synced to my Mac with the Last 12 Months album.

FCPX not recognizing external harddrive

$
0
0
I have visited numerous Forums regarding this issue and can't resolve it.

My external hard drive worked perfectly well as I would save my FCPX events and projects on it and it was always recognized. It is properly formatted: Mac OS Extended (journaled), but now my external hard drive doesn't even show up in Libraries.

It's extremely frustrating as I have years of video that I have saved to this hard drive as well as other, yet I can't retrieve it via FCPX.

My external hard drive does show up on my desk top however and I can see that it contains my Final Cut Events and Projects, but that is no help if the FCPX software doesn't recognize them.

Can anybody help out?

I've read tons of things on the 'root folder' etc...but that is not making any sense to me.

Is there a power meter application for Macs?

$
0
0
I wanted to monitor the power usage on my PowerMac G4 MDD. I do have a physical meter that you can plug the Mac into, but I was looking to see if there was possibly an application that I can readily monitor it from. I have searched this online but have gotten mixed results. Is this possible or are there no sensors that can detect one's power usage in watts? Thanks.

Softraid 5

$
0
0
Just saw that Softraid 5 has been released... anyone have any experiences of using this at all? Can only seem to find posts about particular pieces of hardware which have this bundled (e.g. OWC Thunderbay), but I'm interested in the software overall...

Can anyone recommend better software to browse, edit pictures.

$
0
0
Hi all.
I am using iPhoto and Preview to browse photos but don't really like it :(
Do you have any better software to do that?
As I see I need to import photos to browse one-by-one in iPhoto and in Preview I can see one each time (I need to open and close all the time).
Please help as I bought my Mac mini 2 weeks ago and I wish to have more fun than on my Windows computer.
Thanks al..

Also I need to find some good to replace the Finder, I use 30days free trial with Path Finder, but I hope there is something better than this.

TA DA

iTunes problem since Mavericks upgrade

$
0
0
Hello...
Yesterday I transitioned from Mt Lion to Mavericks by way of a clean install, and so far it's gone pretty smoothly with one exception. I had moved my iTunes library to a NAS, and when I say I moved it, I physically dragged the iTunes folder to the NAS. Since Mavericks is a clean install with me as a new user, it does not remember any of my info beyond that associated with my Apple ID. I do not use iCloud, and my rather large ibrary is not backed up to the cloud.
My question is, how do I link my fresh, clean copy of iTunes to the folder on my NAS, retaining my playlists, etc? If it helps, I have a clone of my old OS, including my old user folder (my clean install features a new user, not a migrated one).
Any help greatly appreciated, thanks!

CCC Not Working...

$
0
0
I get this image when I go to backup a drive.

Can anyone help me out here?

Attached Thumbnails
Click image for larger version

Name:	Screen Shot 2014-09-01 at 12.22.00 PM.png
Views:	N/A
Size:	40.2 KB
ID:	488206  

Notes widget that syncs in the cloud?

$
0
0
I always use the Sticky Note widget on the dashboard, but I want it to sync between my macpro and my macbook. Is there any widget available that does this?

Scrolling on iTunes

$
0
0
Hi there! Is there any way to change how much iTunes window "moves" when you scroll? I use 10.7 and my problem is while scrolling through album covers, I get 3 rows with 4 covers each, but every scroll moves 4 rows so one row is "lost" between scrolls. I don't know if I make myself clear? It's a bit silly but very annoying! I use Windows version btw. Thanks!

VPN Server for Mavericks...

$
0
0
I want to try to setup my MBA as a VPN Server that I can access from my office [I am tired of TeamViewers and others like it who throttle bandwidth during peak hours for personal users] so am looking elsewhere...

I would appreciate recommendations -- other than OS X Server -- for VPN Server applications that are easy to configure, easy to use, fast, reliable and secure...

Thanks in advance,


Joel

Problem with Time Machine

$
0
0
I am getting the following error message in my Imac

Time Machine could not complete the backup.
"The backup disk image “/Volumes/Juan F. Perez's Time Capsu/Macintosh.sparsebundle” could not be accessed (error -1)"

I have an IMac
Mac OS X
Version 10.7.5

In Finder I see:
Shared
Juan F. Perez's Time Capsule

When I click on this I see the following

Name:
Macintosh.sparsebundle

Date Modified:
Yesterday 9:32 P.M.

Size
--

Kind
Sparse Disk Image Bundle

Date Added
--

Can any one help me to fix this problem?

Thanks

Need a good webcam app for effects/adjustments

$
0
0
The only one I've ever used was iGlasses from ecamm, but was wondering if theres anything else thats on the same level or better? I want to be able to not only have cool effects but able to adjust the camera to suit my situation, like contrast, exposure, gamma, etc.

I can't seem to find anything at all.

I'm using built in facetime HD cam.

Fusion7 users retina support how?

$
0
0
My windows7 VM desktop screen still doesn't look retina? I maybe doing something wrong....I checked the retina support "attached sc below"
1. I disabled "Automatically adjust resolution size in Windows" same result
2. Manually set Windows scaling to 100%
3. I played with windows screen resolution to a very workable 1680x1050 or even 1920x1200

Thanks

Attached Thumbnails
Click image for larger version

Name:	111.jpg
Views:	N/A
Size:	168.3 KB
ID:	488616  

Any good slideshow movie maker suggestion?

$
0
0
I want to create a slideshow movie out of photos that I took from a recent trip. Any suggestion?

How many Macs can I run Logic Pro X on?

$
0
0
If I buy Logic Pro X, can I run it on more than one machine? If not, can I easily install it on a new machine later?
Viewing all 22110 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>