Hi every one help needed ensoniq audiopci card

trying to configure my sound card anyhelp pls

I achieved this goal, and it works like this:
<ol>
<li>install solaris
<li>try to find technical information for your pci sound card hardware
<li>read linux and xBSD sound card driver sources
<li>write a solaris driver...
</ol>
<pre>:-)</pre>
In case you have a soundblaster 16PCI or PCI128 card, you can
skip steps 2. - 4.

Similar Messages

  • Urgent Help Needed: ATI Graphics Card install

    Hello All.... I am in need of some urgent help..
    I am trying to install a new graphics card - the ATI Radeon 9600 SE. I currently have a Voodoo3 card. I followed all of the instructions step by step, but when I plug the monitor to the Radeon card and boot up, I do not get any display. I have tried everything I can think of, and yet - I am sure the card is secured in place and the monitor is plug into the card.
    Can anyone help me on this one.. ATI's support is, well - lacking..
    Here is some info on my pc:
    MCI motherboard
    AMD Athlon(tm) XP 2000+ 1.7 GHz
    768 MB
    AMIINT - 10 Version 1.00, 07/10/02
    Could the problem be with switching from a regular PCI card to an AGP card???

    Quote
    Originally posted by southmike
    okay i'll bite what are omega drivers,
    how are they different from cat4.2 drivers
    i was suprised that the voodoo 3 would work in a AMD64 mobo...
    whoops....just read the rest of the post :lol:
    BTW is there an external power connector that needs to be plugged in?

  • Help Needed - 2 graphics cards

    I just bought a Radeon ATI 1900 G5 edition online for my PowerMac G5. I already have a GeForce 7800GT as the primary card but I thought the new card would double the performance. I also thought installation would be as simple as popping in the new card. Obviously I should've done my homework a little better.
    Each card seems to need the extra power connection from the motherboard, but as far as I can tell, there is only one power cord.
    What to do?
    I run FCP5, Photoshop, and AfterEffects and I want as much graphics horse-power as the G5 will give me.
    Is it possible to have both of these cards installed?
    Advisable?
    If so, how do I do it? Can one of them run without the external power cord? I assume I would use slots 1 and 3?
    Please shed some light for me. I feel silly for having bought the card as it seems it may not help my situation. The customer service guy gave me the impression it was going to work fine.
    Anyway, please give me some feedback soon if possible as I'm anxious to try out the new set-up.
    Many thanks
    S

    So you're saying that two graphics cards would in no
    way boost performance in graphics apps like PS, AE,
    or FCP?
    Some PCs use multiple graphics cards with SLI to increase performance, but Macs do not support this.
    That the only reason people use multiple
    cards is to have many monitors?
    Correct (at least for a Mac).
    I thought the extra VRAM would help with my rendering
    and real-time effects, no?
    The extra VRAM is on a different card, and without SLI to connect the cards, there is no way it can be used.
    Ever heard of anyone somehow using two cards?
    Not two high power cards,
    Do they make a splitter for the power connection?
    No. You would have to make your own. It wouldn't be too hard to splice two power cables.
    Or is it risky to have two cards running for power reasons?
    The total power consumption would probably be OK, but only slot 1 is rated for high power cards, and the auxiliary power was only planned for one card
    Or could the NVIDIA run without the power connection from slot 3?
    No. It can't even do that in slot 1, which provides a lot more power than slot 3.
    I have no other PCI cards in there so I would run two
    if there was any benefit to be had.
    With no other cards, there is probably enough power, but it is spread over the low power slots 2, 3, and 4.
    But I am only using two 23" monitors so maybe there isn't.
    The extra card would just be using power and producing heat.

  • Help - Need OpenGL Video Card for G4 with ADC

    OK, I've got a G4 with 1.8 GHz Dual Processors. I just upgraded from FCP 5.1 to FCP 6.0 and it tells me that FCP 6.0 doesn't like my video card because it "doesn't support OpenGL." So I need a new video card - problem is, my G4 Quicksilver utilizes an Apple Flat Screen with ADC connector. I really like the Studio Display and don't want to change it. Does anyone know of a video card with "OpenGL" (that will work with FCP 6.0) that also has a ADC connector????
    Thanks, Gilbert

    As far as I'm aware, the Radeon 9000 is ATI's most powerful card with an ADC connector and the GeForce4 Titanium is nVidia's, although I don't think either supports Tiger's Core Image etc.
    The following utility can monitor VRAM usage, which may help decide whether the 128MB version of the 9000 would be noticeably better:
    http://www.macupdate.com/info.php/id/15566

  • Could every one help me with this? Thanks

    2. a. Write a program that prompts a professor to input grades for five different courses for 10 students. Prompt the professor to enter one grade at a time using the prompt �Enter grades for student #1� and �Enter grade #1�. Verify that the professor enter only A, B, C, D, or F. Use variables for the student numbers (1 through 10) and grade numbers (1 through 5). The class name is GradePoint.
    b. Modify the GradePoint program so that it calculates the grade point average (GPA) for each student. A student receives four grade points for an A, three grade points for a B, two grade points for a C, one grade point for a D, and zero grade point for an F. Store the grades and points in parallel arrays. Search the arrays to determine the points for the grade. Store the GPA for each student in another array. (Hint: Copy the GPA for each student to a different array by initializing the new array with GPAs from the other array.)
    c. Display the GPA scores from each of the two GPA arrays to verify that the GPAs were copied correctly. Identify which array the scores are from.

    I got A. but I don't know how to do B and C
    could everyone help me how to do B and C?
    here are my code in A.
    I hope I am doing right:
    here are my code in A.
    I hope I am doing right:
    public class GradePoint
    public static void main(String[] args) throws Exception
    char Grade;
    System.out.println("Enter grades for student #1");
    System.out.println("Enter A, B, C, D, or F");     
    System.out.println("\nEnter grades #1");
    Grade =(char)System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #2");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #2");
         Grade =(char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #3");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #3");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #4");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #4");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #5");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #5");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #6");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #6");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #7");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #7");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #8");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #8");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #9");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #9");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #10");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #10");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    b. Modify the GradePoint program so that it calculates the grade point average (GPA) for each student. A student receives four grade points for an A, three grade points for a B, two grade points for a C, one grade point for a D, and zero grade point for an F. Store the grades and points in parallel arrays. Search the arrays to determine the points for the grade. Store the GPA for each student in another array. (Hint: Copy the GPA for each student to a different array by initializing the new array with GPAs from the other array.)
    c. Display the GPA scores from each of the two GPA arrays to verify that the GPAs were copied correctly. Identify which array the scores are from.

  • Help needed with graphics cards....

    I'm looking to buy final cut studio 2 for my G5 Dual 1.8, i was recommended the AGP X800 Radeon graphics card, which is great!.... but. Getting hold of one is another story, as from what I've been told the company has been out of stock for 8 months, and it's really the only option in upgrading my machine.
    So... I'm guessing I only have one option in terms of being able to use final cut studio, and that's to buy a more up to date machine, a mac pro. Which i don't mind doing. But will the graphics card supplied, ie a 256MB NVIDIA GeForce 7300 GT, be enough for video work? i wouldnt be running any games, nor would I be dealing with colour, as i only shoot in black and white, it's more for motion. If it wouldn't suffice, can you recommend a decent graphics card for a Dual Core Intel Xeon 2.66GHz mac pro, which is probably what i'd go for.
    Thanks!
    Phil

    For Final Cut Studio yu'd be mad not to upgrade to the ATi X1900 XT. The standard Nvidia 7300 GT just won't cut it.

  • Every one..help required ..

    hello every one i need help on urgent basis.
    can someone tell me how to store images and a few video clips and then retrieve them in plsql.?
    i have to make a small program in plsql in which i can store images and video clips and then retrieve them.
    plz help me..
    waiting for replies from all the users plz
    regards
    niak

    well i m not asking u or any one to do the project
    for me ..So where is problem in doing your research then?
    all i asked was for help.You've received some replies that should get you started on the topic.
    and i dont think
    u people should have segregations that students
    seeking help for their projects must not be helped..We obviously seem to have different views on the term "help". I do get the impression that you only seem to be helped, if (some) work is done for you, like researching and writing code. My definition (in this area) is: lead the person to the information and give some advice, but don't do the whole work, otherwise nothing is learned from that case, except for "how to be an efficient free loader". And we both don't want that to happen, right?
    besides its a forum and everyone should be helped
    here.. You've been given some hints and advise. Not satisfied with that? Maybe you are in the wrong forum, this one is on voluntary basis, nobody is obliged to help, most people do in the way as they see fit.
    if i wouldnt have told u that its my project then u
    wouldnt have know it..My answer then wouldn't have been any different. Start reading documention, read through this forum's threads, use other sources and get your project on the road. How do you thing any of use has to cope with his/her obligations? By letting someone else doing the job?
    and u wouldnt have been bully ..If I wanted to bully you, I'd just wrote: Please go away, you're obviously in the wrong forum. I think, you're disappointed because you haven't received the whole code including installation procedure and documentation. Well, some people here could give you that, but they usually charge a fee for that. If it's just sample code and concepts you want, learn how to use search engines and read the (in my opinion) excellent documentation. You claim you're a student, so what is this task different from all the other classes you have to attend?
    i dont need help from such bossy and rude people like
    u..Believe what you want, it's your choice.
    u dont wana help then dont.. but u dont have any
    right to be bossy ..Tell what, since this is an open forum, I think I'll write comments as I see fit, if you can't live with that, the web is quite a vast area, you should be able to find a place, where those "bossy and rude people" like me won't show up.
    dont think that each post here is for u to answer..I'm certainly not under this impression.
    first get proper manners then think of ur self of
    something..Well, you could be right, maybe I do have a problem in that area - on the other hand, maybe I'm just talking to someone that is dishing out unfounded accusations because he/she can't come up with any valid argument against my suggestions.
    as knowledge is useless if u dont have any manners
    which u dont have..I would take your critique a bit more seriously if it didn't came from a person who showed that his/her strategy to solve a critical position is to ask other people doing the work including research. But what do I know ...
    C.

  • I am using windows 7 PC and every time i try update my Itune I am having a server error. Can some one help me?

    I am using a windows 7 PC. Every time I try to update my Itune I am having a server error and I am not able to log in on my Icloud. I tried a network test a. below is the result:
    Microsoft Windows 7 Business Edition Service Pack 1 (Build 7601)
    Sony Corporation VPCX11S1E
    iTunes 10.6.1.7
    QuickTime 7.7.1
    FairPlay 1.14.37
    Apple Application Support 2.1.7
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.1.1.4
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 0014AEDC02A92728
    Current user is not an administrator.
    The current local date and time is 2012-05-22 20:14:28.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Intel(R) Graphics Media Accelerator 500
    **** External Plug-ins Information ****
    No external plug-ins installed.
    The drive E: HUAWEI Mass Storage Rev 2.31 is a USB 1 device.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:        {4C73E5E8-064C-400E-9850-AB0485F639A2}
    Description:            Microsoft Virtual WiFi Miniport Adapter
    IP Address:             0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:      Yes
    DHCP Server:        
    Lease Obtained:     Thu Jan 01 01:00:00 1970
    Lease Expires:       Thu Jan 01 01:00:00 1970
    DNS Servers:        
    Adapter Name:        {DCE376E2-098D-4857-BF60-DBC90172CBA3}
    Description:            HUAWEI Mobile Connect - 3G Network Card
    IP Address:             10.162.117.8
    Subnet Mask:          255.255.255.240
    Default Gateway:    10.162.117.1
    DHCP Enabled:      No
    DHCP Server:        
    Lease Obtained:     Thu Jan 01 01:00:00 1970
    Lease Expires:       Thu Jan 01 01:00:00 1970
    DNS Servers:         10.148.128.18
                                    10.148.128.26
    Adapter Name:        {226D8A54-B7DA-4F1F-8EAB-614C5F54FABE}
    Description:            Qualcomm Gobi 2000 HS-USB Mobile Broadband Device 9225
    IP Address:             0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:      No
    DHCP Server:        
    Lease Obtained:     Thu Jan 01 01:00:00 1970
    Lease Expires:       Thu Jan 01 01:00:00 1970
    DNS Servers:        
    Adapter Name:        {918B9F90-A145-4FD5-8150-E330DF9E74A1}
    Description:            Bluetooth Device (Personal Area Network) #2
    IP Address:             0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:      Yes
    DHCP Server:        
    Lease Obtained:     Thu Jan 01 01:00:00 1970
    Lease Expires:       Thu Jan 01 01:00:00 1970
    DNS Servers:        
    Adapter Name:        {87949730-0CE0-4483-A8AA-4FBC19A613D9}
    Description:            Marvell Yukon 88E8057 PCI-E Gigabit Ethernet Controller
    IP Address:             0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:      Yes
    DHCP Server:        
    Lease Obtained:     Thu Jan 01 01:00:00 1970
    Lease Expires:       Thu Jan 01 01:00:00 1970
    DNS Servers:        
    Adapter Name:        {1678E6C4-0A8D-49F9-B86A-30133B9C2AEB}
    Description:            Qualcomm Atheros AR9285 Wireless Network Adapter
    IP Address:             0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:      Yes
    DHCP Server:        
    Lease Obtained:     Thu Jan 01 01:00:00 1970
    Lease Expires:       Thu Jan 01 01:00:00 1970
    DNS Servers:        
    Active Connection: LAN Connection
    Connected:             Yes
    Online:                    Yes
    Using Modem:        No
    Using LAN:             Yes
    Using Proxy:           No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was unsuccessful.
    The network connection timed out.
    Basic connection to the store failed.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    The network connection timed out.
    Last successful iTunes Store access was 2012-04-05 00:00:28.
    **** Device Connectivity Tests ****
    iPodService 10.6.1.7 is currently running.
    iTunesHelper 10.6.1.7 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) SCH Family USB Universal Host Controller - 8114. Device is working properly.
    Intel(R) SCH Family USB Universal Host Controller - 8115. Device is working properly.
    Intel(R) SCH Family USB Universal Host Controller - 8116. Device is working properly.
    Intel(R) SCH Family USB2 Enhanced Host Controller - 8117. Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    Most Recent Devices Not Currently Connected:
    iPod touch (3rd generation) running firmware version 3.1.3
    Serial Number:       9C01639A6K2
    iPhone 4S running firmware version 5.1
    Serial Number:       DNQHF0ENDTD7
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.
    Can any one help me?
    Regards
    Aderito
    <Email Edited By Host>

    In the course of your troubleshooting to date, have you worked through the following document?
    Apple software on Windows: May see performance issues and blank iTunes Store

  • Help need my mac pro for school..it has Grey screen..spinning wheel...repaid disk ok...repair disk permission all repaired but one warning...

    Help need my mac pro for school..it has Grey screen..spinning wheel...
    I think I have  mountain lion OS X....I have done I think almost every suggestion I've seen in discussion boards.
    Boot in recovery repaired disk...ok...repair disk permission...all repaired but one warning...I've tried to reinstall lion (without losing data) and it Got all the way to one minute to be done and then the time change back two hours and kept doing this all night long.  I haven't done a back up due to no external for time machine.
    I hope someone can please help me I've been going crazy for a week now trying to figure this out.  I use my computer for school and I'm currently very behind from in my school work  thank you
    Also I've checked my available space  424.91 free of 750 gigs....disk is verified

    Welcome to the Apple Support Communities
    Try holding the Shift key while your Mac is starting to start into safe mode. Then, after starting in safe mode, open Finder, select Go menu (on the menu bar) > Go to Folder, and type /Library/StartupItems. Then, empty this folder and restart the Mac.
    If your Mac starts after doing this, it was a problem with a third-party app that starts automatically when you turn on the computer. It won't start automatically anymore after doing that

  • Help needed with my new GTX 770 4GB OC card settings

    Hello everyone,
    I'm new to this forum so excuse me if this subject already been bought up,
    i have recently got the msi twin frozr gtx 770 4gb oc edition,and I'm not happy at all , as the box did not come with a manual on how to get the oc mode active etc,
    the software cd that came with it has a gaming app + msi afterburner so i have installed everything, and i open the gaming app, it gives me a silent mode + gameing mode + oc mode, so i click oc mode for example and all it gives me is 1254MHz  so i run afterburner i see that my temps reaches 50c + and i try to control the fan speed of my card but the gaming mode doesn't allow it to adjust to 100 % fan speed , anyway enough said let me go to the main part, i have got the kombustor running and done some tests, i found out that i have been getting low fps with the 1254MHz and my voltage clock is 1.2v ... i used to have a gtx560ti and the gtx770 fps is the same as my old card    this is jokes , now i wished i didn't even buy the gtx770 its expensive for nothing,
    and the thing that makes me  is that msi didn't put any info manual in the box apart of how to install your graphics on the motherboard,
    by the way my PC specs are:
    I7 4770K @ 4ghz
    16gb corsair ram @ 1600
    TX850 corsair power supply
    i have the latest graphics drivers installed , got it from nvidia website (327.23) for the gtx770
    by the way the kombuster score i was getting was 190 fps
    with physx on, and no anti aliasing,
    here's my picture of the clocks I'm getting currently
    could anyone out there that have the same card is mine confirm that my card is normal ?
    or is there something i need to download or get to make my fps stable as it should be for this card ?
    oh and i forgot to tell you that my friend has also recently got this card and is also stuck,
    hes got lower mhz than mine and lower voltages like 1.8v or something 
      I'm sure that theres something that we haven't done to get the best out of this graphics card
    its one of the best graphics card out there,
    anyway enough of writing up an essay    waiting for someone to help me out
    many thanks in advance
    Regards

    the memory clock is right as its GDDR (Graphics Double Data Rate) so it has to be doubled making it 3506 x 2 (3506+3506) total of 7012Mhz (advertised GDDR5 7010MHz Memory)
    as for you low FPS its more then likely a driver problem as nearly all GTX 770's are having issues and reporting low FPS you could try other drivers from Nvidia's like the lower ones or the newer Beta Driver 331.40 and see if it makes any difference!

  • TS1292 I rubbed the iTunes gift card back off, I was unable to read the serial number as part of it came off, can any one help.

    I rubbed the iTunes gift card back off, I was unable to read the serial number as part of it came off, can any one help.

    If the page that you posted from doesn't help then you will need to try contacting iTunes support (you will need to give them as much of the serial number and activation code from the card as you can read) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes

  • I have Iconia Tab A500, running 3.0, need help updating using microsd card, got Acer update download

    I have Iconia Tab A500 running 3.0, need help updating, I downloaded all updaes list in the acer supprt, all versions, 3.0, 3.1, 3.2, and 4.something, I read on the acer support somewhere I can use a microsd card to update my device, because acer no longer provides automatically, when i try it says "poor network connection, move to anthoer location.", Do I need to update all the listed updates, or can i only update, using the 4. 0? to get the last known update. I also downloaded, "Documents, Apllications, Drivers, Patches, and O.S..... How do i intsall all these updates, I think am running the very lowest version available, Please Help me... Thank you in advance.

    the update listed on the acer website, that mentions the a500 update is 'kernal source code (for Android 4.0 Ice Cream Sandwich) it's 96.7MB's released 2012/05/08' is that the right one i need? There is also a list of 3 O.S updates, released in 2014/09/05, 391.5MB's, 394.3MB's, and 391.5MB's large, what are those updates, I clicked the model and followed the directions that the acer website asks, and i ended with a list of update released in 2014/09/05, and a Document update released in 2014/12/17, 112.7KB's large,  list of updates reased in 2014/.... and in the Android 4.0 culumn, there is an update that says O.S update released in 2014/09/05, 434.2MB's large, and a Patch Update, that was released in 2013/03/21, what are these updates? listedin the aver website... http://www.acer.ca/ac/en/CA/content/drivers 

  • Help needed in Finding Download location for Sun One Portal 7

    Hi,
    help needed for finding download location for Sun ONE Portal 7. I tried to find in Oracle Download page ,
    http://www.oracle.com/us/sun/sun-products-map-075562.html, But unable to find.
    Please share the link for download location.
    I am totally new in Sun ONE Portal.
    Thanks,
    Edited by: 945439 on Oct 5, 2012 3:41 AM

    try edelivery.oracle.com under sun products.

  • Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verif

    Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verifying and repairing it but had no luck. I also tried mounting and unmounting it but still no solution. Anyone to help please?

    Looks bad. I would strongly advise backing up the stuff on the other two partitions as soon as possible in case the rest of the drive goes wrong.
    Beyond that, Disk Utility has limited abilities to repair disks, DiskWarrior uses a different approach and might, emphasis might be more successful. It has certainly done the job for me in the past when Disk Utility could not.
    See http://www.alsoft.com/diskwarrior/

  • Help needed please.. how do I remove my credit card from itunes? just discovered over $450 of charges when I looked at my email... Kids had no clue they were using our money and not their gift cards

    Help needed please.... I just discovered over $450 charges to my credit card from Itunes. The kids had no idea they were using our credit card and not their itunes gift cards and 4 year old just clicks on anything! I didnt save my credit card details so am a bit miffed at this... I cant find anywhere in itunes to remove it. Edit.. but not remove. Editing does not remove it.. HELP

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact
    Accepted forms of payment  >  http://support.apple.com/kb/HT5552
    Changing Account Information  >  http://support.apple.com/kb/HT1918

