How do I restart mini with no monitor or keyboard

mac mini has constant small green light on but is not rebooting. I cannot connect via screen sharing.
I have unplugged and replugged the power cable, held in the button on the rear left corner until I hear a faint noise like spinning disc starting but cannot connect via screen sharing as I usually do to update software, etc.
Is there a certain way to restart other than pushing the button? I do not hear any chime like on mac air when it restarts.

The Mac mini does not have a green light it has a white light, this applies to all models of Mac mini ever made. Make sure you are looking at the right box, I am sure it does not apply to you but I find many normal users often get confused between the monitor and the actual computer and think the monitor is the computer. (Which is not true unless you have an all-in-one like the iMac.)
The ways to restart a Mac are -
Via a keyboard and mouse and selecting restart from the Apple menu
Via screen sharing (if enabled and working)
Via SSH in Terminal.app from a client (if enabled and working)
Holding down the power button on the back for about 5 seconds
Pulling the power cable out
If there is a problem with the computer or Screen sharing and/or SSH has been disabled then merely restarting the Mac is not going to change things. Does the Mac respond to a PING test? This will give an indication as to wether it is booting enough to be active on the network. It is worth checking the Ethernet cable as well.

Similar Messages

  • Have mac mini with thunderbolt monitor 1yr old, recently updated with new 10.0.2 from apple, now iMovie doesn't seem to support my Sony HDR-XR500 camera. Is there any help on this?

    Have mac mini with thunderbolt monitor 1yr old, recently updated with new 10.0.2 from apple, now iMovie doesn't seem to support my Sony HDR-XR500 camera. Is there any help on this?

    haha, so now i'm thinking. I'm learning the terminal as fast as i can but there are several lines of codes and commands in there that throws up red flags to me that i don't fully understand. It just looks fishy too me. It would be highly appreciated if someone could just check this out just to tell me that i don't need to worry about it. Or point me in the right direction. I just feel un easy about this. ha.

  • I'd like to project what's on my Mac Mini with Samsung monitor to my standard definition Samsung TV via WIFI.  What HDM1 dongle should I buy?

    I'd like to project what's on my Mac Mini (with Samsung monitor) to my Samsung TV (standard definition) via my WIFI.  What HDM1 dongle should I buy?

    lyndafromorwell wrote:
    I'd like to project what's on my Mac Mini (with Samsung monitor) to my Samsung TV (standard definition) via my WIFI.  What HDM1 dongle should I buy?
    You can in fact buy what you want, no need to go with Apple TV
    To connect (wirelessly) your Mac to the HDMI on the TV:
    They range from $100 on up.

  • How do I restart Firefox with add-ons disabled?

    How do I restart Firefox with add-ons disabled?

    * Start Firefox in Safe Mode by Holding down the SHIFT key while starting Firefox
    * As an alternative method, select "Start -> Run" and enter one of the following in the Windows Run box:
    ** firefox -safe-mode
    ** "C:\Program Files\Mozilla Firefox\firefox.exe" -safe-mode
    -> Firefox Safe Mode window will appear -> DON'T SELECT ANY OPTIONS, just click '''Continue in Safe Mode'''
    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Check and tell if its working.

  • MacBook Pro with external monitor and keyboard.

    Hello, everyone.
    I've tried to find the answer for this question but haven't found a clear answer with my Google search.
    My older Powerbook G4 will not allow me to work with an external monitor and keyboard with the screen in a closed position. I am about to purchase a new MacBook Pro and would like to be able to use it at home with a larger monitor and keyboard but with the lid closed and its built-in screen turned off. Can this be done ?
    How can a MacBook Pro be used (turned-on) with external monitor and keyboard while the lid is closed and the its screen is off ?
    Thank you in advance for your answers.
    Joseph

    Hi Niel,
    I have the same problem with my MacBook and I followed the instructions you posted. My issue is that when the computer wakes up after clicking the buttons on the keyboard it then quickly goes back to sleep. I can't seem to keep it awake when the lid is closed. I've been searching for an answer without any luck. Any idea how to solve this problem?
    Thanks!
    P.S. After I finished posting this message I figured out my problem. While fiddling with my computer and monitor, I inadvertently disconnected the power. After reconnecting the power, I was able to wake my computer and keep it awake. A note to other people having this issue: the computer must be connected to a power outlet to run in closed mode.
    Message was edited by: qwertyphd

  • How do you center dialogs with multiple monitors. code, best practices

    My existing code will take the pixel size of the java app, and using the size of the dialog, it will center dialogs perfectly in the center of the application. This is great for single monitors, but when multiple monitors are introduced it is a problem. With dual monitor, the dialog is split in half between the two monitors.
    I should be able to determine which pixel/frame initiated the user's action; and then i am hoping to get some code or direction on:
    1. how to determine which monitor the user initiated the action on (knowing the px or frame location, how would i do this)
    2. how to center dialog on that monitor
    if possible, it would be appreciated if you can provide some code; i cant find anything on determing pixel size of monitors and this seems to be a little bit of a project to do from scratch. open source, 3rd party, insight, guidance, all is appreciated. thanks !

    This code may help:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class OptionPaneDemo {
        ActionListener al = new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                Component comp = (Component) evt.getSource();
                JFrame f = (JFrame) SwingUtilities.windowForComponent(comp);
                showDialogInUpperRightCorner(f);
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable(){
                public void run() {
                    new OptionPaneDemo().go();
        void go() {
            GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
            for(GraphicsDevice gd: ge.getScreenDevices()) {
                JButton showDialogButton = new JButton("show the dialog");
                showDialogButton.addActionListener(al);
                JFrame f = new JFrame(gd.getDefaultConfiguration());
                f.getContentPane().add(showDialogButton, BorderLayout.NORTH);
                f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                f.pack();
                centerWindow(f);
                f.setVisible(true);
        void centerWindow(Window w) {
            Rectangle windowBounds = w.getBounds();
            GraphicsConfiguration gc = w.getGraphicsConfiguration();
            Rectangle screenBounds = gc.getBounds();
            int x = screenBounds.x + (screenBounds.width - windowBounds.width)/2;
            int y = screenBounds.y + (screenBounds.height - windowBounds.height)/2;
            w.setLocation(x, y);
        void showDialogInUpperRightCorner(JFrame f) {
            JOptionPane pane = new JOptionPane("Hello, world!");
            JDialog dialog = pane.createDialog(f, "title");
            Rectangle dialogBounds = dialog.getBounds();
            GraphicsConfiguration gc = dialog.getGraphicsConfiguration();
            Rectangle screenBounds = gc.getBounds();
            //int x = screenBounds.x + screenBounds.width - dialogBounds.width;
            //int y = screenBounds.y == 0 ? 1 : screenBounds.y;
            int x = screenBounds.x;
            int y = screenBounds.y + screenBounds.height - dialogBounds.height-1;
            System.out.format("(%d,%d)%n", x, y);
            dialog.setLocation(x, y);
            dialog.setVisible(true);
    }

  • Mini with dual monitors

    Hi, I'd like to set up a mini using two monitors, both VGA ,
    and both running different resolutions and different apps.
    Can this be done?
    Thanks,
    Carl

    Welcome to the Apple Discussions!
    The Mac mini has two video ports; mini-DVI and mini-DisplayPort. The mini ships with an Apple mini-DVI to DVI-D adapter which will not help you in this situation. You could purchase a mini-DisplayPort to VGA adapter and a mini-DVI to VGA adapter and then use VGA to VGA cables to connect the adapters to your displays' VGA ports. This setup can support up to 1920 x 1200 pixels, and can be configured in extended desktop mode, allowing you to place different apps in each display's field of view. However, only one of the two displays will have the menu bar, so even with the windows for an app on the other display, all running apps are controlled from the display with the menu bar.
    Dah•veed

  • Mac Mini with no monitor controlled via VNC - video output corrupt

    Hi,
    I have a Mini running with no monitor, mouse or keyboard connected (it's used as a Server for my music library) that I control via VNC on my Mac Book.
    Everything works fine until I ever have to reboot the Mini. After the reboot, logging into the machine via VNC shows all the video corrupt (jagged horizontal lines through the whole display making it totally undreadable).
    This happens both with ARD and Chicken of the VNC (tried both in case it was an issue with the VNC software).
    To fix it I have to connect a monitor to the Mini. Then I can just unplug the monitor again and the video output via VNC is fixed.
    Anyone have any ideas? It's driving me nuts
    Thanks,
    Neil

    After some more searching I stumbled across this thread on another forum;
    http://www.macusenet.com/archive/index-t-75211.html
    It seems that the problem can be avoided by connecting the DVI-S-Video adapter that ships with the Mini.

  • Mac Mini set-up - how can I do this with a new wireless keyboard

    Hi,
    I have just bought a mac mini and a mac wireless keyboard. Unfortunately, it appears that to set up the mac mini I need to register a username etc which requires a keyboard. However, to set-up the keyboard I need to get past the set-up screen!
    Can anyone suggest how I might solve this problem?
    Thanks!

    Hi, try this...
    http://support.apple.com/kb/TS4456

  • How to connect 2 Minis w/1 monitor/kb/mouse?

    Is there any devices currently on the market that will connect 2 mac minis with one 23" cinema display, 1 Keyboard & 1 mouse? Lack of deskspace!
    Thanks for the help!
    Mini Duo   Mac OS X (10.4.6)  

    Try looking at mac sales, pcconnection, cdw and macmall, and do a search on kvm.
    Mini G5 PowerMac G4 PowerBook Mac SE Mac OS X (10.4.6)

  • Mac Mini with dual monitors running independently?...

    Hello,
    I have 2 screens that I would like to make good use of.  Wondering if the mac mini....or any other singular mac solution would accomplish having both screens working simultaneously on different applications through a single mac mini?  Not mirroring screens.....but 1 of my daughters working on a "word" doc on her screen with her keyboard and mouse......and the other daughter surfing the web on her screen with her keyboard and mouse.  Also...if this setup is possible....is there a certain mini that I need to be running or a certain IOS?
    If not mac mini.....is there another solution/workaround that would allow for this setup?  Trying to utilize my 2 screens as best as possible with keeping my hardware to a minimum!!  Thanks for the feedback.

    No, there is no way to set it up with two different interface (keyboard & mouse) setups.
    Unfortunately, it sounds like your about to become a two or three computer family.

  • Working Flex 2-14 with external monitor an keyboard with closed lid

    Hi everybody, at home I have an USB-3-Hub for my Flex 2-14 where LAN, external Monitor, external Keyboard, Mouse, Sound, BlueRay and so on is plugged in. So the main time I use the Flex 2-14 at my Desk at Home with this usb-hub like a docking station.  The main difference to a real docking station is, that I have to open the lid everytime to push the power button. When running, I configured Windows 8.1 in the way, that I can close the lid without consequences, but I search for a way to turn in on without opening the lid before. Also wake on Keyboard or even wake on mouse could be an alternative, but I also didn't find a way to aktivate that (neither in the bios, nor in Windows 8.1). An other alternative may be to turn it on because of opening the lid (because in Windows there ist is possibility to shut it down when closing it, so truning it on and off without pressing any button may be another possibility, but I also didnt find a soultion for that. Somebody out there who can help me? Thnx! 

    Update:
    It seems that the latest version of OS-XLion (10.7.2) now prevents the use of portable computers (such as my MacBookpro) in a vertical docking station such as the Henge Docks unit I have beenusing for the past few months.
    To operate the MBP in ‘clamshell mode’ nowrequires the external monitor, wired keyboard, and mouse to be connected before the computer is closed,otherwise it will not recognize the external monitor etc.:
    (http://support.apple.com/kb/ht3131)
    This means that it cannot be closed theninserted into the dock, then be expected to work with an external display…
    I contacted Apple support about this, the person I spoke with seemedknowledgeable enough and agreed that apparently the only way around this wouldbe to reverse the OS updates, which I do not want to do either. They suggestedI send feedback via the Apple website, which I have done.
    Any other Henge Docks users out there experiencing the same issue?

  • Syslinux with additional monitor and keyboard?

    Hi,
    is it possible to use an additional monitor (and keyboard) with syslinux?
    I have a Lenovo T500 laptop with a docking station attached to a second monitor and keyboard which are recognized after starting arch. As I'm using disk encryption, I have to type in the password under syslinux and it would be very nice if I could do it using the external keyboard and monitor.
    Best regards

    WonderWoofy wrote:My machine allows me to set the default monitor in the bios.  I have a Thinkpad Edge E430.  I can choose between the laptop lcd, the HDMI, or the VGA.
    Thanks for the answer. Unfortunately, this did not work for me.
    Strangely, the external keyboard is working in the syslinux menu, but not after that when I have to type in the pass-phrase. Maybe it has something to do with my syslinux.cfg?
    DEFAULT arch
    PROMPT 0
    UI menu.c32
    LABEL arch
    MENU LABEL Arch Linux
    LINUX ../vmlinuz-linux
    APPEND cryptdevice=/dev/sda2:main root=/dev/mapper/main-root ro locale=de_DE.UTF-8
    INITRD ../initramfs-linux.img
    LABEL reboot
    MENU LABEL Reboot
    COM32 reboot.c32
    LABEL off
    MENU LABEL Power Off
    COMBOOT poweroff.com
    My mkinitcpio-hooks are
    HOOKS="base udev autodetect block usbinput keymap encrypt lvm2 filesystems keyboard fsck shutdown"

  • How to connect Mac Mini with LG 19LS4D LCD TV?

    Hi all,
    I just purchased my Mac Mini and tried connecting to my LG 19" HD TV using the supplied DVI to VGA adapter. When I first booted the machine "No signal" was displayed on my TV. I plugged in another 15" monitor and played around with resolutions and cable swapping and it works at 1024 x 768 at 60Hz (not ideal but better than nothing). Everytime I turn off the Mac Mini or it goes to sleep the resolution is reset and "No signal" appears again.
    I have tried connecting via VNC to play around with the settings remotely but this has no effect on my TV monitor and is only resolved by the solution above or by leaving my Mac awake and not sleeping.
    The documentation for the TV says that all the resolutions I have tried, and more are supported and Detect Displays under System Preferences shows these but defaults to a resolution that produces a "No signal" box.
    Any ideas would be greatly welcomed.
    Thanks in advance

    Hi BSteely,
    Thanks for the reply. To answer your questions, the LG shows on the mini as it should do i.e. there is a specific code (the LG model number) and lists the resolutions and refresh rates listed in the manual. Adobe Photoshop complains of a bad colour profile but I think that was only because when the LG is finally lit up it is as a result of me connecting the 15" monitor then hot swapping before OS X has change to realise.
    When using VNC with the LG attached 1024 x 768 at 60Hz is shown but selecting that does not show the screen on the LG.
    I did install SwitchResX from looking at other forums but was unable to save a usable state as the profile and resolutions were from a different monitor effectively despite my LG being connected. The P&D file that it gave back is listed in full below although I suspect this is for my 15"monitor (Excuse the length but I am unsure as to which bits are most useful).
    The LG manual lists 1440 x 900 at 60Hz as the native default however the mini fails to recognise this. The easiest resolution I can get after hot swapping monitors is 1024 x 768 at 60Hz although the other day (not sure how) I did get 1280 x 1024 (at 60Hz?). The LG does not however have a DVI port. It does have HDMI so a DVI to HDMI cable could work but without buying a cable I don't know.
    Here is the LG's information file:
    DDC block report generated by SwitchResX version 3.8.4 for display
    VGA/SVGA Display
    ------------------- RAW DATA ------------------------
    0 1 2 3 4 5 6 7 8 9 A B C D E F
    0 | 00 FF FF FF FF FF FF 00 09 AD 38 02 BD E7 00 00
    1 | 30 0B 01 01 08 1E 18 64 E8 17 26 A0 61 58 9A 2E
    2 | 27 54 39 AD CE 00 01 01 01 01 01 01 01 01 01 01
    3 | 01 01 01 01 01 01 C3 1E 00 20 41 00 20 30 10 60
    4 | 13 00 1E 16 00 00 00 1E 64 19 00 40 41 00 26 30
    5 | 18 88 36 00 1E 16 00 00 00 18 00 00 00 FD 00 3C
    6 | 4B 1F 3C 08 00 0A 20 20 20 20 20 20 00 00 00 FE
    7 | 00 46 58 57 4A 31 42 30 32 35 39 33 32 35 00 66
    < 00FFFFFF FFFFFF00 09AD3802 BDE70000 300B0101 081E1864 E81726A0 61589A2E 275439AD CE000101 01010101 01010101 01010101 0101C31E 00204100 20301060 13001E16 0000001E 64190040 41002630 18883600 1E160000 00180000 00FD003C 4B1F3C08 000A2020 20202020 000000FE 00465857 4A314230 32353933 32350066 >
    Valid EDID block: checksum passed
    ------------------- MAIN EDID BLOCK -----------------
    EDID Version........1.1
    Manufacturer........BMM
    Product Code........14338 (3802) (0238)
    Serial Number.......0000E7BD
    Manufactured........Week 48 of year 2001
    Max H Size..........30 cm
    Max V Size..........24 cm
    Gamma...............2.00
    Display Supported Features:
    Power Management: Active off Power Management: Suspend Power Management: Standby
    Display type:
    RGB color display
    Display is non continuous frequency
    Default color space is not sRGB standard
    Input signal & sync:
    Analog input with: 0.700V / 0.300V
    Composite Sync
    Color info:
    Red x = 0.625 Green x = 0.345 Blue x = 0.180 White x = 0.329
    Red y = 0.380 Green y = 0.604 Blue y = 0.154 White y = 0.225
    Established Timings:
    720 x 400 @ 70Hz
    640 x 480 @ 60Hz
    640 x 480 @ 72Hz
    640 x 480 @ 75Hz
    800 x 600 @ 60Hz
    800 x 600 @ 72Hz
    800 x 600 @ 75Hz
    1024 x 768 @ 60Hz
    1024 x 768 @ 70Hz
    1024 x 768 @ 75Hz
    Manufacturer Reserved Timings:
    Standard Timing Identification:
    Monitor Description blocks:
    Descriptor #0 is Timing definition:
    Mode = 1024 x 768 @ 75.029Hz
    Pixel Clock............. 78.75 MHz Non-Interlaced
    Horizontal Vertical
    Active.................. 1024 pixels 768 lines
    Front Porch............. 16 pixels 1 lines
    Sync Width.............. 96 pixels 3 lines
    Back Porch.............. 176 pixels 28 lines
    Blanking................ 288 pixels 32 lines
    Total................... 1312 pixels 800 lines
    Scan Rate............... 60.023 kHz 75.029 Hz
    Image Size.............. 30 mm 22 mm
    Border.................. 0 pixels 0 lines
    Sync: Digital separate with
    * Positive vertical polarity
    * Positive horizontal polarity
    Descriptor #1 is Timing definition:
    Mode = 1024 x 768 @ 60.004Hz
    Pixel Clock............. 65.00 MHz Non-Interlaced
    Horizontal Vertical
    Active.................. 1024 pixels 768 lines
    Front Porch............. 24 pixels 3 lines
    Sync Width.............. 136 pixels 6 lines
    Back Porch.............. 160 pixels 29 lines
    Blanking................ 320 pixels 38 lines
    Total................... 1344 pixels 806 lines
    Scan Rate............... 48.363 kHz 60.004 Hz
    Image Size.............. 30 mm 22 mm
    Border.................. 0 pixels 0 lines
    Sync: Digital separate with
    * Negative vertical polarity
    * Negative horizontal polarity
    Descriptor #2 is Monitor limits:
    Horizontal frequency range.......31-60 kHz
    Vertical frequency range.........60-75 Hz
    Maximum bandwidth unspecified
    Descriptor #3 is ASCII data:
    FXWJ1B0259325

  • Mac mini with dual monitors

    I'm getting ready to purchase a new Mac mini, but I'm confused as to how I would connect my 2 LG L204WT Monitors with DVI connections. Anyone care to explain?

    Through some kind of random clicking of things and hitting [revert] I was able to get both to rotate finally to 90'.  Wack.  It's definitely some issue with the HDMI port failing to refresh. 
    As long as I don't reboot, I think I have a workaround for now.
    For the record - system specs:
    Mac Mini, Mid 2011
    Processor 2.3 GHz Intel Core i5
    Memory 8 GB 1333 MHz DDR3
    Graphitcs Intel HD Graphics 3000 512 MB
    Software Mac OSX Lion 10.7.1 (11B2118)
    (apparently I should have got the 2.5GHz model which has AMD discrete GPU)

Maybe you are looking for

  • There Is An Error On The Bois Update V1.9

    hi all i have a pentium 4 { (2.4) (FSB 533 )} processor on a ( 875P NEO FIS2R) motherboard with 512MB of RAM (DDR 333) ( kingston ) in my computer . newly i have an experience in flashing my BIOS ( VER 1.2 ) to (VER 1.9) then evrtings was running goo

  • Tags in Photoshop Elements 11

    I just converted to Photoshop Elements 11 and have all my picture file organized using Tags, which has worked very well in previous version of PE. Everything converted OK but the way PE11 uses Tags is quite confusing. First, Tags are shown on the rig

  • Compilation time - LabVIEW FPGA project

    I am trying to compile a LabVIEW FPGA project over NI PXIe-1071 chassis. My problem briefly lies in the compilation time which last hours while only takes approximately 20 minutes on another chassis I am having with exactly the same specifications. I

  • Error when we run gpupdate /force

    We have the following GPO setting being applied to our XP workstations. User Config \ policies \ admin templates \ windows components \ internet explorer \ internet control panel \ security page \ Site to Zone Assignment List Then in this list we hav

  • Error installing Oracle 11gR2 on OEL 5.2

    Hi, I get an error where all the pre-requisite checks fail and get the error: PRVF-7531 Physcial memory check cannot be perfomed on node "oradbsrv1" I have 2GB of RAM and can't seem to find a solution to this problem on doing a google search.. Does a