zoukankan      html  css  js  c++  java
  • manjaro 基本系统配置

    1.更新源

    vim /etc/pacman.conf
    [archlinuxcn]
    SigLevel = Never
    Server = http://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch #国内源
    sudo pacman -Syy

    2.解决签名问题

    2.1:屏蔽签名

    修改/etc/pacman.conf,将所有原有的SigLevel=××××××注释掉,添加SigLevel = Never即可。

    2.2:安装archlinuxcn签名

    sudo pacman -Syy
    sudo pacman -S archlinuxcn-keyring 

    2.3:安装pgp签名

    pacman -Syu haveged
    systemctl start haveged
    systemctl enable haveged
    rm -rf /etc/pacman.d/gnupg

    2.4:重新签名

    pacman-key --init
    pacman-key --populate manjaro
    pacman-key --populate archlinuxcn

     3 安装aur助手

    sudo pacman -S yaourt
    vim /etc/yaourtrc
    AURURL="https://aur.tuna.tsinghua.edu.cn"  
    sudo pacman -S yay
    yay --aururl "https://aur.tuna.tsinghua.edu.cn" --save #这
    一句添加到/.config/yay/config.json
    yay -P -g

    翻译 朗读 复制 正在查询,请稍候…… 重试 朗读 复制 复制 朗读 复制 via 谷歌翻译(国内)

  • 相关阅读:
    CSS3---用户界面
    CSS3---媒体查询与响应式布局
    HDU 5285 wyh2000 and pupil
    POJ 2488 A Knight's Journey
    POJ 1067 取石子游戏
    POJ 2777 Count Color
    POJ 3259 Wormholes
    Project Euler 26 Reciprocal cycles
    POJ 2104 K-th Number
    POJ 1013 Counterfeit Dollar
  • 原文地址:https://www.cnblogs.com/yunweiweb/p/11801579.html
Copyright © 2011-2022 走看看