Nokia N91 SW people - read this

Hi
I just wanted to say that since the release of 2.00 and then 2.10 the N91 is in good shape now. You can see in the blogs etc that most people who switch to 2.10 are happy. I have had no problem However a few people have a problem where they get "HDD unavailable" message. Its like an application is "holding" the HDD and not releasing it. We have speculated its a 3rd party application, a bad database (Gallery, Music Player, Camera??) etc. The sure way to fix it is to format the HDD but for some people like LabourPains, Rudy7355 it keep happening. There has been alot of self-help between users but we all hope that for the next N91 release (2.??) you try and nail this down and fix it.
Here are some useful links (with others embedded) that might help you people nails this one.
http://www.3g.co.uk/3GForum/showthread.php?t=49626
http://www.3g.co.uk/3GForum/showthread.php?t=47320
http://www.3g.co.uk/3GForum/showthread.php?t=48439
Read past the initial stuff in this one to where there is alot of good info on the problem
http://www.3g.co.uk/3GForum/showthread.php?t=48858
Good luck
music

Well actually no theme creator lets you change the font. You can change other parameters, font colors and stuff like that but you cant change the font. In OS 9.1 however the system uses ttf fonts which are located in the z:\resources\fonts, you can substitute them with other fonts placing them on d:\resources\fonts for example. The fonst have to have the same name as on Z drive, you can do it with a font editor program but I don't think that it will change the font size, you can make a normal font bold for example so it's gonna be a little bigger . BTW I don't think that Nokia will aprove doing that, but hey, if something goes wrong you just take the MMC/SD card and reboot the phone without the fonts (cos they are on the card itself) and the system will use the defaults. You can experiment then.
best regards
blesio

