Remote desktop for mac unix commands


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Remote desktop for mac unix commands
# 8  
Old 06-22-2012
When you say update, that brings to my mind tools like rsync, rdist but when you say to monitor the students, if that means seeing their screen (desktop) that would be more something like vnc...
Now, if you had a PC with Reflection X, in their latest version they have something you install on Macs but this is commercial product...
I would go using ssh -X but you will have to get your Mac to accept (IPtables ?) then you could try to install if not present rdist or rsync so you have a centralized updating and start to learn shell scripting ( for the choosen tool...)!
# 9  
Old 06-22-2012
we update firefox, adobe, apple software update and Microsoft. We just want to basically launch them all and have them all update after we log into all machines at once under the same username and password
# 10  
Old 06-22-2012
That means update from the net?
You may need also expect utlity then...
# 11  
Old 06-22-2012
well on remote desktop there is a prewritten command to make every computer update software, but there isn't one to make every computer log in as administrator or log in at all.
# 12  
Old 06-25-2012
been a few days i got off work and didn't look at the posts anymore but thread still open, still in need of help!
# 13  
Old 06-25-2012
Bumping up posts or double posting is not permitted in these forums.

Please read the rules, which you agreed to when you registered, if you have not already done so.

You may receive an infraction for this. If so, don't worry, just try to follow the rules more carefully. The infraction will expire in the near future

Thank You.

The UNIX and Linux Forums.
# 14  
Old 06-25-2012
forwarding X won't work with native OSX applications, at least not on 10.7. OSX is using Quartz/Aqua window manager and does not like to forward the pretty gui (read: they want you to buy another mac).

I'd try to abandon the gui altogether, and try to accomplish the updates via CL only. Safer, and can be scripted.
Apparently, there is softwareupdate utility that can be run from CL:
Code:
softwareupdate --list

Mac OS X Server: How to remotely install software using the softwareupdate command-line tool

So, once you setup ssh keys, this shouldn't be too hard.

If you need to run some other update rather than built-in update application, it may or may not be possible via CL.

Re using VNC to administer things: just make sure to run VNC through ssh tunnel; VNC (remote desktop) is inherently insecure:
Code:
ssh -N -f -L 8888:server.ip.address:5900 user@server.ip.address
vnc://localhost:8888

 
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to run UNIX commands on remote machine from windows?

Hi All, I am working in support and we are planning to automate a system to reduce the direct manual intervention to core system. Please find the below details. 1. we have a web application that runs on Windows Platform. 2. From web application, we need to connect to remote Unix machine.... (6 Replies)
Discussion started by: Balaji K
6 Replies

2. Shell Programming and Scripting

Triggering remote UNIX shell script from Remote desktop

I m trying to run a batch script in remote desktop which executes unix commands on the unix server...the problem is i wnt the output in HTML format.so in my batch script i m giving the cmd like ssh hostname path ksh HC_Report.ksh>out.html ...but it generates the HTML file in remote desktop .i... (2 Replies)
Discussion started by: navsan
2 Replies

3. Shell Programming and Scripting

Can BASH execute commands on a remote server when the commands are embedded in shell

I want to log into a remote server transfer over a new config and then backup the existing config, replace with the new config. I am not sure if I can do this with BASH scripting. I have set up password less login by adding my public key to authorized_keys file, it works. I am a little... (1 Reply)
Discussion started by: bash_in_my_head
1 Replies

4. UNIX for Advanced & Expert Users

Commands to copy a tar.gz file from a Remote Unix Server to Local Desktop.

Hi, Just wanted to know, how can I ftp/transfer/copy a (design.tar.gz) archive from a Unix Server (sdmc222.sdmc.cp-srv.com) which is at a remote location, to my Windows Desktop. Obviously, it is not possible at cmd prompt on my Windows using the following commands :- ftp... (3 Replies)
Discussion started by: marconi
3 Replies

5. UNIX for Dummies Questions & Answers

Commands from 'Unix® for Mac®' book

Hi everyone, first day on the job. I'm attempting to learn Unix from the 'Unix® for Mac®' book. On page 11 there are instructions to enter certain commands but for me they don't work. user% which w is supposed to result in: -/usr/bin/w -I get a "command not found" darwin:~] user%... (2 Replies)
Discussion started by: Frank Hunter
2 Replies
Login or Register to Ask a Question