[Solved] Rankmirrors command does not give the fastest mirrors.

Hello Dear Arch users,
This is not ,actually, a real issue but a simple question.
When I uncomment all mirrors in mirror.pacnew and rank them like with
"rankmirrors -n 12 /etc/pacman.d/mirrorlist.pacnew > /etc/pacman.d/mirrorlist"
,and try to do a "pacman -Syy", some mirrors failed to connect or time out, so I comment
them in mirror.pacnew and redo the process.
Would there be a way of having only the faster mirrors that don't time out or failed to connect?
If the answer is "no", I think I can begin coding a script that does exactly like rankmirrors but that has not bad" mirrors.
Thank you for your time and support.
Last edited by venam (2012-07-10 06:24:00)

Hello ngoonee,
I think the problem can comes from my DNS or from my connection.
In my country the internet is really slow so maybe it is the problem.
Thank you for your answer.

Similar Messages

  • I download iOS 7 one song does not delete. I will swipe but it does not give the option to delete

    I downloaded iOS 7 and one song  does not give the option to delete

    Same problem.  Certain songs simply cannot be deleted.   I'd love someone to acknowledge it's a bug.

  • I have an iphone 5 and he thinks that the speakers and headphones it does not give the maximum volume!

    I have an iphone 5 and he thinks that the speakers and headphones it does not give the maximum volume!

    why does he think that?

  • Right click with mouse in Word 2013 does not give the list with translate and synonyms etc

    since i upgraded to windows 8.1 right click on words in word 2013 does not open the regular list where you can tap on synonyms and translate. 
    it does work if i touch the screen.
    i moved to mouse mode but it does not help 
    can anyone help...
    i am starting to hate windows 8.1 and word 2013 because of this feature not working

    Hi
    I have tested in my computer and it worked well.
    Normally when we type a wrong spelling, right clicking the word does not give a list with translate and synonyms.
    Check to make sure your spelling is right.
    if the issue persists, Start Word in safe mode to check the issue:Hold "Ctrl" key and click into the program.
    It is also recommended that you do a repair for your Office suites in
    Control panel>Program and features>Office>Change>Repair
    Thanks
    Tylor Wang
    TechNet Community Support

  • Hi, I have a 7th Gen Ipod Nano and I am unable to delete songs. When synced on the PC I can select tracks but right clicking on them does not give the ability to delete. I have downloaded the latest 1.0.3 software but it did not help.

    Hi,  I have a 7th gen ipod nano and am having a problem with deleting songs. I can select the track in my ipod's library but right clicking does not bring up the option to delet. I have downloaded the latest update for the ipod but this has not solved the issue. Can anyone suggest a remedy? thanks

    Hello Lor100,
    In order to delete or add individual songs from and to your iPod, you'll need to enable 'manual mode' on the device. This will allow you to add and remove exactly the content you desire.
    Managing content manually on iPhone, iPad, and iPod
    http://support.apple.com/kb/HT1535
    Cheers,
    Allen

  • Wiki Placeholder does not give the option to create

    When trying to create a link on my Enterprise Wiki page I created a placeholder, the issue is that I am not able to select the placeholder and get the prompt to create. I've researched and still can't come up with a logical explanation. I am able to create
    the link "the long way" it is just more favorable to use the placeholder. (I'm using IE 10)

    I need to understand this question. When you say you created a placeholder on your wiki page what do mean? Did you mean using "[[" ?
    Based on my understanding of your question I would try to answer and you can correct me by providing more information.
    On your Enterprise Wiki Page if you want to create a link to a page all you do is
    1) start with [[ bracket. This will open a dropdown and will let you pick the existing page or list items.
    2) In case the page does not exist then you simply go ahead and complete the bracket with your text. 
    e.g. [[MYNEWPAGE]]
    3) When you save the page you will see a link on your MYNEWPAGE text and it will have ..... under the text.
    4) You simply click the link and it will let you create a page by providing the title.
    Amit

  • V_V2 Rescheduling does not give the split schedule lines

    Dear All
    When I create a Sales order, if the partial qty is available, system confirms partial immediately and balance after lead time.
    However when I run rescheduling run from V_V2 , it changes all the qty to end lead time confirmation.
    I do not have any other sales order in Pipe line.
    Why the Rescheduling does not confirm on split basis.
    Looking for exprts opinion.
    Regards,
    Neeraj

    Hello,
    I have two ideas related to your question:
    -1-Try to use the transaction V_V1, it the same function of the V_V2, but you can select the sales order instead the material.
    -2-Check in your sales order if you have the flag "no re-scheduling" it's a flag on the schedule line( item, tab schedule line), if you have selected the flag, the v_v2 doesn't works for the schedule line.
    If I think anything i'll send you a message,
    Best regards

  • Button.requestFocus(); does not give the focus to a button...

    I have a Frame with a message (textPane) and a button, for accept the message. I want the button to be focused when I open the frame, so this will allow the user to just press one key for accepting the message without use the mouse.
    How can I acomplish this???!!!
    Thanks on advance.

    I still cannot give the focus to the button when I open the JDialog.
    My code is this:
    public class VError extends JDialog
    GridBagLayout gridBagLayout1 = new GridBagLayout();
    JTextPane jTextPane1 = new JTextPane();
    JPanel jPanel1 = new JPanel();
    JButton jButton1 = new JButton();
    GridBagLayout gridBagLayout2 = new GridBagLayout();
    String message;
    ResourceBundle mes = ResourceBundle.getBundle("com.saincotrafico.optimus.client.resources.RError",Locale.getDefault());
    MutableAttributeSet mas;
    public VError(String message)
    this.setSize(250,150);
    this.setResizable(false);
    this.getContentPane().setBackground(UIManager.getColor("Panel.background"));
    this.setTitle(mes.getString("title"));
    this.message = message;
    try
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    private void jbInit() throws Exception
    mas=new SimpleAttributeSet();
    StyleConstants.setAlignment(mas,StyleConstants.ALIGN_CENTER);
    jTextPane1.setParagraphAttributes(mas,true);
    jTextPane1.setEditable(false);
    jTextPane1.setSelectedTextColor(Color.black);
    jTextPane1.setText("\n"+message);
    jTextPane1.setBackground(this.getBackground());
    jTextPane1.setEditable(false);
    this.getContentPane().setLayout(gridBagLayout1);
    jButton1.setSelected(true);
    jButton1.setText(mes.getString("aceptar"));
    jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    jButton1_actionPerformed(e);
    jPanel1.setLayout(gridBagLayout2);
    this.getContentPane().add(jTextPane1, new GridBagConstraints(0, 0, 1, 1, 0.0, 1.0
    ,GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
    this.getContentPane().add(jPanel1, new GridBagConstraints(0, 1, 1, 1, 1.0, 0.0
    ,GridBagConstraints.SOUTH, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 10, 0), 0, 0));
    jPanel1.add(jButton1, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0
    ,GridBagConstraints.NORTH, GridBagConstraints.NONE, new Insets(5, 157, 5, 158), 0, 0));
    this.getRootPane().setDefaultButton(jButton1);
    jButton1.requestDefaultFocus();
    jButton1.requestFocus();
    void jButton1_actionPerformed(ActionEvent e)
    this.dispose();
    }

  • DATAEXPORT command does not give level0 data in the output file.

    We are using essbase ver 9.3.1.3 Although explicitely programmed for the lev0 members in the output file, output data file has non-level0 members.
    Please see the code....
    =========================
    SET DATAEXPORTOPTIONS
    {     DataExportLevel "LEVEL0";
         DATAEXPORTCOLFORMAT ON;
         DATAEXPORTOVERWRITEFILE ON;
         DataExportRelationalFile ON;
    /FIX (@RELATIVE("Distributable (Allocable) Income",0), @RELATIVE("Net Income Control",0),
         @RELATIVE("Balance Sheet Accounts",0),
         @RELATIVE("Qtr1",0), @RELATIVE("Qtr2",0), @RELATIVE("Qtr3",0), @RELATIVE("Qtr4",0),
         @RELATIVE("FY2010",0), @RELATIVE("FY2011",0),
         @RELATIVE("Organization",0))
         DATAEXPORT "File" "|" "filename.txt" ;
    ENDFIX
    =======================================
    Can you please help?
    Thanks,
    Avi

    on the members that are not level zero, look to see if they are the parents of a single child. If so, make the parents never share and it will solve your issue.

  • My crop tool in CS5 does not give the option to crop by pixel size

    How do I get the crop tool to give me the option of cropping by specific pixel size.  Nothing appears in the dropdown menu except standard crop sizes in inches.

    Have you tried entering the numbers with the suffix "px" in the entry fields?

  • TS1389 itunes store does not give the option to authorise my computer

    i do not the option in my account to authorise my computer.
    where is the authorise button??

    See this Discussion...
    https://discussions.apple.com/thread/4631735?tstart=0
    See Here for full details...
    About authorization and deauthorization

  • Album Info does not give the albumpicture

    By ripping my own audiocd's the albumpicture is not available, but when I do the same in Windows Mediaplayer it finds that picture without any problem on the internet. What do I do wrong.

    With iTunes you have to add artwork for CDs manually:
    iPod & iTunes for Dummies - Adding Album Cover Art or Images in iTunes
    Add Song Information, Lyrics, and Artwork to My Tunes
    One way to find suitable artwork is to go to Amazon, locate the album, save the picture to your desktop and drag it to the iTunes artwork pane. Another way would be to locate artwork using Google image search and put the artist or album name and save the picture you find there in the same way. There are also some programs like this one iTunes Art Importer or MP3 Tag

  • Spotlight does not give the option to show file names only

    I have noticed that Spotlight doesn't have the button to allow for showing only the file name that contain the search word. I use this function a lot and not having it makes my searches much more tedious. Anyone know if there is some hidden way now in Lion to do this?
    Sima

    Well, after digging for a while in help, I found it. You have to click "show all" after beginning the search, then click on the + sign to add criteria, then choose criteria from the pop-up menu labeled "Kind". I had to go further and click on "other" to find "filename", then it worked. It seems like a lot more work than it was before. I would think that putting a few buttons with some of the most common uses at the top of the window would be more convenient, or at least, providing an option to put those buttons there.
    Sima

  • HT1212 how do i unlock or re-enable ipod touchwhen it says ipod isdisabled and does not giv the option to unlock

    itunes will not recognize it o sync it and the screen says ipod is disabled and doesnt allow you to unlock it

    Read the second part of the article:
    If you have never synced your device with iTunes, or you do not have access to a computer
    If you see one of following alerts, you need to erase the device:
    "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."
    "You haven't chosen to have [device] trust this computer"
    If you have Find My iPhone enabled, you can use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.
    Alternatively, place the device in recovery mode and restore it to erase the device:
    Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to shut down.
    While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    Continue holding the Home button until you see the Connect to iTunes screen.
    iTunes will alert you that it has detected a device in recovery mode. Click OK, and then restore the device.

  • HT2534 i followed this instructions and it does not give the option none.......i am very annoyed and confuse.

    not happy

    Make sure you're following the instructions exactly. Note also that you need to create a new Apple ID for this to work; you cannot use an existing one.
    Regards.

Maybe you are looking for