TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 04-16-2009, 07:46 PM   #1 (permalink)
The Gregarious
 
allworknoplay's Avatar
 
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
allworknoplay is on a distinguished road
Default Vista to Mac VNC [was "Question for Salathe"]

Hey Salathe,

I have a Mac question for you. I don't have one but might get a Macbook Pro.

Anyways, I was wondering if you knew off-hand if I could remote desktop from my Windows Vista to Mac? I see that Apple has a Remote Desktop program but it looks like it's from Mac OSX to Windows? Or from Mac OSX to Max OSX....

I did a little research and saw that it's possible through some VNC type connection, but I thought I'd see if you were familiar with it at all?

It would be nice to have one keyboard/mouse with multiple monitors and I can have Vista on one monitor with Mac on another...

My buddy just bought a new 24" iMac and although it's nice, growing up as a PC guy, I just cannot get used to the small keyboard that comes with the iMac and the mouse.

So I hope to just use what I have now and remote desktop to a Mac OS....
allworknoplay is offline  
Reply With Quote
Old 04-16-2009, 08:45 PM   #2 (permalink)
Moderateur
RegEx Guru PHP Guru Top Contributor Advanced Programmer 
 
Salathe's Avatar
 
Join Date: Apr 2007
Posts: 1,393
Thanks: 5
Salathe is on a distinguished road
Default

In short, yes it's perfectly possible.

If you're just looking to have the same keyboard/mouse across both, then something like Synergy might work better than using VNC.

If you are wanting to "remote desktop", then OS X has a VNC server built in ("screen sharing") and there are other alternative VNC servers available if you (for whatever reason after trying it) don't want to use that.
Salathe is offline  
Reply With Quote
The Following User Says Thank You to Salathe For This Useful Post:
allworknoplay (04-16-2009)
Old 04-16-2009, 09:01 PM   #3 (permalink)
The Gregarious
 
allworknoplay's Avatar
 
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
allworknoplay is on a distinguished road
Default

Quote:
Originally Posted by Salathe View Post
In short, yes it's perfectly possible.

If you're just looking to have the same keyboard/mouse across both, then something like Synergy might work better than using VNC.

If you are wanting to "remote desktop", then OS X has a VNC server built in ("screen sharing") and there are other alternative VNC servers available if you (for whatever reason after trying it) don't want to use that.
Ohhh yes, Synergy would even be better!! Then I can just buy an iMac which would be a little cheaper than the MBP's...(a little)....

the only thing is I don't see Synergy supporting Vista? Do you think they just forgot to include it in the System Requirements?

Otherwise, this is absolutely PERFECT!!
allworknoplay is offline  
Reply With Quote
Old 04-16-2009, 09:16 PM   #4 (permalink)
Moderateur
RegEx Guru PHP Guru Top Contributor Advanced Programmer 
 
Salathe's Avatar
 
Join Date: Apr 2007
Posts: 1,393
Thanks: 5
Salathe is on a distinguished road
Default

Yes, it should play nicely with Vista.
Salathe is offline  
Reply With Quote
Old 04-17-2009, 01:50 PM   #5 (permalink)
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

At work i use, x2vnc (there is also a windows version too, win2vnc) so i can use the same mouse+keyboard across my linux, windows xp and mac computers I have in front of me, I just move my mouse to the left or right of my linux screen and I'm instantly in charge of the mac or redmond (which ever way i go :))
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
sketchMedia is offline  
Reply With Quote
Old 04-17-2009, 01:59 PM   #6 (permalink)
The Gregarious
 
allworknoplay's Avatar
 
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
allworknoplay is on a distinguished road
Default

Quote:
Originally Posted by sketchMedia View Post
At work i use, x2vnc (there is also a windows version too, win2vnc) so i can use the same mouse+keyboard across my linux, windows xp and mac computers I have in front of me, I just move my mouse to the left or right of my linux screen and I'm instantly in charge of the mac or redmond (which ever way i go :))
Do you know if it works with Vista 64bit?

I looked into Synergy and I guess it's setup with a slave/master relationship.

Is that the way x2vnc works also?

This is great! I had no idea this stuff existed. I have so many linux's, windows laying around, I've always thought it was nice to have one keyboard/mouse...

And now I want to venture into Mac's.....

I'm thinking of getting the iMac 20"....
allworknoplay is offline  
Reply With Quote
Old 04-17-2009, 02:20 PM   #7 (permalink)
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

Well, if you have x2vnc setup on the Linux box, then all you need is the VNC server to work on vista, i think TightVNC works on vista x64 (it worked on XP x64 if memory serves)

My current setup:
[Redmond] <-- [Linux Debian] --> [mac]

Both the redmond and the mac have VNC servers running, then from my linux i run a bash script to first of all kill any existing x2vnc processes running then start them again:
bash Code:
#!/bin/bash/
killall -9 x2vnc &> /dev/null
sleep 1
killall -9 x2vnc &> /dev/null
sleep 1
x2vnc -east ip:port -passwd ~/.vnc/passwd -mac &> /dev/null & disown
x2vnc -west ip:port -passwd ~/.vnc/passwd &> /dev/null & disown

echo VNC Restarted

That should work, it does for me anyway.
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)

Last edited by sketchMedia : 04-17-2009 at 02:25 PM. Reason: typos, sigh... long day
sketchMedia is offline  
Reply With Quote
The Following User Says Thank You to sketchMedia For This Useful Post:
allworknoplay (04-17-2009)
Old 04-17-2009, 02:23 PM   #8 (permalink)
The Gregarious
 
allworknoplay's Avatar
 
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
allworknoplay is on a distinguished road
Default

Thanks Sketch, I will take a look at both and compare....

Fun stuff!!
allworknoplay is offline  
Reply With Quote
Old 04-17-2009, 02:27 PM   #9 (permalink)
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

Reading about it, synergy seems to be a bit better, some annoyances of x2vnc been fixed etc

I'll give it a go myself, looks good.
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
sketchMedia is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Retrieving Files from a Backup in Vista CMellor The Lounge 2 06-24-2008 02:34 PM
question about ftp kritikal General 3 04-28-2008 03:21 PM
$_SERVER['REQUEST_URI'] question solistus General 4 04-01-2008 09:31 PM
Cleaning data before entering database question Killswitch General 7 12-24-2007 11:29 PM
Important Database Structure Question! AnthonyOS MySQL & Databases 5 12-20-2007 03:26 PM


All times are GMT. The time now is 12:30 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design