Screen Resolution mismatch. Can I force resolution prefs of remote machine?

Using Apple Remote Desktop, or Timbuktu, I'm connecting to a remote server that does not have a monitor attached.
Problem: I only have 2 screen resolutions available on the remote machine: 800 x 600 or 1024 x 768.
My local screen resolution is 2560 x 1600 (using a 30" Cinema Display).
Question: Can I change the display preferences of the remote machine to give me the same resolution as my local machine? (2560 x 1600)?

You are running the server in what's been referred to as 'headless' mode, meaning no monitor. Without a monitor installed the video card will default to one of three VESA compatible resolutions, 640X480, 800X600, or 1024X768; because it does not sense any EDID data on the display port.
You need one of these:
http://drbott.com/prod/db.lasso?code=0153-GHDD
which will allow you to set the display resolution on the remote 'headless' unit using the 'Displays' System Preferences panel. You don't even have to reboot the server to make it work, just attach the device and set the resolution to what you want to the limit of the video card's resolution. Settings will be preserved across reboots as the device present the correct EDID data to the video card even with no monitor attached.

Similar Messages

  • How can I run aqua applications on remote machine

    Hi, I would like to know how to run an aqua application on a remote mac, but display the result on the local machine. I can easily do that for X applications under Unix through ssh, but I don't know what is the equivalent for aqua. Since the remote machine is much faster than my local one, I don't want to just mont the remote disk, since in this way I'll be running on my slow local resources.
    Thanks

    To the best of my knowledge, Screen Sharing is your only option.
    Screen Sharing is Apple's dressed up VNC.  When going Mac to Mac it is rather good.  When mixing 3rd party VNC clients or servers with Apple's Screen Sharing components, you performance may vary.

  • JMF : Audio can not be played from the remote machine

    Hi,
    I am developing voice chat application.
    As the moment this writing I can capture from mic and play it from the same machine.
    But when I capture and transmit audio from one machine and try to play from remote machine in LAN it does not work.
    Could anybody tell me please What would be the possible causes for this ? I have given the code below.
    //Transmitter
    package lsf.telphony.test;
    import java.io.IOException;
    import java.util.Vector;
    import javax.media.CannotRealizeException;
    import javax.media.CaptureDeviceInfo;
    import javax.media.CaptureDeviceManager;
    import javax.media.DataSink;
    import javax.media.Format;
    import javax.media.Manager;
    import javax.media.MediaLocator;
    import javax.media.NoDataSinkException;
    import javax.media.NoDataSourceException;
    import javax.media.NoProcessorException;
    import javax.media.NotRealizedError;
    import javax.media.Processor;
    import javax.media.ProcessorModel;
    import javax.media.format.AudioFormat;
    import javax.media.protocol.ContentDescriptor;
    import javax.media.protocol.DataSource;
    public class MediaTransmetter implements Runnable
         private MediaLocator mediaLocator = null;
         private DataSink dataSink = null;
         private Processor mediaProcessor = null;
         public static String errorString;
         private CaptureDeviceInfo captureDeviceInfo = null;
         public MediaTransmetter(String rtpURL)
              DataSource dataSource = null;
              ProcessorModel model = null;
              Format formats[] = null;
              ContentDescriptor contentDescriptor = null;
              try
                   captureDeviceInfo = getCaptureDevice();
                   mediaLocator = captureDeviceInfo.getLocator();
                   dataSource = javax.media.Manager.createDataSource(mediaLocator);
                   contentDescriptor = new ContentDescriptor(ContentDescriptor.RAW_RTP);
                   formats = new Format[] { new AudioFormat (AudioFormat.LINEAR) };
                   model = new ProcessorModel(dataSource, formats, contentDescriptor);
                   mediaProcessor = Manager.createRealizedProcessor(model);               
                   MediaLocator outputLocator = new MediaLocator(rtpURL);
                   dataSink = Manager.createDataSink(mediaProcessor.getDataOutput(), outputLocator);               
              } catch (Exception e)
                   e.printStackTrace();
         @SuppressWarnings("unchecked") //check for this statement
         private CaptureDeviceInfo getCaptureDevice()
              CaptureDeviceInfo captureDeviceInfo;
              Vector<CaptureDeviceInfo> deviceListVector = CaptureDeviceManager.getDeviceList(new AudioFormat(AudioFormat.LINEAR));
              for (int i = 0; i < deviceListVector.size(); i++)
                   captureDeviceInfo = (CaptureDeviceInfo)deviceListVector.elementAt(i);
                   System.out.println("captureDeviceInfo = " + captureDeviceInfo);
                   return captureDeviceInfo; // here the firt element is return. Add to login to get the specific CaptureDeviceInfo object.
              return null;
         @Override
         public void run()
              try
                   dataSink.open();
                   dataSink.start();
              } catch (SecurityException e)
                   e.printStackTrace();
              } catch (IOException e)
                   e.printStackTrace();
              mediaProcessor.start();
              System.out.println("Transmitting started successfully.");
         public static  void main(String[] args) { // Loads pastry settings
              MediaTransmetter mediaTransmetter = new MediaTransmetter("rtp://192.168.2.2/audio");
              Thread mediaTransmetterThread = new Thread(mediaTransmetter);
              mediaTransmetterThread.start();
    }//AudioReceiver
    package lsf.telphony.test;
    import javax.media.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    public class MediaReceiver extends JFrame implements Runnable
         private static final long serialVersionUID = 1L;
         private static final String FRAME_TITLE = "Telphony Media Player";
         private static final String CONTROL_PANEL_TITLE = "Control Panel";
         private static final int LOC_X = 100;
         private static final int LOC_Y = 100;
         private static final int HEIGHT = 500;
         private static final int WIDTH = 500;
         private Player player = null;
         private JTabbedPane tabPane = null;
         public MediaReceiver()
              super(FRAME_TITLE);
              setLocation(LOC_X, LOC_Y);
              setSize(WIDTH, HEIGHT);
              tabPane = new JTabbedPane();
              getContentPane().add(tabPane);
              addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent e)
                        closeCurrentPlayer();
                        System.exit(0);
         private JPanel createMainPanel()
              JPanel mainPanel = new JPanel();
              GridBagLayout gbl = new GridBagLayout();
              GridBagConstraints gbc = new GridBagConstraints();
              mainPanel.setLayout(gbl);
              boolean visualComponentExists = false;
              if (player.getVisualComponent() != null)
                   visualComponentExists = true;
                   gbc.gridx = 0;
                   gbc.gridy = 0;
                   gbc.weightx = 1;
                   gbc.weighty = 1;
                   gbc.fill = GridBagConstraints.BOTH;
                   mainPanel.add(player.getVisualComponent(), gbc);
              if ((player.getGainControl() != null) && (player.getGainControl().getControlComponent() != null))
                   gbc.gridx = 1;
                   gbc.gridy = 0;
                   gbc.weightx = 0;
                   gbc.weighty = 1;
                   gbc.gridheight = 2;
                   gbc.fill = GridBagConstraints.VERTICAL;
                   mainPanel.add(player.getGainControl().getControlComponent(), gbc);
              if (player.getControlPanelComponent() != null)
                   gbc.gridx = 0;
                   gbc.gridy = 1;
                   gbc.weightx = 1;
                   gbc.gridheight = 1;
                   if (visualComponentExists)
                        gbc.fill = GridBagConstraints.HORIZONTAL;
                        gbc.weighty = 0;
                   } else
                        gbc.fill = GridBagConstraints.BOTH;
                        gbc.weighty = 1;
                   mainPanel.add(player.getControlPanelComponent(), gbc);
              return mainPanel;
         public void setMediaLocator(MediaLocator locator) throws Exception, IOException, NoPlayerException,
                   CannotRealizeException
              setPlayer(Manager.createRealizedPlayer(locator));
         public void setPlayer(Player newPlayer)
              closeCurrentPlayer();
              player = newPlayer;
              tabPane.removeAll();
              if (player == null)
                   return;
              tabPane.add(CONTROL_PANEL_TITLE, createMainPanel());
              Control[] controls = player.getControls();
              for (int i = 0; i < controls.length; i++)
                   if (controls.getControlComponent() != null)
                        tabPane.add(controls[i].getControlComponent());
         private void closeCurrentPlayer()
              if (player != null)
                   player.stop();
                   player.close();
         public static void printUsage()
              System.out.println("Usage: java MediaPlayerFrame mediaLocator");
         public void run()
              try
                   MediaReceiver mpf = new MediaReceiver();
                   mpf.setMediaLocator(new MediaLocator("rtp://192.168.2.2:10000/audio"));
                   mpf.show();
              } catch (Exception t)
                   t.printStackTrace();
         public static void main(String[] args) { // Loads pastry settings
              MediaReceiver mediaReceiver = new MediaReceiver();
              Thread mediaReceiverThread = new Thread(mediaReceiver);
              mediaReceiverThread.start();

    By the way the program does not terminate immediately after starting it. According to your advice I tried removing running it inside in a thread and making it sleep at several points appropriate. No luck.
    I wonder why packets are not sending even the program is running until the end of the line with no exception.
    Have you tried to capture RTP packet traffic with Wireshark or similar kind of network analyzing software with this kind of program?
    I am doubt whether my program is actually transmitting packets but unable to capture those due to the error with transmitter.
    Even with the Wireshark It does not capture outgoing packets.
    And another thing I noticed with netstat is it shows two pots get opened when running the application but those ports are not the one I note in the program.
    For example I run the program with port number as 10000 (sink: setOutputLocator rtp://192.168.2.104:10000/audio). But when I check it with netstat some other ports are open.
    i.e
    nuwan@nuwan-laptop:~/eclipse$ netstat -anup
    (Not all processes could be identified, non-owned process info
    will not be shown, you would have to be root to see it all.)
    Active Internet connections (servers and established)
    Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
    udp 0 0 0.0.0.0:68 0.0.0.0:* -
    udp 0 0 0.0.0.0:40526 0.0.0.0:* -
    udp 0 0 0.0.0.0:5353 0.0.0.0:* -
    udp6       0      0 127.0.1.1:28864         ::: 10772/java*
    udp6       0      0 127.0.1.1:28865         ::: 10772/java*
    nuwan@nuwan-laptop:~/eclipse$
    And each time when I start the program these two ports are changed also.
    And foreign address is not shown ? Any comment for that??
    Is there anything that can be drawn from above information which caused for not working my program.
    This is killing me. And also making me sharper. And I cant leave this behind also. So highly appreciate you time and help.
    Thanks.

  • How can i install oracle from a remote machine

    Hi,
    I need to install oracle 8i from a remote machie using a public ip.For this i tried connecting remote erver usig Xwindows like cygwin,Xwin-32. but my remote machie is not connecting and showing blank screen.I can connect through putty and tried for silent installation but it was failed.Can any one give me some suggetion for remote installation or atleast for silet intallation.
    Thaks and Regard
    Anand

    try VNC
    http://www.realvnc.com/
    install vncserver on server side
    and run vncclient on either unix box or windows pc
    just pick a version you like.
    Most importantly It's free
    null

  • Love this tool, but one problem: can't see beach balls on remote machines!

    Hi, I have the lastest OSX and ARD on the machines on our small biz lan, and I have one problem: when controlling or observing other machines I can't see the beach ball when it occurs...making it look like ARD is hung (or something). It's very disconcerting...is there a switch somewhere to make this right? Thx
    coocoo

    I'd be very surprised if ARD is ever able to display the spinning beach ball on the managing Mac.
    A couple of tips that may help:
    1. Set the client computers to display seconds on the clock in the menubar. If the seconds are counting, you at least know that you are receiving visual updates. If you can't access a menu in the hung app, but can still see the seconds counting, you likely have a beach ball.
    2. Run Activity Monitor on the client machine. A quick glance at the process list will show if an app is hung (and how much CPU it's gobbling).
    3. Select "Force Quit" from the Apple menu. This will also show which apps are hung.
    4. Peek into the /Library/Logs/HangReporter/ folder.
    Cheers.

  • Can mail be accessed from a remote machine

    If multiple mail accounts are set up on lion server (students in a school), can these accounts be accessed from the outside world by the students? Preferrebly via a web browser.
    Would this be possible or would there be any other method of accessing mails without a fixed machine with a VPN?
    Doey

    The Server applicaiton will allow you to tick a box to enable webmail under the "Mail" configuration area.
    This will use either the default self-signed SSL certificate, or, whichever certificate you nominate, to then enable the Apache2 web server to listen on 443 and re-direct traffic to your.host.name:443/webmail to the included Roundcube installation.
    Roundcube is a popular (free) webmail package that is pre-configured on Lion Server -- all you should need to do is correctly enable users (one note on that, see below), configure the Mail service itself, and enable Webmail via the tick box.  I've done this, it works.
    The note on enabling users:  There are some configurations whereby the type of password storage used by Lion Server is not compatible with Mail/Webmail -- I can't recall off the top of my head what these are, but, when I created and administered users, there was a warning.  And indeed, if I tried to sign in as certain users, it would not work.  I had to reset the password and it worked fine.
    In short, though, the webmail installation is pretty slick.  Lion is using Dovecot for IMAP/POP, Postfix for SMTP and Roundcube for Webmail.
    If you REALLY want to please your users, you'll want to enable Server Side Mail Filters -- which is Apple talk for Sieve, a fantastic way to sort and process mail on the server side automatically as mail arrives.  The Roundcube webmail setup has the GUI for this built in, under the Filters area.
    Hope that helps!

  • Time Capsule and Time Machine: How can I force Ethernet Connection for the first backup ?

    Hi,
    How can I force the Time Capsule - Time Machine Couple to communicate via an Ethernet cable for the initial backup without changing the wi-fi configuration of the Time Capsule?
    I do not want to change the wi-fi configuration of the TC because it appeared that I was not able to restaure it proprerly after a first "ethernet backup".
    Please note that I do not want to use my TC to extend my wi-fi network nor create a new one. But, when I disable the wi-fi on the TC, as I want to restaure it, I only can see "expend" or "create a network" options within the wirless config page of AirPort Utlity; "Connect to a network" is not shown in the list!
    Thx a lot for your attention,
    François
    MBP 15' mid-2010
    OS X 10.8.2 (12C54)
    Time Capsule end-2011 (2TB - v7.6.1)

    You MUST change the TC mode to something other than join a wireless network.. because in that mode, TC turns off the ethernet ports. 
    The join a wireless network is hidden option because apple do not support it and it works poorly.
    You can access it by holding down the option key.
    You can also save the current settings and restore them after you finish the ethernet backup.
    Please note using join means double hop wireless and your TC data speed to the Mac will be extremely slow.. this will also affect your other internet connections and any other computers on the wireless network as it will use most of the capacity for much longer period than directly connecting to the TC.
    Basically that is why Apple do not support it.. it is lousy way to work a TC in a network.

  • Right click in Screen Sharing causes Expose on remote machine

    I have a Mac Pro at home. I have a hot corner for Exposé. I have a mighty mouse at both the host and client machine. In both cases, Exposé from a mouse pinch is disabled.
    When I try and drag a file from one place to another on the remote machine, Exposé is triggered. I also use RemoteTap on my iPhone - when I connect using it, it forces a "spaces exposé" (shows all the spaces on the remote machine) and quits the Dock. I imagine these two may be related. Has anyone else seen this and know what may be causing it?
    I should add that the desktop machine was a migration from my laptop. I have looked everywhere I can think of, but on the remote machine, when I am in front of it, Exposé is not just triggered without a real trigger. With the remote sessions, I have a hard time using the machine without exposé triggering.
    Thanks in advance for help...

    I have the same problem with the dragging a file activating expose. SO ANNOYING!!!! It makes screen sharing (one of the main reasons I pay for MobileMe) absolutely useless. It can be solved, however, by disabling all hot corners. While that's a semi easy workaround, its incredibly annoying to have to do that each time I want to remotely log in. I really hope they fix it soon or they lost a MobileMe customer. I will just use a free VNC program at that point.

  • Can't transfer large files with remote connection

    Hi all,
    I'm trying to figure out why we can't transfer large files (< 20MB) over a remote connection.
    The remote machine is a G5 running 10.4.11, the files reside on a Mac OS X SATA RAID. We are logged into the remote machine via afp with an administrator's account.
    We can transfer files smaller than 20 MB with no problem. When we attempt to transfer files larger than 20 MB, we get the "The operation can't be completed because you don't have sufficient permissions for some of the items."
    We can transfer large files from the remote machine to this one (a Mac Pro running 10.4.11) no problem.
    The console log reports the following error:
    NAT Port Mapping (LLQ event port.): timeout
    I'm over my head on this one - does anyone have any ideas?
    Thanks,
    David

    I tried both these things with no luck.
    The mDNSResponder starts up right after the force quit - is this right?
    The following is the console log, which differs from the previous logs where we had the same problem:
    DNSServiceProcessResult() returned an error! -65537 - Killing service ref 0x14cb4f70 and its source is FOUND
    DNSServiceProcessResult() returned an error! -65537 - Killing service ref 0x14cb3990 and its source is FOUND
    DNSServiceProcessResult() returned an error! -65537 - Killing service ref 0x14cb2b80 and its source is FOUND
    DNSServiceProcessResult() returned an error! -65537 - Killing service ref 0x14cb1270 and its source is FOUND
    Feb 4 06:13:57 Russia mDNSResponder-108.6 (Jul 19 2007 11: 41:28)[951]: starting
    Feb 4 06:13:58 Russia mDNSResponder: Adding browse domain local.
    In HrOamApplicationGetCommandBars
    In HrOamApplicationGetCommandBars
    In HrOamApplicationGetCommandBars
    Feb 4 06:23:12 Russia mDNSResponder-108.6 (Jul 19 2007 11: 41:28)[970]: starting
    Feb 4 06:23:13 Russia mDNSResponder: Adding browse domain local.
    Feb 4 06:26:00 Russia configd[35]: rtmsg: error writing to routing socket
    Feb 4 06:26:00 Russia configd[35]: rtmsg: error writing to routing socket
    Feb 4 06:26:00 Russia configd[35]: rtmsg: error writing to routing socket
    Feb 4 06:26:00 Russia configd[35]: rtmsg: error writing to routing socket
    Feb 4 06:26:00 Russia configd[35]: rtmsg: error writing to routing socket
    Feb 4 06:26:00 Russia configd[35]: rtmsg: error writing to routing socket
    Feb 4 06:26:00 Russia configd[35]: rtmsg: error writing to routing socket
    Feb 4 06:26:00 Russia configd[35]: rtmsg: error writing to routing socket
    [442] http://discussions.apple.com/resources/merge line 4046: ReferenceError: Can't find variable: tinyMCE
    Thanks,
    David

  • Have a bit of a problem. I'm trying to adjust the resolution on a 2013 27" iMac. Brand new, bought on April 6 2013 from Apple. My friend is 84 years old so, I'm trying to help him adjust the screen so he can see the screen. Any direction would be great.

    OK. Have a 84 year old that has a hard time seeing the screen. I've been able to adjust Safari's resolution to accomadate him however, I would like to adjust the screen resolution. When I open preference's / displays, it doesn't have an option to adjust. Is there a way? Maybe thourgh terminal? The computer is the new 27" iMac purchased on April 6, 2013 from Apple. Yes, it is the newest iMac without the disk (DVD) drive. It's running Mountian Lion.
    Anyone have some direction on how to solve this enigma???
    bish

    The purchase date isn't the important info here.  The actual model of the iMac is and this info is in the model identifier.  For example, I have a late-2012 iMac, model identifier is iMac 13,2.  I will add that there is no 2013 model available.  The most recent at this time is the late-2012 model which I have.
    On my display if I select Apple->System Preferences->Displays then press the button "Display" I am presented with a screen which shows Resolution and Scaled as button options.  "Best for built-in display" is the default, however, clicking on "Scaled" brings up the various resolutions that can be used with the display:
    From this I can select a display with larger items, but keep in mind that while a larger image can be selected (using a smaller width x height value) it will not be as crisp and sharp as the default.

  • If my screen is cracked can it affect my camera resolution

    if my ipod touch screen is cacked can it affect my camera quality

    If can effect the front camera if the screen is cracked in front of the camera lens. Otherwise no.

  • CP5: Is there a way I can set the resolution size before I start recording?

    When I launch Adobe Captivate 5, I click on "Create New.. Software Simulation", but I can't find a way of setting the screen size / resolution before I start recording, like there is when you click "Create New... Blank Project".
    I prefer to do a new Software Simulation instead of a Blank Project because I can record in Demo, Training and Assement modes all at once, and I don't get this option when I start a project.
    Can someone help me?
    Many thanks!

    Hello and welcome to the forum,
    Choose 'Custom size' after having selected the application to record, and you will be able to choose a resolution. If you choose Application or  Application region the current resolution, size of that application or that region will be kept. But with custom size you can have a resolution and the application snapping to that resolution.
    Lilybiri

  • Force resolution for external monitor

    I have a NEC MultiSync LCD 2690WUXi which supports a resolution of 1920 x 1200 pixels. I have it connected to my MBP i7 (early 2010) via DVI -> Mini-DV. However, the monitor preference pane only shows a max. resolution of 720p or 1024 x 576 pixels:
    The help says that I can hold down the Alt-Key while clicking on "Skaliert" (it's in German, I don't know the translation, maybe "custom" or "scaled"; the radio button below "optimized for monitor").
    But doing this has absolutely no effect. This means, I can't run the display in a reasonable resolution!
    Is there a way to force ML to use a specific resoultion? Maybe a third party software?
    Any help appreciated!
    Thanks,
    Timo

    Wow! 12 hours ago and dropped to page #14. Seems to be a lot of traffic here...
    Anyone has a tip for a possibility to force resolution settings in ML?
    Thanks!
    Timo

  • Macbook Pro 15" Model - Native/Forced Resolutions

    I'm looking into buying a 15" Macbook Pro, but the only thing holding me back is it seems like it can only support 1440x900 as its native. Is there an upgrade I can buy for it from apple to achieve somewhere around 1920x1200 like the 17" model, or is there anyway to force the resolution? My last option would be to buy the 17" model.. I'd rather not though because I don't like the amount of space it takes up/the hand room on the base haha.
    Thanks for the responses
    John

    I have the 15" model with the $150 BTO option of the 1680x1050 display. You can't force a display past it's native resolution. It only comes with so many pixels

  • Screen resolution changed upon awake; old resolution no longer available

    My new MSI Z97 i7 mobo based Windows TP woke from sleep this morning, with the resolution changed to 1024x768.
    When I went to change it back to 1920x1200, that resolution is not available; only 1920x1024, and the screen looks odd. Unless advised otherwise, I will try to re-install the display drivers that came w/ the mobo, to get the display correct again. Otherwise,
    really liking Win10

    Hello Giggirock,
    Firstly, i would take the display and conect it to another machine. See if you can achieve this resolution with another computer. If the same problem occurs, i would say its the controller board on the LCD. if the resolution was there(on the other computer) then u may have a problem with the video card in your computer.
    try this out, and let me know how you go
    Cheers
    Bryza_Bone

Maybe you are looking for

  • Open link in background when anchor's attribute "href" contains javascript

    Hi community, I support web enterprise-level application with some legacy parts, where some windows are opened by using window.open command inside of anchor's href attribute. (e.g. <a href="javascript:MyFunction('../someurl', '2')" ../> ... function

  • Install SSD from Recovery Disks (newerToshiba), or how?

    http://forums.toshiba.com/t5/System-Recovery-and-Recovery/Will-Toshiba-Recovery-Discs-properly-align... ^ See the last post of that thread.   The writer made recovery disks from the new laptop, then installed the SSD and used the recovery disks to in

  • How can I scan a document to PDF in Windows 7 Professional

    I have a Canon MX892 which I previously used with Windows XP. I was able to scan documents to PDF very easily using the Canon Solutions Menu EX.  I am now using Windows 7 Pro 64. I downloaded the associated version of Canon Solutions Menu EX, but it

  • How do i know what is the latest version of PeopleSoft Enterprise Portal?

    Hi, I would like to know what is the latest version of PeopleSoft Enterprise Portal. The problem is we want to upgrade our current Portal to the latest one.Also i want to know if the version has a Release Value Proposition. Thanks, Sriram

  • Digital Booklet PDF is damaged and won't open

    Hi, I purchased Negramaro- Mentre tutto scorre on the iTunes music store yesterday, but whenever I try to open the interactive booklet pdf file in acrobat reader, I get a message saying "There was an error opening this document. The file is damaged a