真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何編寫Shell腳本實現(xiàn)自動檢測修改最快的Ubuntu軟件源-創(chuàng)新互聯(lián)

這篇文章主要講解了“如何編寫Shell腳本實現(xiàn)自動檢測修改最快的Ubuntu軟件源”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“如何編寫Shell腳本實現(xiàn)自動檢測修改最快的Ubuntu軟件源”吧!

10年建站經(jīng)驗, 做網(wǎng)站、成都網(wǎng)站建設(shè)客戶的見證與正確選擇。創(chuàng)新互聯(lián)建站提供完善的營銷型網(wǎng)頁建站明細(xì)報價表。后期開發(fā)更加便捷高效,我們致力于追求更美、更快、更規(guī)范。

原理

最直觀的想法就是:對各個軟件源進(jìn)行測速,選出最快的那個,之后將其替換為新的軟件源。

那么如何對各個軟件源測速呢?有兩種方法:

一、用ping命令 測量其平均響應(yīng)時間 選出響應(yīng)時間短的那個

二、用wget命令 測量下載一個文件的總時間 選出耗時最少的那個

那么這兩種方法有什么區(qū)別呢?我們該用哪個呢?

前者選出的是響應(yīng)時間最優(yōu)的,后者選出的是下載速度最快的。我們都知道軟件源的作用是供客戶端下載更新軟件,所以當(dāng)然是后者的方法更為準(zhǔn)確,但筆者最終選擇了前者作為測速方案,因為前者的用戶體驗更好且代碼簡單易懂。設(shè)想,如果我們采用后者,那么需要從每個軟件源下載一個文件,并且這個文件不能太小,否則無法區(qū)分他們的速度,那么一個顯而易見的情況是腳本需要運行較長的時間。

雖然存在某些軟件源可能響應(yīng)時間很短,而下載速度卻很慢的情況,但經(jīng)過筆者的多次實驗,發(fā)現(xiàn)這樣的情況并不常見。

實現(xiàn)

首先測試用戶網(wǎng)絡(luò)狀態(tài)

利用

代碼如下:

local speed=`ping -W1 -c1 www.baidu.com 2> /dev/null | grep "^rtt" |  cut -d '/' -f5`


取出其平均響應(yīng)時間 如果speed == “” 則說明網(wǎng)絡(luò)不通,提示用戶,且退出程序。 否則,說明網(wǎng)絡(luò)正常,繼續(xù)執(zhí)行。

檢測軟件源列表文件是否存在

代碼如下:

test -f $SOURCES_MIRRORS_FILE



若不存在,提示用戶,且退出程序。

對每個軟件源地址進(jìn)行測速

在測速之前清空上次運行的測速結(jié)果文件,之后將每個軟件源的測速結(jié)果(源地址 平均響應(yīng)時間)寫入測速結(jié)果文件

對測速結(jié)果進(jìn)行排序

代碼如下:


sort -k 2 -n -o $MIRRORS_SPEED_FILE $MIRRORS_SPEED_FILE


對每行記錄 按照平均響應(yīng)時間升序排列

選出最快的軟件源

代碼如下:

