135k only + speedtester can't complete test

Our line has dropped to 135k as a result of a faulty extension. That was over a week ago and the line is still at the slow speed. (Hub 2.0 connected to main socket since then)
I've tried to run the speed test a few times but it can't complete the test. It tells me I have 135k, carries out the upload test and then displays this error.
The Performance Tester could not perform Assured Rate throughput test ,
Please try again later.
Any suggestions?
Thanks
Solved!
Go to Solution.

If that rate stays then your IP profile should rest eventually (between now and 5 daysm probably nearer 12 hours) but running speedtester is the only way to be sure,
If you still cannot run iit make sure you are not stopping it via firewall rules or thing slike peerblocker.
The test socket is the same as the master but will all extension wiring disconnected so you still have a fault in the house wiring it seems to me.
If my post was helpful then please click on the Ratings star on the left-hand side If the the reply answers your question fully then please select ’Mark as Accepted Solution’

Similar Messages

  • I just reset my i phone 6, it take so long, almost 1 hour , only 10 per cent completed, is it normal. if not what can i do

    i just reset my i phone 6, it take so long, almost 1 hour , only 10 per cent completed, is it normal. if not what can i do

    PolishAngel756 wrote:
    Some friends have told me that their phone can last up to 2 days without charging??
    If they are getting 2 days without charging, it's unlikely they use their device very much.
    A full day is pretty good....and if I'm careful, I can easily get a full day of usage.
    For me, normal is charging the iPhone mid afternoon at work, but I use it a lot.
    My typical usage is 35 mins of listening to podcasts, checking email, checking my RSS feed, and checking a few apps while I ride my bike when I first get up.  Then listening to several podcasts at work.
    I typically stream music while working out during my lunch hour and use the Men's Health Fitness app to track my progress.
    By about 2pm I'm ready to charge the device as it's getting low (somewhere between 20% and 50%).
    I leave bluetooth, Wi-FI, and location services turned on all the time.
    Personally, I just do not see the point in going into settings to turn on the feature when I need it... just too much hassle.  All of my listening to podcasts and music is via Bluetooth.
    I know I'm not the heaviest user, but I just do not see how anyone can realistically make it two days on a single charge, it makes me think they simply do not use the features of the device and would be just as well served with a basic or feature phone.

  • I'm trying to transfer a quicktime file, when I drop the file in my hard drive I get the following error message "The operation can be completed because an unexpected error occured (error code 0). It only happens with this particular drive.

    I'm trying to transfer a quicktime file, when I drop the file in my hard drive I get the following error message "The operation can be completed because an unexpected error occured (error code 0). It only happens with this particular drive.

    Run Disk Utility and try to verify/repair the drive to see if it reports and fixes anything.

  • Can Web Performance Test work on AJAX or Javascript Project which will show only one URL for all the pages?

    Hi there,
    I'm working on testing a AJAX and JavaScript Project which has several pages but all in the same URL. I need to test some attribute on the page or parameter past by AJAX or Javascript. Can Web Performance Test work to get what I want?
    Thanks,
    

    Hello,
    Thank you for your post.
    Web performance test is used to test if a server responses correctly and the response is consistent with what we expected. And we test the response speed, the stability and scalability.
    The Web Performance Test Recorder records both AJAX requests and requests that were submitted from JavaScript, but
     web test does not execute JavaScript. I am afraid that you can’t use web test to test parameter past by AJAX or JavaScript.
    Please see:
    Web Performance Test Engine Overview
    About JavaScript and ActiveX Controls in Web Performance Tests
    From the first link, “Client-side scripting that sets parameter values or results in additional HTTP requests, such as AJAX, does affect the load on the server and might require you to manually modify the Web Performance Test to simulate the scripting.”
    If you want to execute the function typically performed by script in web test, you need to accomplish it in coded web performance test or a web performance test plugin. Please see:
     How to: Create a Coded Web Performance Test
    How to: Create a Web Performance Test Plug-In
    I am not sure what the ‘some attribute on the page’ is. If you mean that you want to test those controls on the page, you can do coded UI test, which can test that the user interface for an application functions correctly. The coded UI test performs actions
    on the user interface controls for an application and verifies that the correct controls are displayed with the correct values. You can refer to this article for detailed information about code UI test:
    Verifying Code by Using Coded User Interface Tests
    Best regards,
    Amanda Zhu [MSFT]
    MSDN Community Support | Feedback to us
    Develop and promote your apps in Windows Store
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • How can i get also the files in the root directory and how can i for testing add items of IEnumerable FTPListDetail to List string ?

    What i get is only the directories and files that in other nodes. But i have also files on the root directory and i never
    get them. This is a screenshot of my program after i got the content of my ftp. I'm using treeView to display my ftp content:
    You can see two directories from the root but no files on the root it self. And in my ftp server host i have files in the root direcory.
    This is the method i'm using to get the directory listing:
    public IEnumerable<FTPListDetail> GetDirectoryListing(string rootUri)
    var CurrentRemoteDirectory = rootUri;
    var result = new StringBuilder();
    var request = GetWebRequest(WebRequestMethods.Ftp.ListDirectoryDetails, CurrentRemoteDirectory);
    using (var response = request.GetResponse())
    using (var reader = new StreamReader(response.GetResponseStream()))
    string line = reader.ReadLine();
    while (line != null)
    result.Append(line);
    result.Append("\n");
    line = reader.ReadLine();
    if (string.IsNullOrEmpty(result.ToString()))
    return new List<FTPListDetail>();
    result.Remove(result.ToString().LastIndexOf("\n"), 1);
    var results = result.ToString().Split('\n');
    string regex =
    @"^" + //# Start of line
    @"(?<dir>[\-ld])" + //# File size
    @"(?<permission>[\-rwx]{9})" + //# Whitespace \n
    @"\s+" + //# Whitespace \n
    @"(?<filecode>\d+)" +
    @"\s+" + //# Whitespace \n
    @"(?<owner>\w+)" +
    @"\s+" + //# Whitespace \n
    @"(?<group>\w+)" +
    @"\s+" + //# Whitespace \n
    @"(?<size>\d+)" +
    @"\s+" + //# Whitespace \n
    @"(?<month>\w{3})" + //# Month (3 letters) \n
    @"\s+" + //# Whitespace \n
    @"(?<day>\d{1,2})" + //# Day (1 or 2 digits) \n
    @"\s+" + //# Whitespace \n
    @"(?<timeyear>[\d:]{4,5})" + //# Time or year \n
    @"\s+" + //# Whitespace \n
    @"(?<filename>(.*))" + //# Filename \n
    @"$"; //# End of line
    var myresult = new List<FTPListDetail>();
    foreach (var parsed in results)
    var split = new Regex(regex)
    .Match(parsed);
    var dir = split.Groups["dir"].ToString();
    var permission = split.Groups["permission"].ToString();
    var filecode = split.Groups["filecode"].ToString();
    var owner = split.Groups["owner"].ToString();
    var group = split.Groups["group"].ToString();
    var filename = split.Groups["filename"].ToString();
    var size = split.Groups["size"].Length;
    myresult.Add(new FTPListDetail()
    Dir = dir,
    Filecode = filecode,
    Group = group,
    FullPath = CurrentRemoteDirectory + "/" + filename,
    Name = filename,
    Owner = owner,
    Permission = permission,
    return myresult;
    And then this method to loop over and listing :
    private int total_dirs;
    private int searched_until_now_dirs;
    private int max_percentage;
    private TreeNode directories_real_time;
    private string SummaryText;
    private TreeNode CreateDirectoryNode(string path, string name , int recursive_levl )
    var directoryNode = new TreeNode(name);
    var directoryListing = GetDirectoryListing(path);
    var directories = directoryListing.Where(d => d.IsDirectory);
    var files = directoryListing.Where(d => !d.IsDirectory);
    total_dirs += directories.Count<FTPListDetail>();
    searched_until_now_dirs++;
    int percentage = 0;
    foreach (var dir in directories)
    directoryNode.Nodes.Add(CreateDirectoryNode(dir.FullPath, dir.Name, recursive_levl+1));
    if (recursive_levl == 1)
    TreeNode temp_tn = (TreeNode)directoryNode.Clone();
    this.BeginInvoke(new MethodInvoker( delegate
    UpdateList(temp_tn);
    percentage = (searched_until_now_dirs * 100) / total_dirs;
    if (percentage > max_percentage)
    SummaryText = String.Format("Searched dirs {0} / Total dirs {1}", searched_until_now_dirs, total_dirs);
    max_percentage = percentage;
    backgroundWorker1.ReportProgress(percentage, SummaryText);
    percentage = (searched_until_now_dirs * 100) / total_dirs;
    if (percentage > max_percentage)
    SummaryText = String.Format("Searched dirs {0} / Total dirs {1}", searched_until_now_dirs, total_dirs);
    max_percentage = percentage;
    backgroundWorker1.ReportProgress(percentage, SummaryText);
    foreach (var file in files)
    TreeNode file_tree_node = new TreeNode(file.Name);
    file_tree_node.Tag = "file" ;
    directoryNode.Nodes.Add(file_tree_node);
    numberOfFiles.Add(file.FullPath);
    return directoryNode;
    Then updating the treeView:
    DateTime last_update;
    private void UpdateList(TreeNode tn_rt)
    TimeSpan ts = DateTime.Now - last_update;
    if (ts.TotalMilliseconds > 200)
    last_update = DateTime.Now;
    treeViewMS1.BeginUpdate();
    treeViewMS1.Nodes.Clear();
    treeViewMS1.Nodes.Add(tn_rt);
    ExpandToLevel(treeViewMS1.Nodes, 1);
    treeViewMS1.EndUpdate();
    And inside a backgroundworker do work how i'm using it:
    var root = Convert.ToString(e.Argument);
    var dirNode = CreateDirectoryNode(root, "root", 1);
    e.Result = dirNode;
    And last the FTPListDetail class:
    public class FTPListDetail
    public bool IsDirectory
    get
    return !string.IsNullOrWhiteSpace(Dir) && Dir.ToLower().Equals("d");
    internal string Dir { get; set; }
    public string Permission { get; set; }
    public string Filecode { get; set; }
    public string Owner { get; set; }
    public string Group { get; set; }
    public string Name { get; set; }
    public string FullPath { get; set; }
    Now the main problem is that when i list the files and directories and display them in the treeView it dosen't get/display
    the files in the root directory. Only in the sub nodes.
    I will see the files inside hello and stats but i need also to see the files in the root directory.
    1. How can i get and list/display the files of the root directory ?
    2. For the test i tried to add to a List<string> the items in var files to see if i get the root files at all.
       This is what i tried in the CreateDirectoryNode before it i added:
    private List<string> testfiles = new List<string>();
    Then after var files i did:
    testfiles.Add(files.ToList()
    But this is wrong. I just wanted to see in testfiles what items i'm getting in var files in the end of the process.
    Both var files and directoryListing are IEnumerable<FTPListDetail> type.
    The most important is to make the number 1 i mentioned and then to do number 2.

    Risa no.
    What i mean is this. This is a screenshot of my ftp server at my host(ipage.com).
    Now this is a screenshot of my program and you can see that in my program i have only the directories hello stats test but i don't have the files in the root: htaccess.config swp txt 1.txt 2.png....all this files i don't have it on my treeView.
    What i want it to be is that on my program on the treeView i will also display the files like in my ftp server.
    I see in my program only the directories and the files in the directories but i don't see the files on the root directory/node.
    I need it to be like in my ftp server i need to see in my program the htaccess 1.txt 2.png and so on.
    So what i wrote in my main question is that in the var files i see this files of the root directory i just don't know to add and display them in my treeView(my treeView is treeViewMS1).
    I know i checked in my program in the method CreateDirectoryNode i see in the first iteration of the recursive that var files contain this root files i just dont know how to add and display them in my treeView.
    On the next iterations when it does the recursive it's adding the directories hello stats test and the files in this directories but i need it to first add the root files.

  • Hi guys, an empty folder is stuck in my trash & I get this message: "The Finder can't complete the operation because some data in the folder can't be read or written. (Error code -36). It won't shift no matter how I try to Secure Empty trash. Any ideas?

    Hi guys, an empty folder is stuck in my trash & I get this message: "The Finder can’t complete the operation because some data in the folder can’t be read or written. (Error code -36). It won't shift no matter how I try to Secure Empty trash. Any ideas?

    The Time Machines Backup is formated as Mac OS Extended (Case Sensitive, Journaled), my mac is formated as Mac OS Extended (Journaled).
    The names on the file are all Uppercase
    When I try to copy the Aperture file, it copies about 70% of the file (it's about 33GB in size), and halfway through I get this error.
    I'm able to copy 99.99% of all of the images if I open the Aperture Folder using the "show package contents" under the backups using finder (Time Machine Backups>Backups.backupdb>CQ Macbook Air>2012-04-30-070933>HD.....>Pictures>Aperture Library). The only file I can't copy is that picture, which I'm totally ok with deleting, but Finder won't delete it for me. If nothing else works, I could copy the individual masters and re-create the folders, however I'd hate to do this as I would have to go through 10,000+ pics

  • I have been exporting lightroom webgaleries to my iweb site without any problem.  Suddenly I get the error message "finder can't complete the operation because some data can't be read or written" - error code -36 - thoughts?

    i have been exporting lightroom web galleries to my iweb site without any problem.  Suddenly I get the error message "finder can't complete the operation because some data can't be read or written" - error code -36 - and the move to the sites folder on my idisk fails..... thoughts?

    Try this community: MobileMe on my Mac: MobileMe: Apple Support Communities.
    And you can continue to use iWeb for some time to come. The following will explain:
    It's now confirmed that iWeb and iDVD have been discontinued by Apple. This is evidenced by the fact that new Macs are shipping with iLife 11 installed but without iWeb and iDVD.
    On June 30, 2012 MobileMe will be shutdown. HOWEVER, iWeb will still continue to work but without the following:
    Features No Longer Available Once MobileMe is Discontinued:
    ◼ Password protection
    ◼ Blog and photo comments
    ◼ Blog search
    ◼ Hit counter
    ◼ MobileMe Gallery
    All of these features can be replaced with 3rd party options.
    I found that if I published my site to a folder on my hard drive and then uploaded with a 3rd party FTP client subscriptions to slideshows and the RSS feed were broken.  If I published directly from iWeb to the FPT server those two features continued to work correctly.
    There's another problem and that's with iWeb's popup slideshows.  Once the MMe servers are no longer online the popup slideshow buttons will not display their images.
    Click to view full size
    However, Roddy McKay and I have figured out a way to modify existing sites with those slideshows and iWeb itself so that those images will display as expected once MobileMe servers are gone.  How to is described in this tutorial: #26 - How to Modify iWeb So Popup Slideshows Will Work After MobileMe is Discontinued.
    In addition the iLife suite of applications offered on disc is now a discontinued product and the remaining supported iApps will only be available thru the App Store from now on.
    HOWEVER, the iLife 11 boxed version that is still currently available at the online Apple Store (Store button at the top of the page) and those copies still on the shelves of retailers will include iWeb and iDVD.

  • The Finder can't complete the operation because some data can't be read or written. (Error code -36)

    Since the upgrade to 10.9 I have the most annoying issue when copying files. I have a secondary drive for media in which I keeo my media on / Samples / Video etc. I keep an exact copy on 2 external drives.
    95% I can't copy the the new media across my drives without a few restarts. I get the following:
    The Finder can’t complete the operation because some data can’t be read or written.
    (Error code -36)
    This is not a permissions issue. I've checked every folder down the the exact file it calls on. Everyone has READ & WRITE. If I restart the computer after getting this message it will do a little bit more then get stuck on another folder or file and pop the message.
    If I do smaller chuncks, it seems to do better but not all the time.
    PLEASE someone, tell me you have seen this before and you have a workaround. This is killing me,
    All HD are OS Extended Journaled - No FAT
    MacBook Pro I7
    16GB RAM
    250SSD
    450SSD
    2TD Lacie FW800 External
    is the equation right now
    thanks in advance for any help

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Thunderbolt file copy - the Finder can't complete the operation because some data in  can't be read or written.

    I have a Promisse 4 disk Thundebolt enclosure. To this I did install 4 new 2TB Samsung disks. (it had 512GB disks before). After the disks were replaced a randomly get messages like "the Finder can’t complete the operation because some data in  can’t be read or written". If I retry it sometimes work - sometimes dont work.
    To close down on the problem I have mounted one disk as a single partition, and it still happen. Then I take the disk out, mount it in an USB enclosure and I have no problem. (I have more than once written the disk completly full using USB without any problem).
    To me it seems like OSX has some weird problem with these big disks on thunderbolt. Any ideas?

    Pretty sure it`s not the promise. It could of course be the FW in the Promise having problem with 2TB disks or the Samsung brand in some way.
    Had 4 Toshiba disks in it until quite recently. No problem. They were running in RAID 0 for about 6 months.
    I have right now 2 x 2TB disks in a RAID 0 in it with no problem. So - I am down two 2 possible answers
    a) OSX don´t handle copy correct (or actually finder - have not tested cp from command line)
    b) I have been unlucky and got 2 similar disks that have the same problem (2 of 4 disks - all brand new 3 weeks ago)
    The one thing a find most annoying is OSX lack of telling what`s going on. The "Failed to read or write" error is stupid - tell me what`s the problem. Like "could not write to block XXXX". An os is also supposed to re-allocate bad blocks. However I see no way in OSX to see number of bad blocks etc. Is this possible?
    When googling the error -36 it seems like this is something that has been troubling OSX for some time, but not that many users that have problems after 10.7 was released.
    I think what I will do is to send in the disk for replacement - that will at least give some answers.

  • HT1473 I recently had to replace my hard drive and lost my iTunes library. Now I cannot transfer the library from my iPod to iTunes on the new hard drive (same computer). How can I complete the transfer?

    I recently had to replace my hard drive and lost my iTunes library.  When I try to transfer the content from my iPod to iTunes on the new hard drive (same computer), it would only let me transfer iTunes store purchases. How can I complete the transfer of all the content on the iPod back onto the computer?

    Recover media from iPod
    See this post for options on moving your iPod data back to your computer.
    tt2

  • I watched TV shows in my iPhone, deleted them, but still occupy space in my iPhone! How can I completely delete them?

    I purchased and downloaded 6 episodes of a TV show. I watched them all, then deleted them from iPhone and iPad to free up the space.
    The videos are removed from iPad completely, but when I sync the iPhone the purple bar in iTunes indicates that I still have all the 6 videos! The size of the 6 files and the size of the 6 videos the purple bar indicate are the same. I am not syncing TV shows (Sync TV show isn't selected whenI sync the phone with my computer). How can I completely delete them? 
    Nothing appears in Videos, usage/videos!
    I can't click any TV show to watch in iTunes app either even if I find the same TV shows.
    I have no propblem with iPad, but problem is only with iPhone.
    The videos are not HD.
    Any suggestion to free up the space?
    Thanks!

    Hey RR6705,
    If you would like to delete previously purchased content off of your iPhone, you may find the steps outlined in the following article helpful:
    How to delete content you've downloaded from the iTunes Store, App Store, iBooks Store, or Mac App Store - Apple Support
    Cheers,
    - Brenden

  • Can't complete setup after setting wi fi

    Hello, I'm new to apple products and we just got a new Ipad2 from the institution. I was setting the thing up but when I got to the wi fi connection part I connected to a wireless network here (our wireless network is not very good but it managed to connect since it shows a check next to it). But now the "Next" button continues to be disabled so I can't get further in the setup. Anyone has any idea what's happening and how can I complete the setup? Thanks.

    Seriously? Everything is communicating as usual on their network and a reboot is perscribed?
    Okay. I'm also having this issue. Nothing has changed on my network. My daughters' notebooks, my son's PC, my server, my workstation, my notebook, my netbook, my xbox 360, my PS3 and any of the twelve refurbished PCs I have for sale in my shop (I work from home with my shop attached to my house) all connect without fail. I have up to 253 devices alloted for in my IP scheme within my router and I even went as far as to assign my iPhone a static IP address with all of the correct gateway and DNS info. I get no WiFi connection at all; I only see an indication of 3G. When I go back to DHCP and an IP address is shown, it is 169.254.168.99 with a subnet mask of 255.255.0.0 and no other info.
    Any real help would be greatly appreciated.

  • How can I completely delete an app, so it won't even be listed in the app store under purchased items? And I will stop being prompted to make updates even though I've removed it from my iPad?

    How can I completely delete an app, so it won't even be listed in the app store under purchased items? And I will stop being prompted to make updates even though I've removed it from my iPad?

    Once an app is deleted from an iOs device, you will no longer be prompted for updates. Update alerts only occur for apps curently installed.
    Purchases can be hidden (but not completely deleted) from the purchased list, but only using itunes on a computer.

  • Can't Connect, can't complete the call. Check your...

    Greetings guys,
    My phone was PERFECT until I updated to Lumia Black, since then I get the error:
    Can't Connect
    Can't complete the call. Check your cellular signal and the number, and try again.
    at random times; this is specially bad when driving and wanting to make a quick call via voice command; it's just not possible.
    This is the list of things I've done to try and fix it without luck.
    Resetted the phone
    Upgraded to pre-8.1 alpha
    Upgraded to 8.1 alpha
    I can also confirm that when trying to call via voice with Cortana (and until I toggle flight Airplane mode) it gives me the same error message.
    I want to add that I am not the only one, I've heard from two lumia 920 users and one lumia 820 issue and have the screenshots they sent me in case it's of any help (i've attached mine - obscured)...
    Does anyone have any recommendations or ideas?
    Thanks tons,
    Geo
    Solved!
    Go to Solution.
    Attachments:
    wp_ss_20140503_0001.jpg ‏76 KB

    Sadly i stilll have the issue. As you mentioned gtejeda, it is way better now, but is still there speccially when you more need a quick call. I have updated my phone to the latest release, but still hoping poeple to see this and realize that it is not 100%. They are on the right track, but need to keep working on it. 
    Attachments:
    wp_ss_20140609_0001.png ‏131 KB

  • I am using a samsung netbook, can do print test but cannot print a file

    i am setting up a new hp deskjet 3050 with my samsung netbook using windows 7 starter, i can do print test but cannot print anything else.  how do we fix it? thank you 

    Hi,
    If you use your netbook to print through the Wireless, be aware that Windows 7 Started eddition only support printing through a direct USB connection, network communication with the printer is not supported by the OS:
    IMPORTANT NOTES
    For Windows XP Starter Edition, Windows Vista Starter Edition and Windows 7 Starter Edition
    • Is supported for USB only
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=al-109394-2&cc=us&dlc=en&lc=en...
    If it is connected through the network, plug a USB between the laptop and the printer, then try printing and check for any difference.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

Maybe you are looking for

  • Ipod won't sync...tried everything

    My ipod will not sync when plugged in.  The device is recognized if I go under my computer, however itunes does not recognize the ipod.  I have tried all of the steps online and nothing works.  I tried updating my version of itunes and I got an error

  • How to make blog in servlet

    i want to make blog in my projects ..which is servlet a simple blog in which we can post text only text.. and it show blog text with date?? which technic i use in servlet

  • Apache service reset config on reboot

    Hi to all, i upgraded one of my servers from SnowLeopard Server (10.6.8) to 10.9.4 Mavericks Server, all services migrated fine except for Web Service, in this case i needed to rewrite in every virtual host file <mod_rewrite> and <Directory> sections

  • What can I do in my system environment?

    My system is CenOS 4.3 and the version of glibc is 2.3.4(glibc6). I have installed both the Sun Studio 11 and Sun Studio Compilers for Linux OS, but I can't compile with neither Sun Compiler nor GNU Compiler. What can I do now?

  • IOS 8 other filling space

    I have a new iPhone 6 (128gb) and its ruing iOS 8  (I'm mac os X) and after installing everything  - keep finding of the 114 GB -i have over 90GB of other  restored seven times and still same problems occur  its like it loads ½ of music and pictures