Similar Messages

  • BTREE and duplicate data items : over 300 people read this,nobody answers?

    I have a btree consisting of keys (a 4 byte integer) - and data (a 8 byte integer).
    Both integral values are "most significant byte (MSB) first" since BDB does key compression, though I doubt there is much to compress with such small key size. But MSB also allows me to use the default lexical order for comparison and I'm cool with that.
    The special thing about it is that with a given key, there can be a LOT of associated data, thousands to tens of thousands. To illustrate, a btree with a 8192 byte page size has 3 levels, 0 overflow pages and 35208 duplicate pages!
    In other words, my keys have a large "fan-out". Note that I wrote "can", since some keys only have a few dozen or so associated data items.
    So I configure the b-tree for DB_DUPSORT. The default lexical ordering with set_dup_compare is OK, so I don't touch that. I'm getting the data items sorted as a bonus, but I don't need that in my application.
    However, I'm seeing very poor "put (DB_NODUPDATA) performance", due to a lot of disk read operations.
    While there may be a lot of reasons for this anomaly, I suspect BDB spends a lot of time tracking down duplicate data items.
    I wonder if in my case it would be more efficient to have a b-tree with as key the combined (4 byte integer, 8 byte integer) and a zero-length or 1-length dummy data (in case zero-length is not an option).
    I would loose the ability to iterate with a cursor using DB_NEXT_DUP but I could simulate it using DB_SET_RANGE and DB_NEXT, checking if my composite key still has the correct "prefix". That would be a pain in the butt for me, but still workable if there's no other solution.
    Another possibility would be to just add all the data integers as a single big giant data blob item associated with a single (unique) key. But maybe this is just doing what BDB does... and would probably exchange "duplicate pages" for "overflow pages"
    Or, the slowdown is a BTREE thing and I could use a hash table instead. In fact, what I don't know is how duplicate pages influence insertion speed. But the BDB source code indicates that in contrast to BTREE the duplicate search in a hash table is LINEAR (!!!) which is a no-no (from hash_dup.c):
         while (i < hcp->dup_tlen) {
              memcpy(&len, data, sizeof(db_indx_t));
              data += sizeof(db_indx_t);
              DB_SET_DBT(cur, data, len);
              * If we find an exact match, we're done. If in a sorted
              * duplicate set and the item is larger than our test item,
              * we're done. In the latter case, if permitting partial
              * matches, it's not a failure.
              *cmpp = func(dbp, dbt, &cur);
              if (*cmpp == 0)
                   break;
              if (*cmpp < 0 && dbp->dup_compare != NULL) {
                   if (flags == DB_GET_BOTH_RANGE)
                        *cmpp = 0;
                   break;
    What's the expert opinion on this subject?
    Vincent
    Message was edited by:
    user552628

    Hi,
    The special thing about it is that with a given key,
    there can be a LOT of associated data, thousands to
    tens of thousands. To illustrate, a btree with a 8192
    byte page size has 3 levels, 0 overflow pages and
    35208 duplicate pages!
    In other words, my keys have a large "fan-out". Note
    that I wrote "can", since some keys only have a few
    dozen or so associated data items.
    So I configure the b-tree for DB_DUPSORT. The default
    lexical ordering with set_dup_compare is OK, so I
    don't touch that. I'm getting the data items sorted
    as a bonus, but I don't need that in my application.
    However, I'm seeing very poor "put (DB_NODUPDATA)
    performance", due to a lot of disk read operations.In general, the performance would slowly decreases when there are a lot of duplicates associated with a key. For the Btree access method lookups and inserts have a O(log n) complexity (which implies that the search time is dependent on the number of keys stored in the underlying db tree). When doing put's with DB_NODUPDATA leaf pages have to be searched in order to determine whether the data is not a duplicate. Thus, giving the fact that for each given key (in most of the cases) there is a large number of data items associated (up to thousands, tens of thousands) an impressive amount of pages have to be brought into the cache to check against the duplicate criteria.
    Of course, the problem of sizing the cache and databases's pages arises here. Your size setting for these measures should tend to large values, this way the cache would be fit to accommodate large pages (in which hundreds of records should be hosted).
    Setting the cache and the page size to their ideal values is a process of experimenting.
    http://www.oracle.com/technology/documentation/berkeley-db/db/ref/am_conf/pagesize.html
    http://www.oracle.com/technology/documentation/berkeley-db/db/ref/am_conf/cachesize.html
    While there may be a lot of reasons for this anomaly,
    I suspect BDB spends a lot of time tracking down
    duplicate data items.
    I wonder if in my case it would be more efficient to
    have a b-tree with as key the combined (4 byte
    integer, 8 byte integer) and a zero-length or
    1-length dummy data (in case zero-length is not an
    option). Indeed, these should be the best alternative, but testing must be done first. Try this approach and provide us with feedback.
    You can have records with a zero-length data portion.
    Also, you could provide more information on whether or not you're using an environment, if so, how did you configure it etc. Have you thought of using multiple threads to load the data ?
    Another possibility would be to just add all the
    data integers as a single big giant data blob item
    associated with a single (unique) key. But maybe this
    is just doing what BDB does... and would probably
    exchange "duplicate pages" for "overflow pages"This is a terrible approach since bringing an overflow page into the cache is more time consuming than bringing a regular page, and thus performance penalty results. Also, processing the entire collection of keys and data implies more work from a programming point of view.
    Or, the slowdown is a BTREE thing and I could use a
    hash table instead. In fact, what I don't know is how
    duplicate pages influence insertion speed. But the
    BDB source code indicates that in contrast to BTREE
    the duplicate search in a hash table is LINEAR (!!!)
    which is a no-no (from hash_dup.c):The Hash access method has, as you observed, a linear search (and thus a search time and lookup time proportional to the number of items in the buckets, O(1)). Combined with the fact that you don't want duplicate data than hash using the hash access method may not improve performance.
    This is a performance/tunning problem and it involves a lot of resources from our part to investigate. If you have a support contract with Oracle, then please don't hesitate to put up your issue on Metalink or indicate that you want this issue to be taken in private, and we will create an SR for you.
    Regards,
    Andrei

  • For the IT people reading this...lack of simplicity?

    I've been involved in IT consulting for the last several years spending a lot of time switching many users over from Windows. I just spent the last week getting my family on iChat AV with iSights on PBG4's and built-in iSights on the new MB/MBPros. Some of us are at locations with regular cable modems and an AX - what I would consider an average, simple setup.
    Even as a tech-oriented person, I found it incredibly annoying to deal with all the issues with getting video chat to work. Port forwarding or DMZ hosting? The average user should NOT have to do that to get iChat to work. I can understand having to deal with technical issues involving a corporate firewall - but this should all work out of the box on your typical AX or linksys router. Why not send all the information over port 80? Also - if port forwarding is necessary, that allows ONLY ONE computer behind each router to use iChat AV. The avg. home is going to have more than one mac - but if you activate port forwarding or DMZ hosting, then you limit iChat Video to one computer.
    Someone please explain the insane logic behind all this...
    Black MB   Mac OS X (10.4.7)  

    After further reading, the simple question becomes:
    Why doesn't Apple support UPnP on their Airport family of devices? It seems the UPnP technology would solve most issues on this forum - why not offer it?
    Black MB   Mac OS X (10.4.7)  

  • Nokia e 51 , cannt read sms , not openin from inbo...

    Hi All,
    I have nokia e 51 cell . I am facing a weired pbm.. When I click any sms of inbox, it doesnt open up . And hence I cannt read sms. :-( .
    Can any one plz put light on this pbm. I will be very thanks ful to him,
    thanks in advance
    Ani

    Hi,
    The intention of these boards are for individual users such as yourself to share their opinions and assist each other. These forums are mainly for user-to-user support.
    The moderators are only here to moderate and we will not be able to provide any assistance.
    If you would like to receive assistance from Nokia, you can use the "Contact Us" link at the top of the page and then, select your country in the section "Call or Email Nokia Care".
    Yes, there are Nokia employees who participate in this community. However, they participate voluntarily and they are not obligated to respond to any posts or to look into any specific issues that are discussed here. For more information about the Nokia employee's role, read this post:
    http://discussions.nokia-asia.com/discussions/boar​d/message?board.id=news&thread.id=846
    Regards,
    Concordia
    ~*~ New to Nokia Support Discussions? ~*~
    You may want to have a look at the guidelines!

  • Read this if Maps v2 loads to 30% and then quits ....

    The solution to this problem is to delete the mapping data stored on your memory card, and try loading Maps v2 again.
    Once it has loaded completely once, you can then quit and load the mapping data that you need to the memory card without problem.
    Hope this helps.
    Message Edited by edwardquan on 01-Jun-2008 03:23 PM
    Regards,
    Edward

    Hello there,
    In my case it stops to load at 90% and then just quits.
    I then started Jakka's Crash Monitor for analysis and found out: The reason is a Panic: 12,User. (on a E51 with 4GB card and about 1 GB used for Maps, no other programs running except the normal system standards, like phone, led, email-in, aso)
    The funny thing: It worked fine until this afternoon at 3 pm. I reached my target quit the program and fine. At 5 pm (nothing installed or so in the meantime) i wanted to drive somewhere else and... f***.
    So I ended up in buying a map.
    Shall I always carry my my PC with me when on the road to clean up the cache to be able to continue to use it?
    I need a tool not a toy.
    And well... that PC Nokia Maps Loader can also not be considered as a serious piece of software, more kind of an alpha-state program.
    It does not allow you to see what you already have installed neither can you remove any maps selectively.
    Also there is no chance to edit or delete your own locations and and and.
    I was thinking about to extend my 1 month trial to a real long-term subscription... but i will better invest the money in real maps (paper) as they will be always availiable and i will not be lost in the middle of nowhere just as maps will decide again to panic.
    Nokia really has to make some improvements to become a serious competitor to R66 or Garmin. Not to mention real devices like TomToms.
    Another story is the quality the routing...
    For that i will start a seperate thread so now here just short:
    on sunday i was standing in front of a locked gate of a unpaved road in northern hungary and 1 hour later i wanted to call the nearest Hummer-Dealer to buy one of their vehicles to continue on the road the system selected (set on FASTEST! not or shortest!) and in Northern Slovakia you will end up as food for the bears if you trust your navigation-system.
    (Nokia: If you you read this and dont believe it... try to come to visit me... i will rescue you when you are stuck and lost - i promise!)
    w.

  • I want Download Adobe Reader le For Nokia N91 Plz ...

    plz tell mee i have nokia n91.i am download adobe reader for n-series.when i install on my mobile devies.my mobile devies shone me this softwear is not compatibale
    plaease help me

    get it from here
    http://www.nokia-asia.com/nokia/0,8764,91844,00.html
    this is for e61 but it works good on n91 as all these are Series 60 3rd ed. phones, just setup differently.

  • Update for Nokia 5530? Read this please.

    Hi all!
    I bought my (first) Nokia smartphone in January this year: Nokia 5530.
    Since then, no updates was released for my device.
    Nokia forget 5530 as like 5800. Now only C / E series, N8, N9, and low-price like 52xx.
    Recently new update was released for C6, 5230 and 5233 devices with Ovi Maps 3.06, Browser 7.3 Anna-like, Emoticons input, general improves and more.
    Now, my Nokia 5530 is very poor and forgeted:
    Don't have widgets, don't support IM for Nokia (i tested it and loved), Nokia Browser is terrible, and others resource is very obsolete.
    I saw the C6, the images/videos viewer is very much better, you can categorize with folders, favorite photos, and music player now support lyrics.
    Days ago I installed a C6 port to 5530 (I transformed my 5530 in C6), and now my device has widgets, IM for Nokia and all i mentioned in here, but in very lag, the "Memory is full, close some apps and try again" message appears all time, much bored. Then I back yesterday to original firmware 32.0.0.7. I also have put in ALL MUSICS (300+) image covers and lyrics to use in cfw, but now in original don't have this, and I much sad.
    What I want?
    Want that Nokia don't forget users, because my first smartphone made my a Nokia lover, and I liking this. But i don't have money to buy a new smartphone (i want N8) because here in Brazil (where I live) is much expensive price.
    Well, please Nokia, release a nice update for us Nokia 5530 users, even if not with widgets support, but with IM for Nokia, new browser/Ovi maps, lyrics support in Music Player, More organized images/videos viewer and more stabilities and improvements in cinetic scroll, etc.
    I love Nokia and want to continue loving.
    Thank you very much, I'm anxious waiting for my device update.
    Cheers,
    Destroyzer (@destroyzer).

    The 5530 is an older device than the C6. The 5800 wasnt exactly forgotten, but its normal for nokia phones to lose updates once the unit is about a year and a half to two years old. The 5530 is almost two years old already (it will turn two this august), so its not unusual that it wont receive updates anymore.
    Its not exactly Nokia's fault that you bought an outdated phone.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • Nokia N91 - 02 Network, a replacement and more thi...

    Had my Nokia N91 for 20 days now
    overall im very impressed
    music quality is Amazing
    but it keeps freezing, and is very very slow..
    and i have to keep rebooting it!
    also, when you program the shortcut keys to do different things, they sometimes work and sometimes dont!
    O2 Network are sending me a brand new one tomorrow morning...
    hopefully it will be better, and maybe, just maybe, may come with the latest firmware..
    if it doesnt, and comes with the **bleep**py 1.00 version, i am then going to drive from Oxford to Northampton to have the Firmware updated to Version 1.10
    i phoned them today and they said they would do it within 1 hour.. excellent!
    doesn anyone else know if this phone comes in a different colour? or do 02 just give out ones that are plain silver?
    anyone else having these issues?
    why cant Nokia sort out all these problems, BEFORE releasing it on the General Public!

    Hi
    Try resetting factory settings *#7370#, passcode 12345. It will set it back to what you get out of the box however it will erase your DRM activation keys for Live8! etc so back them up first by backing up the phone memory (not HDDD but phone ROM) in PC suite
    This gets rid of the slow SMS issue (for a while at least)
    music101

  • I love how people ask you to read this mail please help my iphone

    yes hello who read this mail
    My name is : chien , 27 years old living in Vietnam
    I have trouble on your iPhone
    4 months ago I have bought a iphone user 1 is stable but suddenly one
    morning after waking up not source it , I was holding out for effective
    treatment iphone software they run back to me and was up but having trouble
    activate the towel when it asks me to have to activate icloud account , I
    was surprised , I have to phone your number ask me to account , you do not
    know what to say about that account and said buy at a sales outlet iphone
    I came to the facility , but they did not open the account to icloud
    Here is one very urgent action , violating human morality , make money on
    all forms
    I have contacted the customer care number for assistance his country but
    did not come to the phone to call the other side
    I write this mail someone wishes to have one of these you can understand and help me talk to senior management to remove apple icloud on my computer
    I really wish all the ways you can help the generosity
    thank you
    serianumber : C3*******TWD
    thank you
    <Personal Information Edited by Host>

    ime : 01**********914
    serianumber : C3*******TWD
    <Personal Information Edited by Host>

  • Nokia N91 phone memory problem

    I have owned this Nokia N91 for a year and 9 months. Phone memory is a problem as i cannot recieve any messages. The message, not enough memory to recieve message(s), delete some data. I have taken absolutely everything off the phone memory except messages, contacts, and calender data, yet i still have something taking up 14 of my 15MB's of memory. What can i do as i can't recieve any messages. I have tried allocating messaging memory to the hard drive but i am presented with the same problem. Please help as i need to keep this phone working till May.

    19-Apr-2008 06:11 PM
    os2lover wrote:
    Hi,
    No the *#7370# doesn't affect your harddisk, only the phone memory.
    Best regards,
    Olivier Baum
    ohh thanks for this info... Im just curious, how do we format the hard drive? Thanks
    CeS
    "The best index to a person's character is how he treats people who can't do him any good, and how he treats people who can't fight back"

  • Nokia N91 SIP Configuration (problem)

    Hi all,
    As it ays in the subject, I own a nokia N91 handset and i'm having problems accessing SIP Settings.
    Basically when I click on SIP Settings, and view SIP providers. I cannot delete, edit, or add any settings at all! When I do select (for example), options - delete - delete confirmation (yes) The SIP profile doesn't delete.
    I have done a full factory reset on the phone (*#7370#), but still no luck

    19-Apr-2008 06:11 PM
    os2lover wrote:
    Hi,
    No the *#7370# doesn't affect your harddisk, only the phone memory.
    Best regards,
    Olivier Baum
    ohh thanks for this info... Im just curious, how do we format the hard drive? Thanks
    CeS
    "The best index to a person's character is how he treats people who can't do him any good, and how he treats people who can't fight back"

  • Nokia N91 crashes with SOFTAWARE UPDATER!!PLS HELP...

    Hello,
    I have this huge problem...I have a Nokia N91 ,for which I payed 500Euro and I just bought it for one week..I tried the The Nokia Software Updater and it all gone fine until the end ,when I got the message on the screen that the program lost the connection..and this is when the nightmare start...the phone crashed...now it only turning on and it staying on a white screen and it not doing nothing...not even turning OFF...I am very dissapointed about this,....I can`t belive that it is possible to releaase something that is ruining your phone...
    Can anyone have a solution for this???The phone is brought from out my country and I can`t ship it to waranty!!!!Please help!!!!!
    I just want my N91 back!!!

    Hi, reading from some other threads in this forum, could it be the update failed due to the phone not having enough charge?
    Try plugging it into the mains for an hour or to. Then try the soft format suggested above.
    completely remove all Nokia software from your PC, download and install the latest Nokia Updater, download and install the latest PC Suite for the N91. Now connect your Nokia to the PC via the USB cable, leaving it plugged into the mains.
    If that doesn't work that I have no idea and an engineer may be the only solution. Your phone is under warranty, but bear in mind this may have been voided by your attempting to update at home. Also, for such an expensive phone, I'd only trust genuine Nokia service centres with it.
    Hope this helps - may have an idea you've not tried yet.
    Hussein.
    Hussein Patwa
    PatwaNet
    Nokia 6630 on 3G (UK)
    Nokia 6610i - UNLOCKED! YAY!
    Currently looking for more cheap & new handsets - you never know when a spare can come in handy!

  • Nokia N91 and iSync 2.2

    i will be changing phone by Wednesday this week, from N90 to N91.
    any N91 users who can share their experiences with iSync 2.2?
    N90 is Symbian OS v8.1a (Symbian60 2nd Edition)
    N91 is Symbian OS v9.1 (Symbian60 3rd Edition)
    So modifying again the metaclasses.plist will not work since iSync 2.2 uses "family.com.nokia.serie60v2.3'
    I will also post if it works with or without modifying the .plist once i got my N91.

    Update 2:
    CONTACTS:
    As for the contacts, here's what i did:
    - Created a "Contacts' folder inside the "Others' folder of the Nokia
    Hard Drive;
    - Open "Address Book' (Mac) and one by one drag and drop each
    contact(s) to the created 'Contacts' folder.
    - After transferring all contacts, open Nokia N91 Contacts, Options,
    scroll to Copy, select 'From hard drive" and everything will be copied
    to Nokia's Contacts.
    **Finder will experience "Application not responding" at times.. Just wait for about 5mins or more and will go back to normal.
    **Never disconnect N91.
    The only thing i've noticed here is that the Mobile number is changed to as "Telephone' you can manually edit it..
    Easy but tidious way:
    Input contact individually in N91 and after go to Contacts, Options, Mark All, Option, Copy to hard drive, Choose "Yes' to "remove exixting contacts from hard drive' so there will be no duplicates. So next time you format the phone you can easily copy your contacts.
    Peter.. whats your firmware version?
    Please post any tips/comments/complaints here. Lets just wait for Apple to update iSync to work with the new NSeries..

  • PLEASE HELP - RE NOKIA N91!!!

    OK, I have a new Nokia N91...downloaded the software for the PC suite, connected the usb cable to the phone and put a (10 track) CD into my PC.
    I transfer this (10 track CD) to 'my collection)...then 'select all' before transfering it to my mobile....ALL OK SO FAR....the 10 tracks are now on my mobile.
    NEXT - repeat the same thing with a (8 track)cd but it SUPERSEEDS the first 8 tracks off the FIRST CD, leaving 10 tracks (8 new, 2 off the initial cd)...I realise this MUST be a simple error on my part (Im a technophobe!) but how do I add extra CDs to my phone??
    Thanks in advance - it just keeps saying 'do I want to overwrite the current track 1/2/3 etc'...even whne I select no, its still superseeds.
    Im left with a great mobile that I love but only one cd!!
    PLEASE HELP BEFORE I TOP MYSELF WITH THIS STRESS!!!
    MANY THANKS IN ADVANCE

    This is not the way it should work and I have not seen this type of problem before, so let's try t work this out.
    A few questions:
    Have you used the "get artist data" in Nokia Music Manager (that is part of PC Suite, so I assume you are using that software to move your music to the phone?)
    Have you selected the update music library in phone side after you have moved the music files to your phone ?

  • Plz HELP ME AND MY NOKIA N91 EMAIL

    Someone pls help me on setting up my nokia n91. Ive I have spent many hours on the phone to o2 that I can not recieve emails via another email account apart from an o2 one? I know this is strange as I have managed to send an email that has my aol address on it? But I can not recieve them still?
    I was then told I need to download pop3? and when checking for pop3 I see there are many different types? Can someone pls help me on this?
    Also I am pay and go but was told this does not matter by an o2 rep,then I was told it does and FINALLY I was told yes but they dont support it so if it does not work they wont help me?
    Is it just the case I wont use there email servers and so not spending money with them?
    Someone pls help me as its taken me a week to just get this far. If you can pin point what downloads I need and configuring it I should be fine.
    I want an aol email address on Nokia n91 and Im with o2
    Hope that helps someone and helps me!!
    Many thanks all

    Hi bluebirds
    Please read this post to see how email not supported on O2 PAYG but on pay monthly
    /discussions/board/message?board.id=messaging&;message.id=4353
    Happy to have helped forum in a small way with a Support Ratio = 37.0

Maybe you are looking for

  • Usage of dataGrid

    Hi, I am new to JSF. I need to add drop down(comboBox) in odc:dataGrid column. How can i do that? Is there any option to change the border color of dataGrid? Senthil

  • Changing Slide Order

    I have created a slideshow by simply flagging the key photos and using the created 'flagged' event as my show. This is for a talk so I don't want to automate the projection via the Slideshow software because the duration of each projection will chang

  • Cannot login from Windows iCloud control panel, but that not all...

    I set up my Apple Id and downloaded the Windows iCloud control panel, but when I try to sign in from my PCI get this message: "You can't sign in because of a server error." But when I check the status of icloud everything is operational. But if I go

  • HT5085 I need to delete a movie that isn't downloaded all the way on my 5s

    I have an iPhone 5s I've got a movie that I have downloaded but not all the way and I want to delete it I've swiped it left and right I've held it down still nothing please help

  • Ac-3 decode with direct sound making p

    hello. When I playback movies with ac-3 sound using ac3filter with direct sound as audio render, then it gives me strange noices and po ps. If I pause and play then the audio is as it should be. Tried with Media Player Classic, BSplayer, windows medi