Question about scratching the HD when carrying the Macbook

I know back in the day with old computers you used to have to halt the hard drive before transporting or moving it so the head doesn't scratch the platter if it's jolted. Is that still a danger with the current laptop HD's, more specifically, the MacBook? When you close the lid and it goes to sleep, does the HD halt and retract the actuator/head preventing any possible damage to the platters while in transit, or do you have to shutdown the computer for this to happen? Or is this just something that an old computer nerd doesn't need to worry about with newer HD's and laptops?

with a Mac laptop in Sleep mode the drive is the same as being in Shut Down mode. The heads are parked.
With the Mac's Sudden Motion Sensor technology the drives are fairly well protected even if they are running and you are carrying them. The SMS will sense any abrupt acceleration deviation and park the heads quickly.
I used to keep an old 'non-SMS tech' laptop on my car seat, running all day long, driving gravel roads and never had any trouble in three years time. They are more robust than you might think. However, a high G shock is not going to do any drive any good.

Similar Messages

  • I have a question about extracting pages.  When I do the function, adobe saves the individual files as " file name space page number ", so the files look like this "filename 1.pdf", "filename 2.pdf", "filename 3.pdf".  Without too many gory details, I a

    I have a question about extracting pages.  When I do the function, adobe saves the individual files as "<file name><space><page number>", so the files look like this "filename 1.pdf", "filename 2.pdf", "filename 3.pdf".  Without too many gory details, I am using excel to concatenate some data to dynamically build a hyperlink to these extraced files.  It casues me problems, however, for the space to be the the file name.  Is there any way to change the default behavoir of this function to perhaps use a dash or underscore instead of a space?

    No, you can't change the default naming scheme. You can do it yourself if you extract the pages using a script instead of using the built-in command.

  • When trying to download an APP, it's requesting answers to 3 security questions and it hangs up the iPad when clicking the drop down for the questions...any ideas?

    When trying to download an APP, it's requesting setup for answers to 3 security questions and it hangs up the iPad when clicking the drop down for the questions...any ideas?

    Had to do a hard reboot on the iPad and we were able to get the questions to pop up. Now it's just slow downloading the apps.

  • HT2443 loops are in the browser when you the loop message reads this file type is not supported

    loops are in the browser when you the loop message reads this file type is not supported

    gloucester
    In case you did not find it, the following is a copy/paste of the Announcement on Premiere Elements 19/NVIDIA GeForce
    that appears at the top of this forum.
    Premiere Elements 10 NVIDIA Video Card Driver Roll Back
    If you are a Premiere Elements 10 user whose Windows computer uses a NVIDIA GeForce video card and you are experiencing
    Premiere Elements 10 display and/or unexplained program behavior, then your first line of troubleshooting needs to be rolling
    back the video card driver version instead of assuring that it is up to date.
    Since October 2013 to the present, there have been a growing number of reports about display and unexplained workflow
    glitches specific to the Premiere Elements 10 user whose Windows computer has a NVIDIA GeForce video card. If this applies
    to you, then the “user to user” remedy is to roll back the NVIDIA GeForce video card driver as far as is necessary to get rid of
    the problems. The typical driver roll back has gone back as far as March – July 2013 in order to get a working Premiere
    Elements 10. Neither NVIDIA nor Adobe has taken any corrective action in this regard to date, and none is expected moving forward.
    Since October 2013, the following thread has tried to keep up with the Premiere Elements 10 NVIDIA reports
    http://forums.adobe.com/thread/1317675
    Older NVIDIA GeForce drivers can be found
    http://www.nvidia.com/Download/Find.aspx?lang=en-us
    A February 2014 overview of the situation as well as how to use the older NVIDIA GeForce drivers for the driver roll back can be found
    http://atr935.blogspot.com/2014/02/pe10-nvidia-video-card-roll-back.html
    ATR

  • I lose the connection when closing the CMD

    Hi guys,
    I have configured a standalone listener as following:
    C:\Program Files (x86)\Java\jre6\bin> java -Dapex.home=D:\list -Dapex.images=C:\images -jar D:\apex.war
    Afterward,
    If I close the CMD, I will lose the connection, and I have to reconfigure it again.
    If I open APEX locally , I mean by using the shortcut "Get Started With Oracle Database 11g Express Edition" , Then I will lose the connection that uses the default port of the listener, that is 8080.
    After I configured the listener I got this message on the CMD
    -- listing properties --
    PropertyCheckInterval=60
    ValidateConnection=true
    MinLimit=1
    MaxLimit=10
    InitialLimit=3
    AbandonedConnectionTimeout=900
    MaxStatementsLimit=10
    InactivityTimeout=1800
    MaxConnectionReuseCount=1000
    APEX Listener version : 1.1.2.131.15.23
    APEX Listener server info: Grizzly/1.9.18-o
    May 21, 2011 5:14:41 PM com.sun.grizzly.Controller logVersion
    INFO: Starting Grizzly Framework 1.9.18-o - Sat May 21 17:14:41 GST 2011
    INFO: http://localhost:8080/apex started.
    Using JDBC driver: Oracle JDBC driver version: 11.2.0.2.0
    Regards,

    Hi,
    I'm not sure I got your question right, but I'll try to find some solution anyway.
    If I close the CMD, I will lose the connection, and I have to reconfigure it again.That's what happens when a shell is terminated - all associated processes will stop as well. However, if you have a apex-config.xml in your apex.home you shouldn't need to configure your APEX Listener each time your start it, but it would reuse an existing configuration.
    If I open APEX locally , I mean by using the shortcut "Get Started With Oracle Database 11g Express Edition" , Then I will lose the connection that uses the default port of the listener, that is 8080.Now, if you have XE running on the same (local) machine as you have your APEX Listener running in standalone mode, you probably have a port conflict: By default, both APEX Listener in standalone mode and the Embedded PL/SQL Gateway (EPG) use port 8080. The EPG is activated as web server for APEX in XE after a fresh installation, the APEX Listener would be an alternative in that case. You can either stop the EPG, or reconfigure any of the two web servers to use a different port, if you want to run them parallel.
    To change the port used by the APEX Listener in standalone mode, you simply add another parameter to the startup: -Dapex.port=8888 and you're done.
    To change the port used by the EPG, connect as sys and run the following
    EXEC DBMS_XDB.SETHTTPPORT(8888);
    COMMIT;If you want to disable the EPG, simply set the port to *0* .
    After I configured the listener I got this message on the CMDThat's what it should look like.
    No, since your topic is "lose the connection when closing the CMD", I assume you search for an alternative. You could run the APEX Listener as a Windows service, even in standalone mode. To do this, you create a batch file, e.g.
    %JAVA_HOME%\java -Dapex.home=D:\oracle\APEX_Listener\_home -Dapex.images=D:\oracle\apex_4_0_2\images -Dapex.port=8888 -jar D:\oracle\APEX_Listener\apex_listener.1.1.2.131.15.23\apex.war >>D:\oracle\APEX_Listener\apex_listener.1.1.2.131.15.23\my_apex_listener.log 2>&1Note that you have to set JAVA_HOME as system property or replace the call with the absolute path to your JDK or make sure the JDK is in your PATH variable.
    Of course, you can and should change the other directories as well to fit to your system.
    Next, create a Windows service, e.g. using [url https://iain.cx/src/nssm/]NSSM (free) or [url http://support.microsoft.com/kb/137890]SRVANY (MS, non-free), that starts your batch as a windows service.
    The command for creating that service using NSSM could look as follows
    nssm install APEX_Listener D:\oracle\APEX_Listener\apex_listener.1.1.2.131.15.23\startup.cmdYou can edit the service properties afterwards, e.g. change the start mode from "Automatic" to "On Demand".
    I hope this answers your question. If not, please point me into the right direction.
    Thanks,
    Udo

  • Phone hog links give me error message "an error occuredon the server when processing the URL

    When ever I click on the links sent from phone hog.com to earn free minutes I get the following error message. "An error occurred on the server when processing the URL. Please contact the system administrator" I have made several contacts with phone hog help and they claim it is my settings on my computer. However I contacted my internet provider TDS telecom and they indicated that this is a phone hog issue. I do not have any other problems with any other links I click on with this type of error message.

    Hello msFit,
    it's well known, that in all these cases you describe I'm not a friend of a detailed troubleshooting. To be able to be independent in all this things It is one of the reasons why I prefer an external FTP program. The difficulties with which you have to fight encourage me in this opinion, not least because we always search for experts, we don't charge a "jack of all trades".
    To manage several websites or to upload my files and sometimes for the opposite way, for a necessary download from my server or to use a "a site-wide synch", I'm using FileZilla. It simply looks easier for me to keep track of all operations precisely and generate or reflect easily the desired tree structure.
    Above all, FileZilla has a feature (translation from my German FileZilla) called "compare file list". Here it's possible to use file size or modification time as a criterion. There is also the possibility to "hide identical files", so that only these files which you want to redact remain visible.
    And even if it means you have to install a new program, I am convinced that there is an advantage. Here is the link to get it and where you can read informations about how it works:
    http://filezilla-project.org/ and http://wiki.filezilla-project.org/Tutorial#Using_the_site_manager
    Mac: Mac OS X (Use: Show additional download options)
    http://filezilla-project.org/download.php
    Of course, you also need all the access data to reach your server and for MIME issues, you should contact your web host/provider.
    Good luck!
    Hans-Günter
    P.S.
    Since I use two screens, the whole thing became even more comfortable.

  • Can anyone tell me how to remove the owner when setting the location

    Hello,
    Can anyone tell me how to remove the owner when setting the location?
    Properties
       Table Name:  (Table Name)
       Table Type:   Tables
       Owner:           Public
       Overridden Qualified Table Name:  (Table Name - same as above)
    Any help would be appreciated.
    Thanks
    Ann

    Hi Ann,
    please check this document to determine the correct space for your question:
    Find Topic Spaces on SCN (Forums)
    If you need help moving it, let me know!
    Thanks,
    Kristen

  • Error 1064 An exception occurred in the service when handling the control

    Hi all,
    I downloaded Oracle Business Intelligence 10.1.3.4.1 on windows XP successfully, once I try to start any service of Oracle BI [scheduler/server]. This error is shown *1064 An exception occurred in the service when handling the control request*.
    Could anyone help me out?
    Thanks in advance
    Maitha

    I checked the file
    [68008] Scheduler Error: [nQSError: 67042] The Scheduler Configuration is incorrect.
    [nQSError: 67004] Registry value for SchedulerScriptPath not set.
    How the issue can be resolved ?

  • I would appreciate your help on how to configure a gmail in a way  it  ask  for the password  everytime I connect?. In the only way I can configure it  I have to include the pw when configuring the account  and  after that  it do not ask for pw

    I would appreciate your help on how to configure a gmail in a way  it  ask  for the password  everytime I connect?. In the only way I can configure it  I have to include the pw when configuring the account  and  after that  it do not ask for pw  so  everyone that shares my iPad can  oppen my mail  with  no pw  required.
    Thank

    The iPad is designed to be a single user device, and there is currently no way to password protect the Mail app - even removing the account password from Settings > Mail, Contacts, Calendars will just prevent new mail being downloaded, it won't hide those that have already been downloaded. There is this work-around for the app : https://discussions.apple.com/message/13127632#13127632 . Also there might be third-party email apps that feature password protecting.

  • How do I change the speed of the cursor when using the arrow keys?

    How do I change the speed of the cursor when using the arrow keys?

    Applications folder or Apple icon > System preferences > Keyboard increase key repeat.

  • If i dont use the display when using the GPS and only listen to the voice instructions can that also makes the iphone overheat even if you dont use the display

    because when i use the gps app in my iphone 4s in the car my iphone gets overheat so
    if i dont use the display when using the GPS and only listen to the voice instructions can that also makes the iphone overheat even if you dont use the display
    will that help?

    When you use your GPS does your iPhone get hot enough to shutdown?  The reason I ask is that I have run my GPS app with the screen brightness set to near max connected to power for hours.  My iPhone got hot, but didn't shutdown.

  • How can I customize the toolbar when using the attribute browser

    In CVI 2012, the toolbar changes depending on the environment, e.g. it is different for the source window and the UI editor. The toolbar can be customized using the menu Options / Toolbar...
    Unfortunately, when using the attribute browser of the UI editor, another toolbar is displayed, i.e. not the UI editor toolbar.... I would have assumed that the attribute browser belongs to the UI editor, obviously it doesn't... So how can I customize the toolbar when using the attribute browser?
    Solved!
    Go to Solution.

    Luis,
    It's nice to have you back 
    Thank you for the clarification, so I'll elaborate a bit more: In the regular workspace toolbar, I have a disk symbol to save the file. This symbol is gone in the attribute browser...
    So I have three different toolbars, for source code (workspace), UI editor, and the UI editor displayed but the attribute browser clicked on (selected)... 
    Thanks
    Wolfgang
    Source code:
    UI editor:
    Attribute browser:

  • HT201303 hi just got my new apple ipod touch i need to update my security information other wise it wont let me download apps it says to enter three questions about myself and i get to the third question and it wont let me enter the third question

    hi just got my new apple ipod touch and to download apps it wants to add questions about myself for more sercurity information. i get up to question 3 and it wont let me select a question but it will let me write an answer so i just pressed done and then it says i cant carry on because ive mised out information when it wont let me do a question!

    Welcome to the Apple community.
    You might try to see if you can change your security questions. Start here, change your country if necessary and go to manage your account > Password and Security.
    I'm able to do this, others say they need to input answers to their current security questions in order to make changes, I'm inclined to think its worth a try, you don't have anything to lose.
    If that doesn't help you might try contacting Apple through Express Lane (select your country, navigate to iCloud help and enter the serial number of one of your devices)

  • I will be traveling to Rome and Paris.  I'm concerned about frying my IPad when charging the battery.  Will I need a converter/adapter to charge the battery or do I just need an adapter.

    I will be traveling to Rome and Paris and I'm concerned about frying my iPad when charging.  Will I need a converter/adapter when charging or will I just use an adapter?

    what RBRY says. Look at the fine print on your power brick. It says 100v-240v. This means it can handle world wattage.....both the us 110 and the UK/and other places 220. Anything that displays that range works anywhere in the world with the right plug adapter.
    You can get plug adapters at walgreens, walmart, target, kmart, best buy, office max, office depot.....almost any major retailer. Look in the travel/luggage area.
    Do some googling and find out what Italian plugs look like or you can simply find a kit that is a 'world wide' kit.

  • Question about Bluetooth & Headphones to avoid damaging the miniport!?

    Well, I finally experienced the same thing a lot of others have already ... the left side audio failed completely on my Touch, so I had to go return it and have it replaced. Luckily, the folks at Best Buy were nice enough to just swap it out and give me a new one, even though I was outside of my 30-day return policy. I have a service plan there, but I didn't want to go without my Touch while they replaced it elsewhere and sent me a refurbished device which probably wouldn't be in the same condition I keep my own in (immaculate -- 40+ days I've used it for 3+ hours a day, and there is hardly a scratch on the stainless steel, and the screen is flawless ... or was).
    So now I have a new Touch, but I want to prevent this from happening again. Personally, I think the mini-port on the Touch, while it doesn't have the same problem as those of the iPhones, it has a design problem as well. But I don't want this thread to end up being a discussion of whether there is a design issue or not, but rather I need some help to find an accessory to fit my specific needs.
    What I am looking for is either, a website actually selling [this product|http://www.engadget.com/2006/11/28/princeton-technologys-bluetooth-head phone-adapter/|Visit www.podtropolis.com today!] to customers in the U.S. ... or a product nearly like it.
    I don't even need the iPod-Bluetooth transmitter, as those are VERY common. What I need is the other part, the receiver with a miniport Audio-Out (headphone jack). I don't even need the capabilities of the remote. Especially since this particular device may not even WORK with the iPod Touch. I'm hoping the audio-out features would, but I could care less if the remote-control did.
    Basically, I'm reaching out in desperation with a severe headache from too many google searches with little to show for it ... I need help finding a Bluetooth headphone Audio-Out receiver.
    And before you ask why I don't just buy a pair of bluetooth headphones, my reason is this ... bluetooth headphones can't be used wired when the battery dies, or to save battery when there's little chance you're going to drop the iPod and bend the miniport connection inside. With this, I can use the headphones I already have, I like, and still easily have the capability of switching to wired if I NEED to.
    This is the only way I can think of to truly prevent the overuse of the Touch's mini-port and the wear & tear that comes from it.
    Please, if you have any suggestions, please provide at least a semi-accurate device name and manufacturer, or, preferably, a link to a site in English with an online store!
    Thanks!

    Chris CA wrote:
    This device -> G-Lite BH-Q395T Bluetooth Stereo Sport Clip-On with 3.5mm Adapter is similar to the one you linked to.
    It has a BT transmitter which plugs into the iPod and a BT receiver which you plug standard headphones into.
    AAAAAAAAAAAAAAAAAAAAAA!
    Chris ... sometimes I wonder how I could LIVE WITHOUT YOU! You're an iPod GOD!
    You pointed me in the right direction ... I found it sold at Beach Audio, with JUST the receiver, so now I can buy my preferred iPod BT transmitter as well! Plus this device is useful for other things:
    Specifications:
    -- Wirelessly stream music from a cellular phone or Bluetooth enabled iPod or MP3 player
    -- Listen to music on a cellular phone through A2DP protocol
    -- Sporty clip-on design for ultra-lightweight design and ultimate portability
    -- Features echo elimination and noise suppression
    -- Supports AVRCP, A2DP, VoIP and Skype"

Maybe you are looking for

  • How do I create a playlist in music?

    How do I create a playlist in music?

  • HT5312 Changing Apple ID email

    Hey. I no longer use the email acount I put on Apple ID and Primary Email Address. I want to replace it to the one I put as rescue email, but the site won't allow me. How can I change it?

  • Thin line at top of HD channels

    When watching a number of HD channels, there is a very thin line above the picture box.  The line looks like it is the bottom of the picture that was accidentally projected ontot he top of the picture. I reset the reciever a few times and it goes awa

  • Internal Order report on User Responsible field

    Hi Gurus, Is it possible to report internal orders on "User Resposible" field (this field appears in internal order master data) with standard reports? I couldn't find a way to add this field as a select criteria. Thanks very much in advance. Catheri

  • Extract field error

    I have the following select to extract a date containing month and year from a varchar2 column select to_char(sau_date,'MM') MONTH,extract(year from sau_date) YEAR, count(*) COUNT from mac.sysaud group by to_char(sau_date,'MM'),extract(year from sau_