What kind of speed increase could I expect if exch...

Hi,
I was wondering if someone could help me with this.
We are on a very long ADSLMax line, however we get very good speeds because I removed the bellwire.
My question is I was wondering if someone would be able to tell me what speed I would expect if the exchange was upgraded to 21CN/ADSL2+ etc.
My exchange is this one: http://www.samknows.com/broadband/exchange/EAELV
Here is a speedtest I have done:
1. Best Effort Test: -provides background information.
Download Speed
2.24 Mbps
0 Mbps 7.15 Mbps
Max Achievable Speed
Download speed achieved during the test was - 2.24 Mbps
For your connection, the acceptable range of speeds is 0.6 Mbps-7.15 Mbps.
Additional Information:
Your DSL Connection Rate :6.18 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
IP Profile for your line is - 5 Mbps
And here are my stats from my NETGEAR router:
ADSL Link       Downstream           Upstream
Connection Speed 6176 kbps 448 kbps
Line Attenuation 38.0 db 22.0 db
Noise Margin 6.1 db 24.0 db
Also wondering if I am getting the fastest speed possible on the line according to these stats. 
Hope someone can help,
Many Thanks,
Dominic. 

as I said if you check the link I posted and enter your 38 attenuation then you will see it gives an average of about 7mb - but that is an average as some might be higher and some lower depending on line quality and connection
If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Similar Messages

  • What type of compile time speed increase should I expect with the latest build (Oct/2012) ?

    What time of speed improvements should I be seeing if any at all with the latest build?

    What time of speed improvements should I be seeing if any at all with the latest build?

  • What kind of speeds (real world?) should I be expecting on  new iPhone 3g?

    I just got a 3g iPhone. I am in San Francisco. I am getting 5 bars. I'm using testmyiphone.com as a speed test and I'm getting between 117kbps and 230kbps when I'm lucky.
    I was told by AT&T that I should be getting something closer to 600-1400kbps.
    I don't know whether to make an issue of this. And yes, I tested at peak times, at 2 am, at 6 am, weekends, weekdays, etc...

    I'm getting the exact same results. Initially I thought the servers at testmyiphone.com were just overloaded, but my T-Mobile Curve managed to knock out 1.19M from the very same website just a few minutes later.
    Doesn't matter where I am or the time I try...My 3G's speed STINKS!

  • What kind of picture quality can I expect from a Mini DVI adapter to Scart?

    I currently have my iMac connected to my tv via the Apple Mini DVI adapter and a composite video cable. There are two problems with this, one is the poor picture quality in general, the other is that the tv screen is not filled by the image from the iMac, i.e. there are black spaces on the left and the right of the screen.
    So my question is, if I used S-Video to Scart, would it kill the problem with the black borders when viewing Front Row etc..? Also, would there be a significant increase in general picture quality?

    Yes, if you can get an s-video cable and plug that into the SCART adapter, that would be better than plugging in composite video.
    Clearly, having an SCART connection is not going to "improve" the video going in, you're going to be limited by the lowest quality connection. An s-video connection will provide a higher (but probably not a lot) quality signal than composite video.
    -Doug

  • What kind of error it could be?

    init:
    deps-jar:
    Compiling 1 source file to C:\Documents and Settings\2z7\StrokeFill\build\classes
    C:\Documents and Settings\2z7\StrokeFill\src\ParseFile.java:82: incompatible types
    found   : int[]
    required: int
                       return  xy;
    1 error
    BUILD FAILED (total time: 0 seconds)
    import java.io.*;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.LinkedList;
    import java.util.ListIterator;
    import java.util.regex.*;
    import java.util.StringTokenizer;
    public class ParseFile
        private String Filename="newt3.newtmal.ps";
        private int x1, y1, x2, y2; // to plot lines from (x1,y1) to (x2,y2)
        private int xy[]= new int[205];
         public  int setxy()
              // parse a file to read line by line;           
                    File file = new File(Filename);
                           try
                                   BufferedReader br = new
                                            BufferedReader(new FileReader(Filename));
                                    String line;
                                    String s1 = "0.5 setlinewidth 0.0 setgray";
                                    String s2 = "stroke clear";
                                    String s3 = "closepath fill";
                                    String[] parts;
                                     while ((line = br.readLine()) != null )
                                        if (line.equals(s1))
                                                List<Integer> xList = new ArrayList<Integer>();
                                                List<Integer> yList = new ArrayList<Integer>();
                                                while ((line = br.readLine()) != null && !line.equals(s2))
                                                   parts = line.split(" ");
                                                    xList.add(Integer.parseInt(parts[0]));
                                                    yList.add(Integer.parseInt(parts[1]));
                                                Integer[] x = xList.toArray(new Integer[xList.size()]);
                                                Integer[] y = yList.toArray(new Integer[yList.size()]);
                                                // Plotting here using x and y arrays
                                                int m = x.length;
                                                for (int i = 0; i<m-1;i++)
                                                   xy[i]   = x.intValue();
    xy[i+m] = y[i].intValue();
    // to return these values to class LinesRectsCirclesJPanel
    // return xy;
    else if (line.split(" ").length == 8)
    List<Integer> xList = new ArrayList<Integer>();
    List<Integer> yList = new ArrayList<Integer>();
    while ((line = br.readLine()) != null && !line.equals(s2))
    parts = line.split(" ");
    xList.add(Integer.parseInt(parts[0]));
    yList.add(Integer.parseInt(parts[1]));
    Integer[] x = xList.toArray(new Integer[xList.size()]);
    Integer[] y = yList.toArray(new Integer[yList.size()]);
    // Plotting here using x and y arrays
    int m = x.length;
    xy[0] = Integer.parseInt(parts[5]);
    xy[m+1] = Integer.parseInt(parts[6]);
    for (int i = 0; i<m-1;i++)
    xy[i+1] = x[i].intValue();
    xy[i+m+1] = y[i].intValue();
    // to return these values to class LinesRectsCirclesJPanel
    catch (Exception exception) {
    exception.printStackTrace();
    return xy;

    of course it's wrong, how correct?Please just answer my question!!!
    Again: do you know the difference between an array of int's and a single int?
    And I know you copied the compiler error on the forum, but did you read it? If so, what did you not understand about it?

  • What Performance increase should I expect from 3000+ to 3400+

    My sister is talking about upgrading her Machine, a PIII 1Ghz Machine. I told her All she would need is a new mobo/CPU an mem. I am thinking of perhaps buying a 3400+ and keeping it and setting her machine with my 3000+. What kind of percenteage increase should I see going to the 3400+? how about the 3700+? The 3700+ is a little pricey but if I can squeeze it by good, but most likely will be a 3400+
    Jorge

    This gives you something to benchmark against.
    3dmark 01 20841
    3dmark 03 6193
    Hope that helps.

  • What kind of approach for new XML-based clients

    Hi.
    Our firm is using Oracle-technology everywhere, and now we would
    like to find out what kind of XML-based technology would suit us
    best for a new generation of our products.
    Our products are now using old Forms 3-clients and we're doing a
    research on replacing this technology with Internet-based
    clients. Java-clients are one option, but now we'd really like
    to know about thin-clients which wouldn't have much code run on
    the server. We have already done extranet-clients with OAS
    PL/SQL-cartridges and have found out that HTML-clients require
    much work and can't have too much logic on them.
    So, we have already OAS running on Oracle 8.0.5.1.0 -server and
    would like to know what kind of XML-strategy would be a
    reasonable solution. I know about these tools: XML Parser for
    xx, XML SQL Utility for Java, XSQL Servlet.
    -But what would be a reasonable combination of these and what
    kind of thin-client could we use? XSL?
    -What kind of development tools could we use for clients (or do
    we have to use text-editors)?
    -Which of these tools require Oracle 8i and is it stupid to even
    think about XML-based applications without Oracle 8i?
    Thanks,
    Perttu Auramo, Network Banking Systems Oy
    null

    NO. Have you taken a look at the specs page for Mac Pro?
    Or when you go to OWC for Mac Pro Memory.
    http://eshop.macsales.com/shop/memory/Mac-Pro-Memory
    2GB modules are better, especially if you need more than 4GB, but you want to have 4 DIMMs, 4 x 2GB or 4 x 1GB.
    http://docs.info.apple.com/article.html?artnum=304492
    TechWorks:
    http://www.shopatbuffalotech.com/cart/product.php?productid=16655&cat=42077&page =1

  • New MBP i5 coming, what kind of improvement to expect from old MBP?

    i got a 15" MBP in very late '07, 2.33 ghz core2duo, 2gb memory, 4m l2 cache, was a solid machine when i got it, now passing on to my sons to replace a nearly dead macbook...
    i've ordered a 2010 mbp 15" 2.53ghz i5 with the high res antiglare, kept the drive at 5400rpm and not the fancy solid state (too expensive, would rather have the high res screen, and going from 5400 to 7200 on platters didn't seem dramatic enough)
    in terms of using massive photo archives in iphoto, dvd creation in idvd, imovie along with all of the usual (lots of mail.app, tons of word/excel from msft), what kind of performance leap do you really think i can expect? will it be as dramatic as that 50-100 percent people imagine? or just "a lot better" - i know that it will look better because of the high res, i'm thinking more about app launch times, online video viewing (many tabs at once etc) and using photo/video intensive apps more...
    also running windows 7 in a parallels vm so hoping for even more speed...
    all thoughts welcome...

    Read this article and bookmark this site and macworld and macnn.com and read them regularly.
    As well as Appleinsider.com
    http://www.pcmag.com/article2/0,2817,2362644,00.asp

  • What kind of longevity can I expect from the SSD in a new MacBook Pro with Retina Display?

    Hi all,
    I recently ordered a new MacBook Pro with the Retina Display. This will be both my first computer and my first Mac that uses a SSD as the primary storage device. As the title of this post suggests, what I would like to know is what sort of lifespan/longevity can I expect to get out of it? My current MacBook Pro was manufactured in 2007 and has a stock 160GB Fujitsu hard drive that has been fantastic for me over the past 4-5 years. It continues to run like a champ, and I would hope that a brand new SSD would be able to last at least that long. Given that the new retina MBPs cannot be upgraded or (easily) user-serviced, I am somewhat curious to know whether or not Apple's new proprietary SSD modules will give out/slow to a crawl before/after my new machine becomes completely obsolete. I have been searching for articles published within the past few months on whether or not the current crop of SSDs on the market are more reliable than those introduced a year or two ago, but alas, I haven't had much luck. Perhaps it is still too early to tell?
    I found a few discussion threads on here somewhere where some users indicated that their original MacBook Airs, or other SSD-equipped MacBooks, were still performing quite well and responsively after a few years of use. Can anyone substantiate this for me? How long have you been using your SSD(s) in your Mac(s), and do you think the newer models will be able to last several years? I would greatly appreciate any insight.

    ARealMac(PPC)User wrote:
    ...I found a few discussion threads on here somewhere where some users indicated that their original MacBook Airs, or other SSD-equipped MacBooks, were still performing quite well and responsively after a few years of use. Can anyone substantiate this for me? How long have you been using your SSD(s) in your Mac(s), and do you think the newer models will be able to last several years? I would greatly appreciate any insight.
    While I think your concern is legitimate (it was mine too), I think to some extent, how long they last will be up to you. The individual cells in the flash media in an SSD have limited life spans, and SSD controllers have a variety of techniques to spread that wear around evenly (wear leveling). That wear is exacerbated by the controller having to erase a whole block of data when even just one page needs to be changed, and if not all the data in the block is still valid, more data than necessary gets moved (write amplification). To provide some extra room for all this reshuffling of data, SSD manufacturers build in extra space that's inaccessible to the user (over-provisioning), but it typically runs about 7%. (This is a good discussion of the inner workings of all this)
    If you stuff your SSD full of files, so that there's very little room to do all this rearranging, I think you'll experience the slowdown you're concerned about. TRIM, which Apple's SSD's support, will help, but you can too. Allow plenty of free space on your SSD and perhaps partition it so that there is free space outside the partition (check this out to see what a difference it can make). You can't use it but the controller can as an extension of the built-in over-provisioning.
    You also mention that you "will most likely use it to record several tracks and store my growing library of songs and videos." Why not instead use an external SSD connected via USB 3.0 for storage? They're relatively cheap, very fast, and keep the space on your internal working drive free. A BootCamp partition would also take up space, so you might consider using Windows in a Virtual Machine instead. VMware Fusion or Parallels would be installed on the internal SSD but the virtual machine files could  go on the external.
    In any case, your data is more important than your SSD, so back up, back up, back up.

  • I have the MacBook Pro (retina, 13 inch, Mid 2014) Memoria 8GB 1600 MHz DDR3 and I want to increase the memory. What kind of memory do I have to buy?

    I have the MacBook Pro (retina, 13 inch, Mid 2014) Memoria 8GB 1600 MHz DDR3 and I want to increase the memory. What kind of memory do I have to buy?

    The RAM in the retina model can not be upgraded.

  • I have installed FCPX on my iMac (mid 2007) with a video ATI Radeon HD 2600 Pro 256 MB. Tis does not meet the minimum requirements. It seems to be ok but what kind of problems can I expect ?

    I have installed FCPX on my iMac (mid 2007) with a video ATI Radeon HD 2600 Pro 256 MB. This does not meet the minimum requirements. It seems to be ok but what kind of problems can I expect ?

    Luis Sequeira1 wrote:
    I have run things that are unsupported too (like 10.3 Panther on a Wallstreet Powerbook, anyone remember those? )
    Hey Luis. I not only remember…I still have mine (OS 9)!  Works perfectly well…for some things; just need to be selective about what I ask it to do. (Also have its big brother Pismo running Tiger, which is still an extremely competent machine.) When I take them out of their cases, I'm still amazed at the G3's build quality.
    Russ

  • What kind of thermal grease for CPU?

    Hi everyone,
    I dismantled my iMac G4 17" 1.25Ghz in order to change the DVD inside. And here I made the mistake: it was so dusty inside (I bought it second hand from a chain-smoker) that I decided to clean it. In the process, the thermal pipe got moved. So I tried to move it back into place and realized there were pins to align it. Don't ask how, but the metal clip that holds the double-pipe onto the CPU unclipped itself. So the processor was all visible. I decided to clean off the grease on it and apply thermal paste (arcticsilver 5) instead of whatever was there. And now I think it was the wrong stuff: the machine works but as soon as the workload increases, it freezes. If it sits there, idle, it's happy. But if I launch a Quicktime movie and play an iTunes track (70% CPU usage), it kernel panics after 10 minutes. Launch dnetc and it crashes within 3 minutes (95% CPU usage).
    So here is my question: what kind of grease is used between the CPU and its thermal pipe? From what I saw, it was more like a grease than a paste. Does anyone know? I spoke to an Apple Center and the only thing they could tell me is that the machine needs a new logicboard. No way, let's do it myself, but with what compound?
    Thanks for your help on that one!
    Pierre

    Pierre,
    The Do-It-Yourself Mac: Between the thermal pipe and mating surface is a thin coat of silicon paste (known as thermal paste or heat-sink compound). This paste—available at electronics shops for around $5 a tube—helps eliminate air gaps between the surfaces, so heat goes out the pipe rather than into the iMac.Since it exhibits Kernel Panic behavior, read Resolving Kernel Panics, by Dr. Smoke for some tips.
    ;~)

  • What kind of memory do I have

    Hello, I've been trying to figure out what kind of RAM do I have in a computer (because I'm not sure if it's DDR2 or DDR1), so that when I purchase an upgrade, i will be able to use it.
    I tried:
    lspci | grep -i ram
    00:00.0 RAM memory: NVIDIA Corporation MCP55 Memory Controller (rev a1)
    00:01.2 RAM memory: NVIDIA Corporation MCP55 Memory Controller (rev a2)
    00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] DRAM Controller
    sudo dmidecode --type 17 :(
    # dmidecode 2.12
    SMBIOS 2.3 present.
    Handle 0x0023, DMI type 17, 27 bytes
    Memory Device
    Array Handle: 0x0022
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 512 MB
    Form Factor: DIMM
    Set: None
    Locator: A0
    Bank Locator: Bank0/1
    Type: Unknown
    Type Detail: None
    Speed: Unknown
    Manufacturer: None
    Serial Number: None
    Asset Tag: None
    Part Number: None
    Handle 0x0024, DMI type 17, 27 bytes
    Memory Device
    Array Handle: 0x0022
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 512 MB
    Form Factor: DIMM
    Set: None
    Locator: A1
    Bank Locator: Bank2/3
    Type: Unknown
    Type Detail: None
    Speed: Unknown
    Manufacturer: None
    Serial Number: None
    Asset Tag: None
    Part Number: None
    Handle 0x0025, DMI type 17, 27 bytes
    Memory Device
    Array Handle: 0x0022
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: No Module Installed
    Form Factor: DIMM
    Set: None
    Locator: A2
    Bank Locator: Bank4/5
    Type: Unknown
    Type Detail: None
    Speed: Unknown
    Manufacturer: None
    Serial Number: None
    Asset Tag: None
    Part Number: None
    Handle 0x0026, DMI type 17, 27 bytes
    Memory Device
    Array Handle: 0x0022
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: No Module Installed
    Form Factor: DIMM
    Set: None
    Locator: A3
    Bank Locator: Bank6/7
    Type: Unknown
    Type Detail: None
    Speed: Unknown
    Manufacturer: None
    Serial Number: None
    Asset Tag: None
    Part Number: None
    As you can see, in the Type subsection there is no information about it.
    Any links related are appreciated.
    Cheers!
    +: Is it true that if 1 RAM is only 400MHz, and another one in the same PC with 800MHz, both only will only use 400MHz?

    alphaniner wrote:
    You could try lshw -short -C memory , dmidecode --type memory (this one gives a bit more info than --type 17), and dmidecode --type 2 (reports mobo model).  But I wouldn't be surprised if these don't give you anything either.
    You may just have to bite the bullet and crack open the case.
    I can open the case, there is no problem with that (though most times it's not specified on the label)
    From your commands I can't figure out what kind it is (though I know it's DDR2)
    [ubunchu@quickie ~]$ lshw -short -C memory
    WARNING: you should run this program as super-user.
    ^CI (sysfs)
    [ubunchu@quickie ~]$ sudo lshw -short -C memory
    H/W path Device Class Description
    ===================================================
    /0/0 memory 128KiB BIOS
    /0/3/a memory 128KiB L1 cache
    /0/3/b memory 512KiB L2 cache
    /0/3c memory 2GiB System Memory
    /0/3c/0 memory DIMM [empty]
    /0/3c/1 memory 1GiB DIMM 533 MHz (1,9 ns)
    /0/3c/2 memory 512MiB DIMM 533 MHz (1,9 ns)
    /0/3c/3 memory 512MiB DIMM 533 MHz (1,9 ns)
    /0/4 memory RAM memory
    /0/1.2 memory RAM memory
    [ubunchu@quickie ~]$ sudo dmidecode --type memory
    # dmidecode 2.12
    SMBIOS 2.4 present.
    Handle 0x0005, DMI type 5, 24 bytes
    Memory Controller Information
    Error Detecting Method: 64-bit ECC
    Error Correcting Capabilities:
    None
    Supported Interleave: One-way Interleave
    Current Interleave: One-way Interleave
    Maximum Memory Module Size: 1024 MB
    Maximum Total Memory Size: 4096 MB
    Supported Speeds:
    70 ns
    60 ns
    50 ns
    Supported Memory Types:
    Standard
    SDRAM
    Memory Module Voltage: 2.9 V
    Associated Memory Slots: 4
    0x0006
    0x0007
    0x0008
    0x0009
    Enabled Error Correcting Capabilities: None
    Handle 0x0006, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM_B1
    Bank Connections: None
    Current Speed: Unknown
    Type: Unknown
    Installed Size: Not Installed
    Enabled Size: Not Installed
    Error Status: OK
    Handle 0x0007, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM_B2
    Bank Connections: 6 7
    Current Speed: 7 ns
    Type: Unknown EDO
    Installed Size: 1024 MB (Double-bank Connection)
    Enabled Size: 1024 MB (Double-bank Connection)
    Error Status: OK
    Handle 0x0008, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM_A1
    Bank Connections: 0
    Current Speed: 7 ns
    Type: Unknown EDO
    Installed Size: 512 MB (Single-bank Connection)
    Enabled Size: 512 MB (Single-bank Connection)
    Error Status: OK
    Handle 0x0009, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM_A2
    Bank Connections: 4
    Current Speed: 7 ns
    Type: Unknown EDO
    Installed Size: 512 MB (Single-bank Connection)
    Enabled Size: 512 MB (Single-bank Connection)
    Error Status: OK
    Handle 0x003C, DMI type 16, 15 bytes
    Physical Memory Array
    Location: System Board Or Motherboard
    Use: System Memory
    Error Correction Type: None
    Maximum Capacity: 4 GB
    Error Information Handle: Not Provided
    Number Of Devices: 4
    Handle 0x003D, DMI type 17, 27 bytes
    Memory Device
    Array Handle: 0x003C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: No Module Installed
    Form Factor: DIMM
    Set: None
    Locator: DIMM_B1
    Bank Locator: Bank0/1
    Type: Unknown
    Type Detail: None
    Speed: Unknown
    Manufacturer: None
    Serial Number: None
    Asset Tag: None
    Part Number: None
    Handle 0x003E, DMI type 17, 27 bytes
    Memory Device
    Array Handle: 0x003C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 1024 MB
    Form Factor: DIMM
    Set: None
    Locator: DIMM_B2
    Bank Locator: Bank2/3
    Type: Unknown
    Type Detail: None
    Speed: 533 MHz
    Manufacturer: None
    Serial Number: None
    Asset Tag: None
    Part Number: None
    Handle 0x003F, DMI type 17, 27 bytes
    Memory Device
    Array Handle: 0x003C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 512 MB
    Form Factor: DIMM
    Set: None
    Locator: DIMM_A1
    Bank Locator: Bank4/5
    Type: Unknown
    Type Detail: None
    Speed: 533 MHz
    Manufacturer: None
    Serial Number: None
    Asset Tag: None
    Part Number: None
    Handle 0x0040, DMI type 17, 27 bytes
    Memory Device
    Array Handle: 0x003C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 512 MB
    Form Factor: DIMM
    Set: None
    Locator: DIMM_A2
    Bank Locator: Bank6/7
    Type: Unknown
    Type Detail: None
    Speed: 533 MHz
    Manufacturer: None
    Serial Number: None
    Asset Tag: None
    Part Number: None
    Though if I see there is no easy bypass, I shall check up on the manufacturer's info.
    Thanks so far. Cheers!

  • What kind of wireless card I need for my Power Mac G5 (late 2005) Dual 2 GH

    hi there,
    I have for sometime now a "Power Mac G5 (late 2005) Dual 2 GHz PowerPC G5", and recently I have been thinking to get an Airport extreme wireless card with a bluetooth on it, which could work on my machine.
    I have already try to deal with apple representatives and Apple sales people to give me a hand on the matter and so far is been a nightmare to approach this guys, tired of wasting time and effort, so that is way I am posting a topic on this section to see if you guys could give a hand on the matter.
    All what I would like to know is what kind of wireless card I need for my Power Mac G5 (late 2005) Dual 2 GHz PowerPC G5 (version 10.4.11) and where I could buy one on line to install myself.
    This is the mac unit I have.
    Dual 2 GHz PowerPC G5.
    Hardware Overview:
    Machine Name: Power Mac G5
    Machine Model: PowerMac11,2
    CPU Type: PowerPC G5 (1.1)
    Number Of CPUs: 2
    CPU Speed: 2 GHz
    L2 Cache (per CPU): 1 MB
    Memory: 4.5 GB
    Bus Speed: 1 GHz
    Boot ROM Version: 5.2.7f1
    Thanks for you time.
    regards
    Toyko koyko

    You're welcome. Funny how Apple works isn't it? If it's any consolation, that Airport/Bluetooth card doesn't show up on the Apple U.S. store either. I don't think they ever intended it to be a user installable part, so perhaps that's why they don't offer it for sale. Do you have any Apple Authorized Service providers in your area? I'd think they'd be able to order the card as a replacement part.
    Can you give a little more detail or a link to the gadget you're referring to? It sounds like a USB dongle to enable Wi-Fi, but that must be a third party solution, since I don't believe Apple ever offered something like that.

  • Why the sudden download speed increase?

    BT Infinity was installed on the 1st February and although my upload speed doubled to 1.62Mbps my download speed was the same as my standard BT Broadband was at 5Mbps or just below. I was on the point of ringing a BT 'Techie' as late yesterday afternoon my Internet access had become painfully slow. In despair I turned everything off at the mains and when I switched on again the following day my download speed had increased to 32Mbps!
    Could anybody explain why leaving everything off overnight would result in such a dramatic increase please? I'm certainly not complaining...just curious. The speed increase is reasonably constant on two wired PC's and one wireless Laptop.
    Ray
    Solved!
    Go to Solution.

    Hi,
    Did the OR Eng leave you with only 5Mb D/L for infinity????????. He should not have done that, any way as your profile would have been set at say 3500kbps and for some reason DLM never picked up the speed for you, Now when you rebooted your system the HH3 picked up your profile to what it should have been. Basically that's it some can go into more detail if you want.
    iechyd da
    sky twitter account a customer ask why sky go streams are worst then sd and yet bt and eurosports apps stream in hd. Reply from mod, oh thats easy the files for hd are some huge that sky go can't play them and no app can stream hd due to this and so when they say they are they're really sd streams, if there was any way around this we would have done it now.

Maybe you are looking for

  • How to stop the message "press 1 for ..."

    Hello, while I'm at it...does anyone know how to stop the instructions that get attached to my outgoing voicemail message?  You know, the one that says, press 1 for __, press 2 for __, press * to send a fax.....in my old phone (also with Verizon) it

  • Master data maintenance and attributes for GTIN/EAN

    A review of the SAP documentation indicates that  "You can use the consistency report to change the attributes (for example, quantity, length, height, and so on) of certain materials". The "and so on" seems to imply that the attributes can be user de

  • Planning Run through MD01

    I was trying to take planning run for several plants, made necessary config in spro, but unable to generate plan orders, when i taking planning run through MD02, Plan order for material is generated, Kindly help me to find where i have missed the set

  • Load Main movie in Skin at run time?

    Good day, I'm new to Adobe Captivate and I'm trying to create a PHP extension for media wiki to load captivate tutorial movies for wiki. I can load flash files into wikis fine but I'm having trouble with the playbar skin. So I publish a Captivate pro

  • Wildcard matching for a single uid/email address

    I need to create an account which will receive all mail who's "To:" field matches a string. Specifically, I wish to create a UID=mailproxy which will receive all mail addressed to *[email protected]  If it matters, mail addressed to this account will