• Manjaro为包管理器pacman和yaourtyay 添加多线程下载


    用轻量级的axle代替了默认的wget来下载升级包。

    1. paman添加多线程

    编辑pacman.conf文件:
    vim /etc/pacman.conf
    如果有类似xfercommand的话,注释掉,加上下面这句 :
    XferCommand = /usr/bin/axel -n 15 -o %o %u

    2. yaourt添加多线程

    修改/etc/makepkg.conf:

    http::/usr/bin/wget -c -t 3 –waitretry=3 -O %o %u
    类似语句改成
    http::/usr/bin/axel -o %o %u


    附录

    1. 我的pacman.conf文件:

    ### Pamac configuration file
    
    ## When removing a package, also remove those dependencies
    ## that are not required by other packages (recurse option):
    #RemoveUnrequiredDeps
    
    ## How often to check for updates, value in hours (0 to disable):
    RefreshPeriod = 6
    
    ## When there are no updates available, hide the tray icon:
    #NoUpdateHideIcon
    
    ## When applying updates, enable packages downgrade:
    #EnableDowngrade
    
    ## Allow Pamac to search and install packages from AUR:
    EnableAUR
    
    ## When AUR support is enabled check for updates from AUR:
    CheckAURUpdates
    
    ## When check updates from AUR support is enabled check for vcs updates:
    #CheckAURVCSUpdates
    
    ## AUR build directory:
    BuildDirectory = /var/tmp
    
    ## Number of versions of each package to keep in the cache:
    KeepNumPackages = 3
    
    ## Remove only the versions of uninstalled packages when clean cache:
    #OnlyRmUninstalled
    
    ## Download updates in background
    #DownloadUpdates
    
    ## Maximum Parallel Downloads
    MaxParallelDownloads = 4
    
    ## MutiProcessing
    XferCommand = /usr/bin/axel -n 5 -a -o %o %u
    

    2. 我的makepkg.conf文件:

    #
    # /etc/makepkg.conf
    #
    
    #########################################################################
    # SOURCE ACQUISITION
    #########################################################################
    #
    #-- The download utilities that makepkg should use to acquire sources
    #  Format: 'protocol::agent'
    DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u'
              'ftp::/usr/bin/axel -n 15 -o %o %u'
              'http::/usr/bin/axel -n 15 -o %o %u'
              'https::/usr/bin/axel -n 15 -o %o %u'
              'rsync::/usr/bin/rsync --no-motd -z %u %o'
              'scp::/usr/bin/scp -C %u %o')
    
    # Other common tools:
    # /usr/bin/snarf
    # /usr/bin/lftpget -c
    # /usr/bin/wget
    
    #-- The package required by makepkg to download VCS sources
    #  Format: 'protocol::package'
    VCSCLIENTS=('bzr::bzr'
                'git::git'
                'hg::mercurial'
                'svn::subversion')
    
    #########################################################################
    # ARCHITECTURE, COMPILE FLAGS
    #########################################################################
    #
    CARCH="x86_64"
    CHOST="x86_64-pc-linux-gnu"
    
    #-- Compiler and Linker Flags
    # -march (or -mcpu) builds exclusively for an architecture
    # -mtune optimizes for an architecture, but builds for whole processor family
    CPPFLAGS="-D_FORTIFY_SOURCE=2"
    CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt"
    CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt"
    LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
    #-- Make Flags: change this for DistCC/SMP systems
    #MAKEFLAGS="-j2"
    #-- Debugging flags
    DEBUG_CFLAGS="-g -fvar-tracking-assignments"
    DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
    
    #########################################################################
    # BUILD ENVIRONMENT
    #########################################################################
    #
    # Defaults: BUILDENV=(!distcc color !ccache check !sign)
    #  A negated environment option will do the opposite of the comments below.
    #
    #-- distcc:   Use the Distributed C/C++/ObjC compiler
    #-- color:    Colorize output messages
    #-- ccache:   Use ccache to cache compilation
    #-- check:    Run the check() function if present in the PKGBUILD
    #-- sign:     Generate PGP signature file
    #
    BUILDENV=(!distcc color !ccache check !sign)
    #
    #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
    #-- specify a space-delimited list of hosts running in the DistCC cluster.
    #DISTCC_HOSTS=""
    #
    #-- Specify a directory for package building.
    #BUILDDIR=/tmp/makepkg
    
    #########################################################################
    # GLOBAL PACKAGE OPTIONS
    #   These are default values for the options=() settings
    #########################################################################
    #
    # Default: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug)
    #  A negated option will do the opposite of the comments below.
    #
    #-- strip:      Strip symbols from binaries/libraries
    #-- docs:       Save doc directories specified by DOC_DIRS
    #-- libtool:    Leave libtool (.la) files in packages
    #-- staticlibs: Leave static library (.a) files in packages
    #-- emptydirs:  Leave empty directories in packages
    #-- zipman:     Compress manual (man and info) pages in MAN_DIRS with gzip
    #-- purge:      Remove files specified by PURGE_TARGETS
    #-- debug:      Add debugging flags as specified in DEBUG_* variables
    #
    OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug)
    
    #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
    INTEGRITY_CHECK=(md5)
    #-- Options to be used when stripping binaries. See `man strip' for details.
    STRIP_BINARIES="--strip-all"
    #-- Options to be used when stripping shared libraries. See `man strip' for details.
    STRIP_SHARED="--strip-unneeded"
    #-- Options to be used when stripping static libraries. See `man strip' for details.
    STRIP_STATIC="--strip-debug"
    #-- Manual (man and info) directories to compress (if zipman is specified)
    MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
    #-- Doc directories to remove (if !docs is specified)
    DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
    #-- Files to be removed from all packages (if purge is specified)
    PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
    #-- Directory to store source code in for debug packages
    DBGSRCDIR="/usr/src/debug"
    
    #########################################################################
    # PACKAGE OUTPUT
    #########################################################################
    #
    # Default: put built package and cached source in build directory
    #
    #-- Destination: specify a fixed directory where all packages will be placed
    #PKGDEST=/home/packages
    #-- Source cache: specify a fixed directory where source files will be cached
    #SRCDEST=/home/sources
    #-- Source packages: specify a fixed directory where all src packages will be placed
    #SRCPKGDEST=/home/srcpackages
    #-- Log files: specify a fixed directory where all log files will be placed
    #LOGDEST=/home/makepkglogs
    #-- Packager: name/email of the person or organization building packages
    #PACKAGER="John Doe <john@doe.com>"
    #-- Specify a key to use for package signing
    #GPGKEY=""
    
    #########################################################################
    # COMPRESSION DEFAULTS
    #########################################################################
    #
    COMPRESSGZ=(gzip -c -f -n)
    COMPRESSBZ2=(bzip2 -c -f)
    COMPRESSXZ=(xz -c -z -)
    COMPRESSLRZ=(lrzip -q)
    COMPRESSLZO=(lzop -q)
    COMPRESSZ=(compress -c -f)
    
    #########################################################################
    # EXTENSION DEFAULTS
    #########################################################################
    #
    # WARNING: Do NOT modify these variables unless you know what you are
    #          doing.
    #
    PKGEXT='.pkg.tar.xz'
    SRCEXT='.src.tar.gz'
    
  • 相关阅读:
    接口
    java基础
    java的反射
    按照字典序打印所有的字符串
    求幂的问题
    时间复杂度与空间复杂度
    孩子们的游戏(圆圈中最后剩下的数)
    约瑟夫环问题
    翻转单词顺序列
    复杂链表的复制
  • 原文地址:https://www.cnblogs.com/geoffreyone/p/10336864.html
Copyright © 2020-2023  润新知