head -n 1 $MIRRORS_SPEED_FILE | cut -d ' ' -f1 `


通過取已排序列表中的第一條,選出最快的軟件源

詢問用戶是否要使用該軟件源

用戶確認(rèn)后,先對用戶之前的軟件源進(jìn)行備份,然后再替換。

getfastmirror.sh腳本源代碼:


代碼如下:

#!/bin/bash

#Program:
#    This program gets the fastest ubuntu software sources from SOURCES_MIRRORS_FILE
#    and backup && update /etc/apt/sources.list

#Author:  KJlmfe    www.freepanda.me

#History:
#    2012/12/6    KJlmfe    First release


VERSION="precise"  # precise is code of Ubuntu 12.04 if your ubuntu is not 12.04 please change
TEST_NETCONNECT_HOST="www.baidu.com"
SOURCES_MIRRORS_FILE="sources_mirrors.list"   
MIRRORS_SPEED_FILE="mirrors_speed.list"

function get_ping_speed()    #return average ping $1 time
{
    local speed=`ping -W1 -c1 $1 2> /dev/null | grep "^rtt" |  cut -d '/' -f5`
    echo $speed
}

function test_mirror_speed()    #
{
    rm $MIRRORS_SPEED_FILE 2> /dev/null; touch $MIRRORS_SPEED_FILE
   
     cat $SOURCES_MIRRORS_FILE | while read mirror
    do
        if [ "$mirror" != "" ]; then
            echo -e "Ping $mirror c"
            local mirror_host=`echo $mirror | cut -d '/' -f3`    #change mirror_url to host
   
            local speed=$(get_ping_speed $mirror_host)
   
            if [ "$speed" != "" ]; then
                echo "Time is $speed"
                echo "$mirror $speed" >> $MIRRORS_SPEED_FILE
            else
                echo "Connected failed."
            fi
        fi
    done
}

function get_fast_mirror()
{
    sort -k 2 -n -o $MIRRORS_SPEED_FILE $MIRRORS_SPEED_FILE
    local fast_mirror=`head -n 1 $MIRRORS_SPEED_FILE | cut -d ' ' -f1`
    echo $fast_mirror
}

function backup_sources()
{
    echo -e "Backup your sources.list.n"
    sudo mv /etc/apt/sources.list /etc/apt/sources.list.`date +%F-%R:%S`
}

function update_sources()
{
    local COMP="main restricted universe multiverse"
    local mirror="$1"
    local tmp=$(mktemp)

    echo "deb $mirror $VERSION $COMP" >> $tmp
    echo "deb $mirror $VERSION-updates $COMP" >> $tmp
    echo "deb $mirror $VERSION-backports $COMP" >> $tmp
    echo "deb $mirror $VERSION-security $COMP" >> $tmp
    echo "deb $mirror $VERSION-proposed $COMP" >> $tmp

    echo "deb-src $mirror $VERSION $COMP" >> $tmp
    echo "deb-src $mirror $VERSION-updates $COMP" >> $tmp
    echo "deb-src $mirror $VERSION-backports $COMP" >> $tmp
    echo "deb-src $mirror $VERSION-security $COMP" >> $tmp
    echo "deb-src $mirror $VERSION-proposed $COMP" >> $tmp

    sudo mv "$tmp" /etc/apt/sources.list
    echo -e "Your sources has been updated, and maybe you want to run "sudo apt-get update" now.n";
}

echo -e "nTesting the network connection.nPlease wait...   c"

if [ "$(get_ping_speed $TEST_NETCONNECT_HOST)" == "" ]; then
    echo -e "Network is bad.nPlease check your network."; exit 1
else
    echo -e "Network is good.n"
    test -f $SOURCES_MIRRORS_FILE

    if [ "$?" != "0" ]; then 
        echo -e "$SOURCES_MIRRORS_FILE is not exist.n"; exit 2
    else
        test_mirror_speed
        fast_mirror=$(get_fast_mirror)

        if [ "$fast_mirror" == "" ]; then
            echo -e "Can't find the fastest software sources. Please check your $SOURCES_MIRRORS_FILEn"
            exit 0
        fi

        echo -e "n$fast_mirror is the fastest software sources. Do you want to use it? [y/n] c"   
        read choice

        if [ "$choice" != "y" ]; then
            exit 0
        fi

        backup_sources
        update_sources $fast_mirror
    fi
fi

exit 0


sources_mirrors.list源碼:

代碼如下:

http://cn.archive.ubuntu.com/ubuntu/
http://run.hit.edu.cn/ubuntu/
http://mirrors.sohu.com/ubuntu/
http://mirrors.163.com/ubuntu/
http://mirrors.tuna.tsinghua.edu.cn/ubuntu/
http://mirrors.ustc.edu.cn/ubuntu/
http://mirrors.yun-idc.com/ubuntu/
http://ubuntu.cn99.com/ubuntu/


感謝各位的閱讀,以上就是“如何編寫Shell腳本實現(xiàn)自動檢測修改最快的Ubuntu軟件源”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對如何編寫Shell腳本實現(xiàn)自動檢測修改最快的Ubuntu軟件源這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!


網(wǎng)站題目:如何編寫Shell腳本實現(xiàn)自動檢測修改最快的Ubuntu軟件源-創(chuàng)新互聯(lián)
網(wǎng)站地址:http://weahome.cn/article/djcpcd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部