[Solved] Localtime is messed up, and pacman doesn't work anymore

Hi everyone,
I'm quite new to Arch Linux but I've succeded so far in installing the base system, setting up my wifi card (wasn't easy) and installing xfce4. When I first installed everything seemed to work fine (wifi, dropbox, pacman, etc.) but I noticed that my time doesn't reflect the current local time. I've selected America/Montreal in rc.conf and through "Orage Globaltime" in xfce4 but both return the UTC instead of the localtime. Also, when I try to get the UTC from Orage, it returns my localtime instead (Montreal)...
So there's definitely something wrong there. I've then had a look at the forums/wiki and found that a network synchronisation should be used to correct the issue (such as ntp) but now pacman can't connect to anything. It returns something like this when I try to install/update/search:
$ sudo pacman -Syu
Password:
:: Synchronizing package databases...
error: failed retrieving file 'core.db' from mirror.us.leaseweb.net : Connection time-out
^C (keeps on getting time-outs if I don't interrupt)
Some info on my system:
General info: as stated above, internet over wifi (wlan0) works, pacman times-out and the local time is off.
$ uname -a
Linux giga-arch 3.5.3-1-ARCH #1 SMP PREEMPT Sun Aug 26 08:15:06 UTC 2012 i686 GNU/Linux ---(today's Sept 3, ~10:35am)---
$ cat rc.conf
DAEMONS=(syslog-ng network crond)
TIMEZONE="America/Montreal"
$ ip addr
3: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
    link/ether 84:c9:b2:00:41:e3 brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.179/24 brd 192.168.0.255 scope global wlan0
    inet6 fe80::86c9:b2ff:fe00:41e3/64 scope link
        valid_lft forever preferred_lft forever
$ cat /var/log/pacman.log
[2012-09-02 16:31] starting full system upgrade
[2012-09-02 18:16] Running 'pacman -S ntop'
[2012-09-02 18:17] installed rrdtool (1.4.7-2)
[2012-09-02 18:17] installed geoip-database (20120808-1)
[2012-09-02 18:17] installed geoip (1.4.8-2)
[2012-09-02 18:17] ==> Before running the daemon script for the first time, you need to run
[2012-09-02 18:17]     ntop as the root user to set an administrator password.
[2012-09-02 18:17] ==> If you attempt to run ntop as a daemon without setting a password, a
[2012-09-02 18:17]     FATAL ERROR message is generated and ntop stops.
[2012-09-02 18:17] installed ntop (5.0-2)               <------------ At this point pacman worked, but the time wasn't right (it was ~22:17)
[2012-09-03 04:43] Running 'pacman -Syu ntp'      <------------ From this point on pacman would time-out continually
[2012-09-03 04:43] synchronizing package lists
[2012-09-03 04:45] Running 'pacman -S ntp'
[2012-09-03 04:51] Running 'pacman -Syu'
[2012-09-03 04:51] synchronizing package lists
[2012-09-03 04:51] Running 'pacman -Syu'
[2012-09-03 04:51] synchronizing package lists
[2012-09-03 06:00] Running 'pacman -Syu'
[2012-09-03 06:00] synchronizing package lists
[2012-09-03 06:30] Running 'pacman -Syu'
[2012-09-03 06:30] synchronizing package lists
$ ls -lhA /etc | grep localtime
lrwxrwxrwx 1 root root   36 Sep  3 04:34 localtime -> /usr/share/zoneinfo/America/Montreal
My first guess was that the localtime offset was preventing me from accessing pacman's repositories, but since it worked yesterday (when the time was already corrupt) it seems otherwize. Now I'm quite lost, especially since no one seems to report every pacman repository being down... could anyone please help me solve this problem?
Thanks!
Last edited by miek (2012-09-03 20:28:44)

WonderWoofy wrote:I think you may find relevant information here.  I ahve seem many of these threads in the forums lately.  Are you dual booting w/ another operating system... in particular, one that uses localtime for the hardware clock (and there is only one that does this).
Thanks I'll look at that entry. Still I'd like to point out that this page clearly says that the timezone is to be set in rc.conf, which is a bit confusing. I must've followed this guide to get to my current configuration. I am dual booting with multiple other systems (xubuntu, win7, puppy, crunchbang) so from what I've read win7 might be the problem, but I haven't started it since i installed arch and my time has been off from the start.
Should I simply use NTP now that pacman is working again?
Thanks
Last edited by miek (2012-09-03 17:41:56)

Similar Messages

  • Merge 2 code and script doesn't work anymore

    I have 2 AS2 codes (I think). One is a carousel gallery script that lets pictures flying in a circle. And the second code is the one that let words fly, downloaden from http://www.levitated.net/daily/levTextSpace.html.
    The scripts work seperatly, but once i merge the codes together the levTextSpace doesn't work anymore. And I can't find where the problem is. Fla file is included.
    Carousel gallery:
    picData = new XML();
    picData.ignoreWhite = true;
    picData.onLoad = loadXML;
    picData.load("md_photos.xml");
    function loadXML() {
         _root.createEmptyMovieClip("thumbnails", 1);
         images = new Array();
         for (i=0; picData.firstChild.childNodes[i].firstChild.nodeValue != undefined; i++) {
              images.push(picData.firstChild.childNodes[i].firstChild.nodeValue);
         thumbnails._x = 750;
         thumbnails._y = 75;
         imageLoading = true;
         numObjects = images.length;
         objectsInScene = new Array();
         focalLength = 750;
         spin = 0;
         _root.thumbnailSize = 350/((numObjects)/9);
         displayPane = function () {
              var angle = this.angle+spin;
              var x = Math.cos(angle)*this.radius;
              var z = Math.sin(angle)*this.radius;
              var y = this.y;
              var scaleRatio = focalLength/(focalLength+z);
              this._x = x*scaleRatio;
              this._y = y*scaleRatio;
              this._xscale = -(this._yscale=100*scaleRatio);
              this._xscale *= Math.sin(angle);
              this.swapDepths(Math.round(-z));
         angleStep = 2*Math.PI/numObjects;
         for (i=0; i<numObjects; i++) {
              thumbnail = thumbnails.createEmptyMovieClip("thumbnail_"+i, i);
              myPic = thumbnail.createEmptyMovieClip("picHolder", 1);
              myPic.loadMovie(images[i]);
              thumbnail.angle = angleStep*i;
              thumbnail.radius = 650;
              thumbnail.x = Math.cos(thumbnail.angle)*thumbnail.radius;
              thumbnail.z = Math.sin(thumbnail.angle)*thumbnail.radius;
              thumbnail.y = 0;
              thumbnail.display = displayPane;
              thumbnail.drawBox(_root.thumbnailSize);
              thumbnail.buttonize(i);
              thumbnail.notLoaded = true;
              objectsInScene.push(thumbnail);
         panCamera = function () {
              spin -= 0.001;
              for (var i = 0; i<objectsInScene.length; i++) {
                   objectsInScene[i].display();
         thumbnails.onEnterFrame = panCamera;
         _root.onEnterFrame = function() {
              for (i=0; i<images.length; i++) {
                   if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal() == 1) && _root.thumbnails["thumbnail_"+i].notLoaded) {
                        if (_root.thumbnails["thumbnail_"+i].picHolder._width>=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                             _root.thumbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                             _root.thumbnails["thumbnail_"+i].picHolder._y = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._height)/2;
                        if (_root.thumbnails["thumbnail_"+i].picHolder._width<=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                             _root.thumbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._height-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._height)));
                             _root.thumbnails["thumbnail_"+i].picHolder._x = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._width)/2;
                        if (_root.thumbnails["thumbnail_"+i].picHolder._width == _root.thumbnails["thumbnail_"+i].picHolder._height) {
                             _root.thumbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                             _root.thumbnails["thumbnail_"+i].picHolder._x = _root.thumbnails["thumbnail_"+i].picHolder._y=0;
                        _root.thumbnails["thumbnail_"+i].picHolder._alpha = 80;
                        _root.thumbnails["thumbnail_"+i].notLoaded = false;
                   if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal()<1)) {
    levTextSpace:
    // register root as environment
    Object.environment = _root;
    // create camera object
    this.cam = {x:0, y:0, z:500, dx:0, dy:0, dz:-500};
    // set environmental constants
    this.fl = 1000;
    // create 'space' to which all words will be attached
    this.createEmptyMovieClip("space", 2);
    // center 'space' on the stage
    space._x = 800;
    space._y = 900;
    // a string of words related to the wind
    this.keywords = "no-nonsense  full-service partner  co-creation  innovation  keep it simple  technical expertise  integral design method  successful products  teamwork  designers engineers  design for (dis)assembly  sustainability  ecological  smart  ideation  feasability study  ergonomic analysis  imagineering  trade off matrix  prototyping  consultancy  technology  problemsolvers  open-minded  multi-disciplinary  imagination  creative minds  passionated  user centered  strategy  added value";
    // convert the string of words into an array of words
    this.wordList = new Array();
    this.wordList = this.keywords.split("  ");
    // create one instance for each word in the list
    for (n=0; n<this.wordList.length; n++) {
        // pick a word from the list
        var word = Object.environment.wordList[n];
        var x = random(600)-(300);
        var y = random(400)-(200);
        var z = random(Object.environment.fl*2)-Object.environment.fl;
        // create an instance of the keyWord object
        nombre = "word"+String(depth++);
        initialization = {txtword: word, x: x, y: y, z: z};
        space.attachMovie("keyWord", nombre, depth, initialization);
        trace(nombre);
    this.onEnterFrame = function() {
        this.cam.dz += 5;
        // move the camera to its destination
        this.cam.x += (this.cam.dx-this.cam.x)/10;
        this.cam.y += (this.cam.dy-this.cam.y)/10;
        this.cam.z += (this.cam.dz-this.cam.z)/30;

    change the highlighted text
    picData = new XML();
    picData.ignoreWhite = true;
    picData.onLoad = loadXML;
    picData.load("md_photos.xml");
    function loadXML() {
         _root.createEmptyMovieClip("thumbnails", 1);
         images = new Array();
         for (i=0; picData.firstChild.childNodes[i].firstChild.nodeValue != undefined; i++) {
              images.push(picData .firstChild.childNodes[i].firstChild.nodeValue);
         thumbnails._x = 750;
         thumbnails._y = 75;
         imageLoading = true;
         numObjects = images.length;
         objectsInScene = new Array();
         focalLength = 750;
         spin = 0;
         _root.thumbnailSize = 350/((numObjects)/9);
         displayPane = function () {
              var angle = this.angle+spin;
              var x = Math.cos(angle)*this.radius;
              var z = Math.sin(angle)*this.radius;
              var y = this.y;
              var scaleRatio = focalLength/(focalLength+z);
              this._x = x*scaleRatio;
              this._y = y*scaleRatio;
              this._xscale = -(this._yscale=100*scaleRatio);
              this._xscale *= Math.sin(angle);
              this.swapDepths(Mat h.round(-z));
         angleStep = 2*Math.PI/numObjects;
         for (i=0; i<numObjects; i++) {
              thumbnail = thumbnails.createEmptyMovieClip("thumbnail_"+i, i);
              myPic = thumbnail.createEmptyMovieClip("picHolder", 1);
              myPic.loadMovie(ima ges[i]);
              thumbnail.angle = angleStep*i;
              thumbnail.radius = 650;
              thumbnail.x = Math.cos(thumbnail.angle)*thumbnail.radius;
              thumbnail.z = Math.sin(thumbnail.angle)*thumbnail.radius;
              thumbnail.y = 0;
              thumbnail.display = displayPane;
              thumbnail.drawBox(_ root.thumbnailSize);
              thumbnail.buttonize (i);
              thumbnail.notLoaded = true;
              objectsInScene.push (thumbnail);
         panCamera = function () {
              spin -= 0.001;
              for (var i = 0; i<objectsInScene.length; i++) {
                 & nbsp; objectsInScene[i].display();
         thumbnails.onEnterFrame = panCamera;
         _root.onEnterFrame = function() {
              for (i=0; i<images.length; i++) {
                 & nbsp; if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal() == 1) && _root.thumbnails["thumbnail_"+i].notLoaded) {
                 & nbsp;      if (_root.thumbnails["thumbnail_"+i].picHolder._width>=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._y = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._height)/2;
                 & nbsp;      }
                 & nbsp;      if (_root.thumbnails["thumbnail_"+i].picHolder._width<=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._height-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._height)));
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._x = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._width)/2;
                 & nbsp;      }
                 & nbsp;      if (_root.thumbnails["thumbnail_"+i].picHolder._width == _root.thumbnails["thumbnail_"+i].picHolder._height) {
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._x = _root.thumbnails["thumbnail_"+i].picHolder._y=0;
                 & nbsp;      }
                 & nbsp;      _root.thumbnails["thumbnail_"+i].picHolder._alpha = 80;
                 & nbsp;      _root.thumbnails["thumbnail_"+i].notLoaded = false;
                 & nbsp; }
                 & nbsp; if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal()<1)) {
                 & nbsp; }
    levTextSpace:
    // register root as environment
    Object.environment = _root;
    // create camera object
    this.cam = {x:0, y:0, z:500, dx:0, dy:0, dz:-500};
    // set environmental constants
    this.fl = 1000;
    // create 'space' to which all words will be attached
    this.createEmptyMovieClip("space", 2);
    // center 'space' on the stage
    space._x = 800;
    space._y = 900;
    // a string of words related to the wind
    this.keywords = "no-nonsense  full-service partner  co-creation  innovation  keep it simple  technical expertise  integral design method  successful products  teamwork  designers engineers  design for (dis)assembly  sustainability  ecological  smart  ideation  feasability study  ergonomic analysis  imagineering  trade off matrix  prototyping  consultancy  technology  problemsolvers  open-minded  multi-disciplinary  imagination  creative minds  passionated  user centered  strategy  added value";
    // convert the string of words into an array of words
    this.wordList = new Array();
    this.wordList = this.keywords.split("  ");
    // create one instance for each word in the list
    for (n=0; n<this.wordList.length; n++) {
        // pick a word from the list
        var word = Object.environment.wordList[n];
    // changing the next 3 lines probably will change where the words appear
        var x = random(600)-(300);
        var y = random(400)-(200);
        var z = random(Object.environment.fl*2)-Object.environment.fl;
        // create an instance of the keyWord object
        nombre = "word"+String(depth++);
        initialization = {txtword: word, x: x, y: y, z: z};
        space.attachMovie("keyWord", nombre, depth, initialization);
        trace(nombre);
    this.createEmptyMovieClip("loopMC",this.getNextHighestDepth);
    loopMC.onEnterFrame = function() {
        this.cam.dz += 5;
        // move the camera to its destination
        this.cam.x += (this.cam.dx-this.cam.x)/10;
        this.cam.y += (this.cam.dy-this.cam.y)/10;
        this.cam.z += (this.cam.dz-this.cam.z)/30;

  • [solved] Amarok 2.3.1: streaming/webradio doesn't work anymore

    I updated to Amarok 2.3.1 and now music streams/webradio doesn't work anymore. Anyone else experiencing this? Someone know, how I can get rid of this?
    EDIT/SOLUTION: Switched phonon-backend from gstreamer to xine and now it works again.
    Last edited by ChemBro (2010-06-08 10:38:13)

    sultanoswing wrote:
    Yes.
    I had to manually download the .asx file (e.g. wget http://www.newstalkzb.co.nz/audioasx.as … ass=48812).
    Then open the downloaded .asx file with a text editor.
    Find the following information e.g. "mms://wms-trn-all.streaming.net.nz/trn-newstalk-zb-akl".
    This is the proper link that amarok can and will play. A bit of a faff, but it works for me.
    I've always had to do it this way
    I guess i was following the old maxim "it's not a bug, it's a feature"

  • I just made update to iOS 7 on my iphone 4 and now doesn't work anymore the left side button of ringtone why??

    Update to iOS 7.0.4 and ringtone button doesn't work anymore, why???

    Double click home button, then swipe up on app picture (not the icon itself)

  • Synchronisation between web and desktop doesn't work anymore (update)

    Before today, I could synchronize my files between Web and my Desktop. It doesn't work anymore.
    It tells me "Available soon"... It worked fine until today...
    >>> That's ok, it's working again since a few minutes...

    The problem is on the PC with Windows 7... where iTunes doesn't work anymore.

  • Update to iTunes 11.1.4 fails on Windows 7 and iTunes doesn't work anymore. How will we be able to receive future updates to correct this problem ?

    Now that iTunes doesn't work, how will we be able to receive future updates that corrects this problem ?

    The problem is on the PC with Windows 7... where iTunes doesn't work anymore.

  • I have the very first iPod Nano, and it doesn't work anymore. Can I recycle it or trade it for a newer one?

    I got this iPod a really long time ago. And when I pluged it into my computer it doesn't unlock and it doesn't let me turn it off or anything.
    I've tried to do the iPod replacement but it says that my iPod isn't a part of it. But my friend has the same kind of iPod as mine and it went through.
    Can I trade it in or recycle it for a newer one?

    The Problem With Your Ipod Is That It Is Not Unlocked , To Unlock It You Have To Install Itunes And Plug It Into Your Computer , Then It Will Be Automatically unlocked .
    No, You Cannot Recycle Your Ipod Because Ipod Nano 1G does Not Include in the recycling Program
    For More Information Go To - http://www.apple.com/recycling/ipod-cell-phone/

  • Problems with 3D in CS 6 and CS5 doesn't works anymore

    Hello,
    Since e few month I have Photoshop CS6 Now I will  make something in 3D but all is clear. I got  a memo  OPEN GL is not  open what is OPEN GL ? I have had CS5 and that it was not a problem. I have worked with CS5  but a few month ago it does'nt works I can only try it fot 30 days or buy it but I have 3 years ago buy it . I have still the number but it is not good. That is stange. please help me. Ik have CS6 now, but I like CS5 also back. Sorry for my bad Englisch. I hope you can understand it.
    G Klok-Hommers

    You have run a system update that messed with your graphics driver and the licensing system. Reinstall the program, update your graphics driver and also refer to this:
    Sign in or activation errors
    Mylenium

  • This is a stupid question, I got this iPhone brand new a few days ago and my cat just chewed my earbud wires and it doesn't work anymore. Can Apple replace them for me?

    My earbuds got chewed up by my cat and they are brand new just got the phone 4 days ago

    If you charge your cat rent to live with you (assuming your cat has a job), then you can add the cost of replacement to the rent or take it out of the security deposit. With your new funds, you can go to Apple and buy a new pair of headphones. Hope this helps.

  • "Save and quit" doesn't work anymore

    FF4 DOES ask me if I want to "save and quit" at the end of a session and I always click "yes" but when I bring FF up the next time NONE of my pages come up.

    You can set the warn prefs on the about:config page to true via the right-click context menu or toggle with a double left-click.
    * browser.showQuitWarning, see http://blog.zpao.com/post/3174360617/about-that-quit-dialog
    * browser.tabs.warnOnClose, see http://kb.mozillazine.org/About%3Aconfig_entries
    * browser.warnOnQuit , see http://kb.mozillazine.org/browser.warnOnQuit
    * browser.warnOnRestart , see http://kb.mozillazine.org/browser.warnOnRestart
    * browser.startup.page , seehttp://kb.mozillazine.org/browser.startup.page (1 or 2)
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    * http://kb.mozillazine.org/about%3Aconfig
    You can use Firefox > History > Restore Previous Session to get back the previous session.<br />
    There is also a "Restore Previous Session" button on the default about:home Home page.
    Another possibility is to use:
    *Tools > Options > General > Startup: "When Firefox Starts": "Show my windows and tabs from last time"

  • After 7.3 update I get an error in outlook 2000 and it doesn't work anymore

    I upgraded itunes 7.2 to 7.3 and now when I open outlook 2000 I get a microsoft error outlook has to close. Everything was working fine before the itunes & quicktime update? Everything points to the itunes update??? I do a system restore to before the update and everything works again??

    First man up and admit, that itunes does not suggest, but tells you that update is available and you made a
    decision to download and update. Once you man up - think if you still under warranty. If that is not security
    software according to the link provided, it is hardware. So second try another network, may be your network
    has additional security or firewall. And third decide if it worth to you pay 149 for that phone or get it replaced.
    Unless your 3gs under warranty.

  • Efi Express doesn't work anymore so I can't print

    I Use Efi Express as RIP and colormanagement software to print to my Epson Pro 4900 printer. Now I need prints and this doesn't work anymore.
    I installed Maverick so that is most likely to be the problem, because just before I did this the pritner and software worked fine. I installed Efi Express again but I keep getting a message aboutr a system extension that isn't properly installed.
    I looked in the system folder for this .kext file, but it doesn't exist at all.
    Please help.

    We use the Fiery Express driver with our Canon copiers that use the optional EFI print controller and have no issue with this driver on 10.9. In fact, at this point in time, it is the only EFI driver we have for 10.9.
    The Express driver plugins should be located in /Library/Printers/efi and the PPD will be in /Library/Printers/PPDs/Contents/Resources/en.lproj and is called Fiery Express. So trash these files and check the EFI web site for the latest version of the driver.

  • I upgraded my iphone 5 to 6.1.4 and the earphone doesn't work anymore. Anyone has an idea on how to solve the problem ? Thank you

    I upgraded my iphone 5 to 6.1.4 and the earphone doesn't work anymore. Anyone has an idea on how to solve the problem ? Thank you

    Hi Jboudet,
    Welcome to Apple Support Communities.
    You can find some suggestions for troubleshooting your iPhone at these links:
    iPhone Assistant
    http://www.apple.com/support/iphone/troubleshooting/
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Have a good one,
    Jeremy

  • I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.  I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion.

    I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.
    I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion. I now want to fix the underlying problem.
    I'm not running any weird background processes and in my energy saver settings I've tagged "put the hard disk to sleep when possible:, "allow power button to put computer to sleep" and "automatically reduce brigthness". All pretty standard.
    Is there anyone who can give me some pointers ?

    Today I solved the same problem for my iMac running Snow Leopard. See https://discussions.apple.com/thread/3008791#15947706. The method may help you, too.
    For me it was the DynDNS Updater preventing my iMac from automatically entering sleep mode.
    To my knowledge the cause of this sleep problem can only be a peripheral device or a process. So I suggest to first unplug all peripherals and test whether that's the cause. If not, I suggest to terminate one process after another and to test automatic entering of sleep mode after each. Start with user processes; continue with system process if necessary.
    At least that's the way I found the offending process. Fortunately, I was able to change the configuration of that process to allow again automatic entering of sleep mode.
    Good luck!

  • I have purchased the Adobe Creative Suite 4 and now my first dvd of the software doesn't work anymor

    I have purchased the Adobe Creative Suite 4 and now my first dvd of the software doesn't work anymore. My computer doesn't want to read it anymore. I want to mention that I also tried on some other computers and still the problems continues. How can I solve this? On the Adobe webpage I can't find anymore the download for Adobe CS4. Thanks. Marius Lupu

    You can download the software from http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html and can serialize it with the serial number you have.
    NOTE:- READ THE INSTRUCTION PROPERLY TO AVOID ANY ERROR.

Maybe you are looking for

  • Cast error in java sound

    Hey, i got a little run-time error: Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: com.sun.media.sound.PortMixer$PortMixerPort the code segment it occurs at is here: case 0:       targetDataLine1 = (TargetDataLine)mixer1.getLine

  • WBS elements in Investment profiles

    Hi Experts, Is there any way we can check that to which all WBS element an investment profile is attached? Regards, Vijay

  • Indesign CC, Error Foliobuilder

    Hello, I want to create my first folio but when I click on FOLIO BUILDER in the latest indesign CC iam getting error "Sie verfügen nicht über ein kompatibles Digital Publishing-Zusatzmodul. Klicken Sie hier, um die Folio Producer-Werkzeuge herunterzu

  • Photoshop 3D crash

    When I try to do ANYTHING 3D in Photoshop it crashes it. It used to work fine, then I got the most up to date drivers for my video card, and 3D in Photoshop doesn't work anymore.. An error comes up if I click on anything 3D related and says "Photosho

  • Third-party internal burners

    Hi all. I've recently come into posession of a used PowerMac G5 dual 1.8 and am wondering if installing a third-party burner such as the ones listed below would be recognized by Tiger. http://shop4.outpost.com/product/5095285;jsessionid=9mLkV4hgulAFt