Anyone have a Nokia phone that works under Arch [Linux!] ?

Hi,
Just got myself a Nokia N95 would like to get it hooked up via usb
Bus 002 Device 002: ID 0421:0070 Nokia Mobile Phones
shows up in lsusb but gnome does not mount it
It is possible even if I can get transfer to phone memory?
Thanks
MrG

It turns out that N95 is not supported by gammu or gnokii atm.... I can use bluetooth although Its a little hit and miss but I have manged to get usb connection working which means I can transfer files to and from phone...
Well its a start :-)
Last edited by Mr Green (2008-04-23 15:21:38)

Similar Messages

  • Does anyone have an Android phone that works with the hands free on a 2015 Honda Civic EXL -Nav?

    Does anyone have an Android phone that works with the hands free on a 2015 Honda Civic EXL -Nav?   I don't care about the HondaLink- just the hands free phone call/receive.

    My 5 starting doing this today....constant rebooting and or shutting off even after restoring to new phone.  Would love some impu!!

  • Does anyone have a bluetooth receiver that works with iPod Hi-Fi?

    I'm hoping to make my iPod Hi-Fi Bluetooth compatable. I purchased one and it didn't work.
    Any suggestions?

    I wear hearing aids and use the iphone 5 to control them.  it does not have a 30 pin but the newer smaller usb.  So far I have not been able to find some kind of receiver that will transmit or input audio back into the iphone.   There are guitar applications, but nothing for "line in" of mp3 shuffle type audio.  my riding instructor has an fm unit and students simply wear earphones.  Because of my hearing loss and the bulky "behind the ear" aids, I cannot do that.  My phone plays its music and phone calls directly into my aids, much like phones do for "jawbone" type hands free.  But I need an auxiliary input to feed my instructor's voice into my aids.  Any suggestions, that won't cost an additional $100+?

  • Progress on Unity under Arch Linux!

    See here for information about the new GNOME 3.12-compatible packages: https://bbs.archlinux.org/viewtopic.php … 3#p1404683
    I'm now on IRC! Come join us at #unityforarch on Freenode
    To install Unity from my repos:
    See the wiki: https://wiki.archlinux.org/index.php/un … mmended.29
    To install Unity from source:
    See the wiki: https://wiki.archlinux.org/index.php/unity#From_source
    -- You probably don't want to read anything below --
    The story
    So...rather than wasting internet bandwith to download a new Ubuntu ISO to test out the new Unity features, I decided to try to make it work under Arch Linux. It took a whole lot longer than I expected to get it even partially working. So, here's my story:
    Knowing that Unity isn't in the main repositories, I went the AUR's website and looked for a user created Unity package. That didn't go too well. The Unity package hasn't been updated for 6 months. D'oh! I decided to download the existing PKGBUILD and modify it to work with the Unity 4.xx series. After changing the version number, I tried to "makepkg" it, and was greeted with a message about installing Compiz 0.9.x. I thought it would be an easy install. It was quite the opposite. Compiz's install prefix was set to /opt/unity, but FindCompiz cmake build file expected Compiz to be in /usr, so none of the Compiz packages, except for compiz-core would compile. Then, I tried reinstalling compiz-core, but this time, changing the prefix to /usr. The compiled package ended up being only a few kilobytes big. I guess the mouse wheel was invented for a reason. I looked at the PKGBUILD again, only to find that there was a line at the very bottom that ran "rm -rf ${pkgdir}/usr". That explains a lot! I ended up adopting all the compiz*-git packages and fixing them so they would compile and install.
    So, now that Compiz is working (restarted and tested just to make sure I didn't waste my time with something that didn't work), I went on to install the rest of the dependencies listed in the Unity PKGBUILD file. That went relatively well. I was so happy after seeing the progress counter go up after running "makepkg", but at about 8%, gcc spat out an error about an undeclared function (sorry, I forgot what the function was). Natually, I went to Google and searched the name of the function. 0 results! Exactly was I was looking for! I ended up downloading the Ubuntu 11.10 Alpha 3 ISO and running "find -type f /usr/lib | xargs objdump -T | grep the_function". The problem lied in the libindicator package. There was a newer version available which contained that function. I have no idea why a package that's only 0.02 versions ahead of the AUR package would contain new functions...
    Next! Utouch...ugh...great memories! Not! I was so glad that I had fixed the utouch packages earlier (for touchegg to work). I was too frustrated from compiz and libindicator to try to compile more stuff.
    Cmake. Whoever created the CMakeLists.txt file didn't list all the dependencies required. So after running "makepkg" 10 billion times, waiting for "somebodydidntputthisincmake.h not found" errors to appear, I finally got all the dependencies I needed installed...or so I thought. After installing and compiling all these dependencies, the cmake only continues 3% further before encountering another cryptic gcc error. This time, there no error about a file not being found. So not knowing what dependency was missing, I headed over to http://packages.ubuntu.com and downloaded the Unity DEB source to find the dependencies in then debian/control file. After install those few dependencies that I missed, I ran "makepkg" again, hoping that it would finally compile successfully. CMake went a little further--5% further to be exact--before running into another error. It complained about DndSourceDragBegin() having two return types. Sure, enough "./plugins/unityshell/src/ResultViewGrid.h" had the return type as boolean and "/usr/include/Nux-1.0/Nux/InputArea.h" had the return type as void. WTF? How the heck does this even compile under 11.10???
    After changing void to bool in "/usr/include/Nux-1.0/Nux/InputArea.h", I ran "makepkg" once again anxiously waiting to the see the line "Finished making: unity 4.10.2". CMake compiled about 35% before running into error about an undeclared gtk function. Nooooooooooooo!!! I wasn't brave enough to install the git version of gtk3, so I created a chroot, installed the base packages, and installed all of those dependencies fairly quickly (it gets a lot easier after doing it so many times).
    Moving on to gtk3. After cloning the ~200MB git repository, autotools spits out an error about cairo-gl missing. So, I proceeded to install the cairo-gl-git package, which failed to compile (it compiled successfully outside of the chroot...). GREAT. So, Unity fails to compile because GTK version is too old, and GTK failed to compile because cairo-gl is missing, and cairo-gl fails to compile because I'm in a chroot. GAHHH!!! While thinking about throwing the computer out of the window, I searched the AUR for other GTK3 packages. I just happened to find a package named "GTK3-UBUNTU"! That package was still at version 3.0, but it was pretty easy to get the patches and source code for 3.1 from the Ubuntu GTK source package.
    So, FINALLY, Unity compiles. I was so darn happy, I didn't even care if it ran or not. I logged out and logged back into the GNOME 3 fallback mode, and entered the chroot. After running "xhost +SI:localuser:chenxiaolong" to run X11 apps in the chroot, I crossed my fingers and ran "DISPLAY=:0.0 unity --replace". It failed with python 3 complaining about missing modules. That's okay, since the Unity launch script is written in python 2. I changed the shebang line in "/usr/bin/unity" to point to python 2 and ran "DISPLAY=:0.0 unity --replace". It didn't necessarily fail, but it didn't succeed either. It didn't print out any error messages. Weird... I thought I'd try enabling Unity from the compiz settings manager then. I ran "DISPLAY=:0.0 compiz --replace" and "DISPLAY=:0.0 ccsm" and enabled the Unity plugin. Unity runs! Although nothing shows on the screen, it runs! It shows up in the process list! Woohoo!
    And that's about how far I got. There were quite a few Vala errors during the compiling process (I forgot which package it was), which is probably why Unity won't appear. I'll try again later with the vala-devel or vala-git package and hopefully Unity will work then. Here are screenshots of what I've gotten working so far:
    http://i.imgur.com/7F1fm.jpg
    http://i.imgur.com/zGNJc.jpg
    http://i.imgur.com/3mCgd.jpg
    By then way, I love the simplicity of pacman and the AUR. I can't imagine how long this would have taken with other package managers.
    Moderator edit:  Do not place large images in line.  If you want, you may embed links to thumbnails inside url tags.
    Last edited by chenxiaolong (2014-04-15 17:11:04)

    City-busz: I'm getting a ton of Vala errors when I compile libunity (AUR version) with vala or vala-devel. libunity fails to compile with vala-git. I'll try your packages in a virtual machine and see how they work on 64 bit.
    In the meantime, Unity still fails to show up: http://i.imgur.com/btPwo.png I'll try out your PKGBUILDS and see how that works. I'm glad there are people who want to port Unity to Arch Linux
    EDIT: City-busz: Just to let you know, Unity will fail to compile at around 45% with GTK 3.0. Here's my source packaage for Ubuntu's GTK 3.1: http://ubuntuone.com/p/1EzX/ It contains all of the patches in the Ubuntu source package. I'm not sure if all the patches are needed, but GTK compiles fine with all of them.
    EDIT2: Right now, I'm trying to compile Vala 0.10.4, then version used in Ubuntu 11.10. Hopefully that will eliminate some of the Vala errors.
    EDIT3: Vala 0.10 is too old. 0.12 and 0.14 are also in the Ubuntu repository. Trying those...
    EDIT4: 0.14 is actually 0.13.1. Gah... Vala takes longer to compile under VirtualBox than GTK3...
    EDIT5: Okay...so VirtualBox "helpfully" became slow enough that I could read the error messages. The Vala error messages aren't actually error messages, but rather warnings about unused methods. I wonder what prevents Unity from running then...
    Last edited by chenxiaolong (2011-08-30 02:30:29)

  • [GUIDE] How to get MapleStory working in Arch Linux

    MapleStory is a free-of-charge, 2D, side-scrolling massively multiplayer online role-playing game developed by the South Korean company Wizet. Several versions of the game are available for specific countries or regions, and each is published by various companies such as Wizet and Nexon. Although playing the game is free, character appearances and gameplay enhancements can be purchased from the "Cash Shop" using real money. MapleStory has a combined total of over 50 million subscriber accounts in all of its versions. MapleStory North America (Global), for players mainly in North America and outside of East Asia, Southeast Asia and Europe, has over three million players.
    In the game, players travel the "Maple World", defeating monsters and developing their characters' skills and abilities as is typical in role-playing games. Players can interact with others in many ways, such as through chatting, trading, and playing minigames. Groups of players can band together in parties to hunt monsters and share the rewards. Players can also join a guild to interact more easily with each other.
    I am an avid mapler myself, however, I am also an avid archer! For some time, I have wanted to get MapleStory working on Arch Linux in some way, but nothing seemed to work. As you might have guessed by now, recently, while playing around with VirtualBox, I discovered a method to get MapleStory working on it! Though in this method you won't actually have MapleStory running on Arch Linux, you'll have it running on a VirtualBox Windows virtual machine, that is still pretty good compared to other people's experiences.
    I hope there are at least a few maplers on this forum, and if there aren't, I hope that someone will port this post over to other Linux, or even MapleStory, forums. Anyways, let's begin.
    1. Download and install a version of Virtual Box that is version 3.0+. The reason for this is that, only versions 3.0+ support an experimental DirectX Driver with 3D acceleration that is required for MapleStory to run.
    2. Create a Windows Virtual Machine, add a hard disk to it, and install and update Windows on it(preferably Windows XP, as it uses less resources than other contemporary Windows installations).
    3. Once you have done all you needed and wanted on that Windows installation, restart it, boot it into safe mode by holding F8 at the boot, and wait until the desktop is fully loaded.
    4. After you are at the desktop, go to "Devices" at the top of the menu of the Windows virtual machine, and select "Install Guest Additions...". Wait until Guest Additions finishes installing, and when VirtualBox asks you if you want to mount the disk containing the Guest Additions on the virtual machine, say "Yes".
    5. Run the main executable on the disk that doesn't have amd64 or x86 following its name. Follow the instructions it gives you, and when it asks you what components to install, make sure both of the boxes it shows you are checked.
    6. After the install is completed, the virtual machine will restart. After it restarts, shut it down.
    7. Congratulations! You now have DirectX installed on your VirtualBox virtual machine! Now you need to activate the "3D Acceleration", that enables it.
    8. In the VirtualBox main window, make sure you have your machine with Windows selected. Then, click on "Machine", and then "Settings...", at the top. A new window should pop up. On the left hand side, click on the display panel, and in the new settings section, tick Enable 3D Acceleration. Click "OK", to save the settings.
    9. Start your Windows virtual machine, install MapleStory just as you would on a normal windows computer, and run MapleStory.
    Notes: This way of running MapleStory is slower than by running it normally, on a normal windows computer. Also, try to not interact with your Linux desktop while playing MapleStory, because this can cause HackShield to shut down MapleStory, due to the fact that it believes there is a hacking attempt.
    If any of you port this guide to any other place on the web, please, credit me, neovaysburd5.
    For any further questions or inquiries, this goes to all of you, please contact me at [email protected].
    Last edited by neovaysburd5 (2009-08-19 16:51:31)

    Alright, I've posted it in the wiki. I don't know if it meets the Arch Linux wiki standards, so if there is absolutely anything wrong with it, please fix it right away. Don't even ask my permission.
    http://wiki.archlinux.org/index.php/MapleStory

  • Is there a list somewhere of Nokia phones that the...

    Why I am asking this question is my Nokia 6600 fold went faulty (see note below about this) and has been replaced by O2 with a Nokia 6700 slide. Now I don't like slide phones so I bought a 7020 fold on eBay.
    What I am looking for is an adapter for these phones (each have 2.5 mm AV connector) that will allow me to connect my noise cancelling headphone's 3.5 mm jack to (I was able to do this on the adapter that came with my 6600 fold phone).
    I googled and found that one option may be the Nokia AD-44 but I am not sure it will work with either the Nokia 6700 slide or 7020 fold.
    So my question, is there a list somewhere of Nokia phones that the AD-44 adapter will work with?
    Note: the faulty Nokia 6600 fold phone was a replacement for the original Nokia 6600 fold phone and both have had the well documented 'm, n, o' problem when sending a message that locked the phone and all that could be done was to power off!

    Hi there,
    I managed to find an old list of compatibility with HS-44 / AD-44 but nothing for the adaptor on it's own.
    Nokia 3600 Slide
    Nokia 3710 Fold
    Nokia 3720 Classic
    Nokia 5610 XpressMusic
    Nokia 5700 XpressMusic
    Nokia 6110 Navigator
    Nokia 6120 Classic
    Nokia 6210 Navigator
    Nokia 6212
    Nokia 6220 Classic
    Nokia 6290
    Nokia 6700 Slide
    Nokia 6730 Classic
    Nokia 7610 Supernova
    Nokia E66
    Nokia E71
    Nokia E90
    I can't promise this is ALL th ehandsets though, since the list is quite old. Also I am almost certain that this adaptor converts Nokia 2.5mm to Nokia 3.5mm, Nokia connectors are different to a standard headphone as there is an additional connection for voice.
    If using non -Nokia headphones you may need a further adaptor.
    Hope this helps a little?

  • Is there a list of other cell phones that work with iTunes?

    I'm thinking of going with Verizon and was just wondering if certain of their phones will work. Thanks.

    The only phones that work directly with iTunes, other than the iPhone, are a few of Motorola's phones such as certain models of the RAZR, ROKR, and SLVR. You'll want to check with Motorola or ask Verizon which models are iTunes-equipped.
    Other phones may be able to use iTunes tracks even though they may not be able to sync directly from iTunes. Any phone that can mount on a Mac as a normal hard drive and accept tracks dragged to the phone should work, assuming that the tracks are in a supported format (MP3 almost always is supported, AAC a bit less common. Copy-protected tracks from the iTunes Store require an iTunes-equipped phone). There may be phones that are compatible with Mac and have their own software, but I'm can't mention any specific models.
    Hope this helps.

  • My ipod won't show up on my computer. I have another ipod touch, that works fine. What should I do? Do I need a different ipo usb cord for the nano?

    my ipod won't show up on my computer. I have another ipod touch, that works fine. What should I do? Do I need a different ipo usb cord for the nano?

    iTunes never displays the iPod in the left pane?
    iTunes is shipped with a "helper application" called the "iPod Service" that runs and is used by iTunes to communicate with the iPod device. This service may be disabled.
    If your system is Microsoft Windows XP and you are logged in as an Administrator:
    1. Quit iTunes and, if your iPod is currently connected to your computer, safely remove it using the system tray application to manage removable devices.
    2. Right click on "My Computer"
    3. Select "Manage"
    4. In the "Computer Management" window, left pane (tree view), follow this path:
    +Computer Management (local) > Services and Applications > Services+.
    5. In the right pane, scroll down to "iPod Service" and double click it.
    6. If the service is listed as "Disabled" and "Stopped," change to "Manual" and "Start" it. ("Manual" will cause it to start when iTunes starts and "Start" starts the service right now.)
    7. Close "Computer Management"
    8. Restart iTunes and wait for it to completely come up.
    9. Reconnect your iPod.
    Does your iPod show up in iTunes?

  • I have a 3GS phone that can no longer be upgraded on my Powerbook because it is ancient and can only run 10.4.11, consequently itunes will only upgrade to 9.2.1(4). Is there any way i can upgrade the phone so hereafter i will not need a computer to do it.

    I have a 3GS phone that can no longer be upgraded on my Powerbook because it is ancient and the os will only run 10.4.11, consequently iTunes will only upgrade to 9.2.1(4). Please don't answer that i need to upgrade the computer os because that has been a past nightmare i have been through too many times.
    Is there any way i can upgrade the phone w/o going to an apple store so hereafter w/ the upgrade to the new os (whenever that gets squared away), i will not need a computer to do it?
    Thanks in advance,
    don

    Solved my issue by setting up a new account on my daughter's computer. Not 100% solved, but i was able to get the update on my 3GS.
    don

  • HT202274 Apple ID has my old email address. It will not allow me to change the address and will not accept my password or ID questions.   I recently upgraded to OSX Yosemite 10.10.1.  I also have an Apple ID that works with iTunes and would like to keep i

    Apple ID has my old email address. It will not allow me to change the address and will not accept my password or ID questions.   I recently upgraded to OSX Yosemite 10.10.1.  I also have an Apple ID that works with iTunes and would like to keep it as my primary.

    To change the iCloud ID on your devices you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted (if using iOS 7), then sign back in with your current ID.
    If you don't know the password for your old ID, or if it isn't accepted, you will have to temporarily recreate it in order to delete the existing account.  To do this, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Etting support through this site is terrible. Having said that I have been trying to access the store in order to order PS CC and I have  been unable to connect. I have  an internet connection that works with everyone else. The URL comes up in the browse

    Getting support through this site is terrible. Having said that I have been trying to access the store in order to order PS CC and I have  been unable to connect. I have  an internet connection that works with everyone else. The URL comes up in the browse window and the address simply hangs. This has been going on for the past three hours.

    Please read, and reply back here with information https://forums.adobe.com/thread/1499014
    -and try some steps such as changing browsers and turning off your firewall for downloads
    http://myleniumerrors.com/installation-and-licensing-problems/creative-cloud-error-codes-w ip/
    http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html
    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html
    Mac Spinning Wheel https://forums.adobe.com/message/5470608
    -Similar in Windows https://forums.adobe.com/message/5853430

  • Ipad 3rd gen shows blank screen when connecting to projector via HDMI AV adapter.  I have an ipad 2 that works perfectly.  Projector is a Dukane ImagePro 8106HA.  Only difference I see is that the ipad 3 owner has not updated to IOS 6. Any thoughts?

    Ipad 3rd gen shows blank screen when connecting to projector via HDMI AV adapter.  I have an ipad 2 that works perfectly.  Projector is a Dukane ImagePro 8106HA.  Only difference I see is that the ipad 3 owner has not updated to IOS 6. Any thoughts?

    Ipad 3rd gen shows blank screen when connecting to projector via HDMI AV adapter.  I have an ipad 2 that works perfectly.  Projector is a Dukane ImagePro 8106HA.  Only difference I see is that the ipad 3 owner has not updated to IOS 6. Any thoughts?

  • Does anyone have a simple program that will return the size of a file

    Does anyone have a simple program that will return the size of a file?

    I quite hate it when I receive the incorrect amount of yoctocandela per metre squared. Swarthy people
    can't properly convert poundal feet to barleycorn; throws off the whole conversion! Aaah, you get what
    you paid for.I recognize those figures; you've got your outsourced file sizes from Zanzibar; admit it! I always apply
    the scientific approach when I've got file sizes back from Zanzibar: I simply divide those numbers by
    pi (very scientific) and drop the eleven (ueber scientific, because 11 is prime even when looked upon
    as a binary number) least significant bits. And remember: never compare two floating point numbers
    for equality. (<--- that's a free tip)
    Jos ;-)

  • Deluge under arch linux - one observation

    Hello,
    There were various problems with deluge bittorrent client under arch linux, but it seems to work if no plugins are enabled.
    This is with deluge version 1.1.9 run under a "normal" user account (not started from /etc/rc.d/deluge).
    Kind regards,
    Vlad

    By Which plugin can't it work? and please post the message from terminal.

  • Does anyone have a black N82 that's working fine?

    I'm deciding on buying a black N82 soon, but I'm still deciding if I would rather prefer the Bold 9000 over the N82. I was just wondering after seeing all these topics about problems with N82, black, that does anyone have one that's been working fine for a while now?
    Thanks.
    Edit: Also, I was wondering after reading some reviews about the N82, are the cases all plastic? And if so, are they good quality? Meaning do they feel sturdy and not cheap?
    What are the pros and cons about the N82, and after listing them and experiencing them, would you still recommend this as a buy?
    And I've also heard that this phone doesn't support US 3G, is this true?
    Thanks again.
    Message Edited by drewhy on 25-Aug-2008 07:16 PM

    I work in telecommunications, so I often get to test the different stuff that is on the market, and I picked the N82 because it was proving to be the most stable and reliable of Nokia's smartphones. Nokia has the most extensive range of any of the big manufacturers, and whatever you may read against Nokia from some less-experienced users on this forum, reliability and updates are no picnic on other companies' smartphones (and here it is important to distinguish between a normal GSM phone and a smartphone - the latter has a limited OS that runs preinstalled apps plus a few JAVA apps; whereas a smartphone is much closer to a computer than a mere phone.
    Aside from the basics of making and receiving calls and messages, I use a lot the camera, music/video players, mobile internet and sat-nav.
    I have taken some fantastic photos with the camera, ignore the 5MP - this is just a technicality, most cameraphones can't begin to compete with a standard digital camera of similar specs. I have found the picture quality of this phone sharp with excellent colour quality, even in poor light which is one area where most cameraphones (inlcuding my old SE K800i) fall down. One downside is that the shutter speed is slow in most modes - I have some brilliant shots of the Red Arrows' smoke trails from the recent Sanicole airshow at Hechtel, but the planes themselves proved pretty elusive, so is lacks a bit when taking action shots.
    The video quality of the camera is also good, it produces excellent VGA-quality video (which is good enough to watch through the TV with the provided cable), though sound reproduction could perhaps be a little better.
    The phone plays MP4 movies vey well, and music playback is also good - the sound from the stereo speakers is reasonable for such a device, and the headphones produce good sound (there are lots of people moaning with all modern phones that volume levels are not high enough, but in twenty years time they'll be thanking today's phones for not deafening them). The only catch is that the music player isn't always very versatile to use. I have a language course CD copied onto my memory card which I tend to access through File Manager. Having said that, I have yet to encounter any phone with a really good music player; they are designed to play music whilst you're mobile, they don't seem to imagine that you might be on a work break, in a hotel or just relaxing in in the garden and so be in a position to take more personal control over your music.
    The internet is brilliant, as the phone has a good inbuilt WLAN system. I live in Belgium, where the mobile internet is expensive, so I rely on being able to use my home or work WLAN or hotspots out in the town. Unlike most mobiles, S60 smartphones have a proper web browser that can view web sites almost as a PC would (allowing, of course for the smaller screen size), and it is much better than the Microsoft Mobile Internet Explorer that I've used in some PDAs and other branded smartphones. The only real snag (which is common in the breed) is that you can't update things like Flash so if a new version comes out, you have to wait for a full software update to the phone and hope it contains this updated feature.
    Another thing I use more and more in preference to the old system I have is the Nokia Maps sat-nav system, even N82s sold with the latest software (v20) come with the old 1.2 version, but update it to 2.0 and it is maturing into a nice package. The only real snag here is the size of the screen, though it did let me down last week on the way home from Antwerp when I left the road due to roadworks and I had to pull up in a service area and restart the app to make it recalculate the route. Only one problem in four months, though, I can forgive that.
    I handle phones of different types all day at work, and I definitely don't regret buying this one.

Maybe you are looking for

  • When changing computers...?

    Next week I will be getting a new computer which also will involve moving from Vista to Win7 Pro.   I'm wondering if there are any suggestions as to which files I can transfer over (besides the site files) to make this easier. I'm not sure if I can c

  • Maximum Payload

    What is the maximum payload we can send to a BPEL process? Our clients want to send 7000 records to a BPEL process, but it fails randomly for heavy payloads. It gives following error An unhandled exception has been thrown in the ESB system. The excep

  • How To Build a Simple UIX Search Form

    Hi I am starting with ADF BC "I tried to run "How To Build a Simple UIX Search Form" sample but the error "query not found on action:/dataPage1" Could any one tell me where the problem is?

  • Comment supprimé le ID de ADE3 car erreur.

    Bonjour, Grand débutant (un peu compliqué l'installation!) En voulant installé ADE3 pour un Ebook sur mon AspireV3 je me suis complètement trompé. Comment pourrais-je désinstallé le ID d'adobe pour ce PC et recommencer? Merci Cordialement

  • Where are the keyboard latches on Titanium PB 15" 1 GHz??

    I'm trying to reset my PMU but I can't find the keyboard latches that are suppose to be between the ESC + F1 and F11 + F12 keys as stated in the article: http://docs.info.apple.com/article.html?artnum=14449#faq9. I looked at the 15" 1 GHz manual and