首页

慈城古县城

慈城古县城

yay 报错 response decoding failed: invalid character ‘<‘ looking for beginning of value;

yay 报错 response decoding failed: invalid character ‘<‘ looking for beginning of  value;

执行以下命令:

yay --aururl "https://aur.archlinux.org" --save

yay安装失败的解决方案

yay安装失败的解决方案

常规安装方法

$ git clone https://aur.archlinux.org/yay
$ cd yay
$ makepkg -si

通常情况执行完上面所示命令即可安装成功,但是经常会遇到网络错误的情况,主要原因有如下两点

  1. go语言的软件安装源被屏蔽
  2. github访问受限

所以解决思路要么采取科学上网软件,或者采取我以下所说的方法。

解决方案

1. go语言换源

本文采用Goproxy.cn源,官网有换源方法,这里也贴出来

  1. 换源
$ go env -w GO111MODULE=on
$ go env -w GOPROXY=https://goproxy.cn,direct
  1. 使更换的源生效
  • 临时生效
$ export GO111MODULE=on
$ export GOPROXY=https://goproxy.cn
  • 永久生效
$ echo "export GO111MODULE=on" >> ~/.profile
$ echo "export GOPROXY=https://goproxy.cn" >> ~/.profile
$ source ~/.profile

完成以上步骤以后,可以再次尝试

$ makepkg -si

若还存在网络问题可以继续往下看,修改hosts

2.修改hosts访问github

github hosts如下:

# GitHub Host Start
​
185.199.108.154              github.githubassets.com
140.82.112.22                central.github.com
185.199.108.133              desktop.githubusercontent.com
185.199.108.153              assets-cdn.github.com
185.199.108.133              camo.githubusercontent.com
185.199.108.133              github.map.fastly.net
199.232.69.194               github.global.ssl.fastly.net
140.82.114.3                 gist.github.com
185.199.108.153              github.io
140.82.113.3                 github.com
140.82.112.5                 api.github.com
185.199.108.133              raw.githubusercontent.com
185.199.108.133              user-images.githubusercontent.com
185.199.108.133              favicons.githubusercontent.com
185.199.108.133              avatars5.githubusercontent.com
185.199.108.133              avatars4.githubusercontent.com
185.199.108.133              avatars3.githubusercontent.com
185.199.108.133              avatars2.githubusercontent.com
185.199.108.133              avatars1.githubusercontent.com
185.199.108.133              avatars0.githubusercontent.com
185.199.108.133              avatars.githubusercontent.com
140.82.112.10                codeload.github.com
52.217.207.1                 github-cloud.s3.amazonaws.com
52.216.78.4                  github-com.s3.amazonaws.com
52.217.194.169               github-production-release-asset-2e65be.s3.amazonaws.com
52.216.131.131               github-production-user-asset-6210df.s3.amazonaws.com
52.216.28.204                github-production-repository-file-5c1aeb.s3.amazonaws.com
185.199.108.153              githubstatus.com
64.71.144.202                github.community
185.199.108.133              media.githubusercontent.com
​
# Please Star : https://github.com/ineo6/hosts
# Mirror Repo : https://gitee.com/ineo6/hosts
# Update at: 2021-12-01 08:39:41
​
# GitHub Host End
  1. 修改hosts
$ sudo vim /etc/hosts
  1. 将以上github host内容追加到/etc/hosts文件中
  2. 使更新的hosts立即生效
$ sudo systemctl restart nscd

在 Arch Linux 中安装 Yay

先决条件

打开终端并运行以下命令。出现提示时提供管理员密码。这些步骤需要 base-devel 包和 git 包进行编译和安装。

sudo pacman -S base-devel
sudo pacman -S git

安装 Yay

yay 包在 Arch 仓库中有两个版本,如下所示。

对于本指南,我使用了稳定版。现在,进入 /opt 目录并克隆 git 仓库。

cd /opt
sudo git clone https://aur.archlinux.org/yay.git

更改源目录的所有者。将 cc2 替换为你的用户名。

sudo chown -R cc2:users ./yay

如果你不知道用户或组,可以使用以下示例查找用户和组。

id cc2

进入目录并编译。

cd yay
makepkg -si

这样就完成了 Arch Linux 中 Yay 的安装。

Manjaro 如果 yay 使用了 aur 的清华源,出现报错解决方法

如果yay使用了aur的清华源,参考以下文章关于移除 AUR 镜像的通知

所以更换aur源即可:

yay –aururl “https://mirrors.aliyun.com/archlinuxcn” –save

yay –aururl “这里可以换你想用得源” –save

# 官方源
http://repo.archlinuxcn.org
# 163源
http://mirrors.163.com/archlinux-cn
# 中科大
https://mirrors.ustc.edu.cn/archlinuxcn
# 阿里
https://mirrors.aliyun.com/archlinuxcn

更换为中科大arch软件源:sudo vim /etc/pacman.conf

1、把下面代码放到文件的最后位置:

[archlinuxcn]

SigLevel = Optional TrustedOnly

# (下面得源任选一个)
# 官方源
Server = http://repo.archlinuxcn.org/$arch
# 163源
Server = http://mirrors.163.com/archlinux-cn/$arch
# 中科大
Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch
# 阿里
Server = https://mirrors.aliyun.com/archlinuxcn/$arch

2、然后更新软件源:

sudo pacman -Syy && sudo pacman -S archlinuxcn-keyring

安装yay

sudo pacman -S yay

#安装完成后再次更新
yay -Syyu && yay -Sys

/usr/bin/env: “python”: 没有那个文件或目录

/usr/bin/env: “python”: 没有那个文件或目录解决方案

创建一个链接符号到 python 命令:

sudo ln -s /usr/bin/python3 /usr/bin/python

小精灵

小精灵

某某新华书店

新华书店

Linux下如何创建和取消软连接 soft link

建立软连接:

ln -s /usr/nodejs/bin/npm /usr/local/bin/ 
ln -s /usr/nodejs/bin/node /usr/local/bin/ 

删除软连接:

rm -rf /usr/local/bin/node

查应用程序路径

which vim

被温暖了一下

又不见了