Maybe you are looking for

  • Sorting a Play List

    I decided to sort my playlist by Album, because a couple of albums had multiple artist names (Lionel Ritchie, Lionel Ritchie & The Commodores, Commodores, for example). Then, I noticed that two albums had the title "Greatest Hits" (artists: Electric

  • Wrong Database Access Account (Project Server 2013)

    Hi, After "Connect to a server farm – Create a new server farm"... In the Specify Configuration Database Setting page of the SharePoint Products Configuration Wizard, in the Specify Database Access Account section, I entered a wrong User Name. How an

  • Would like to return to opening session window after inactivity for confidentilaty purposes - need to access with a password. tks

    In order to protect emails and documents, I would like it so that after a few minutes of inactivity, the screen goes back to the opening session screen which asks you for a password to continue.  I have a teenager and would like to prevent her from l

  • Automactic Selection of production Version

    Hi. I have created a material "A" I maintained in material master's MRP4 view selection method "2" I have created two production version with same validity period & same lot size "0001" & "0002" I maintained in order type dependent parameter's master

  • Snow Leopard and Sharp Photocopier - please help

    Hi There. after installing snow leopard, i can no longer print to our Sharp MX6120N Color Photocopier from our server. Each Program (pages,word,illustrator,etc..) crashes when it attempts to print.. I tried reloading driver with no luck.. Nobody at S