MitseaBlog/content/post/c877a212f3e347d8b414c2c3afe.../index.zh-cn.md

45 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2023-04-04 13:19:06 +08:00
+++
author = "FlintyLemming"
title = "FreeBSD 更换中科大软件包源"
slug = "c877a212f3e347d8b414c2c3afe4e001"
date = "2023-04-04"
description = ""
categories = ["MineService"]
tags = ["FreeBSD"]
2024-07-31 16:52:27 +08:00
image = "https://img.mitsea.com/blog/posts/2023/04/FreeBSD%20%E6%9B%B4%E6%8D%A2%E4%B8%AD%E7%A7%91%E5%A4%A7%E8%BD%AF%E4%BB%B6%E5%8C%85%E6%BA%90/milad-fakurian-r1JDkQgwnC4-unsplash.avif"
2023-04-04 13:19:06 +08:00
+++
1. 创建 /usr/local/etc/pkg/repos 文件夹
2023-04-04 13:27:36 +08:00
2023-04-04 13:19:06 +08:00
```bash
mkdir -p /usr/local/etc/pkg/repos
```
2023-04-04 13:27:36 +08:00
2023-04-04 13:19:06 +08:00
2. 创建 /usr/local/etc/pkg/repos/FreeBSD.conf 文件
2023-04-04 13:27:36 +08:00
2023-04-04 13:19:06 +08:00
```bash
ee /usr/local/etc/pkg/repos/FreeBSD.conf
```
2023-04-04 13:27:36 +08:00
2023-04-04 13:19:06 +08:00
文件内容如下
2023-04-04 13:27:36 +08:00
2023-04-04 13:19:06 +08:00
```json
FreeBSD: {
url: "pkg+http://mirrors.ustc.edu.cn/freebsd-pkg/${ABI}/quarterly",
}
```
2023-04-04 13:27:36 +08:00
2023-04-04 13:19:06 +08:00
编辑完毕后,按一下 Esc按一下 A选择 Leave Editor
2023-04-04 13:27:36 +08:00
2024-07-31 16:52:27 +08:00
![](https://img.mitsea.com/blog/posts/2023/04/FreeBSD%20%E6%9B%B4%E6%8D%A2%E4%B8%AD%E7%A7%91%E5%A4%A7%E8%BD%AF%E4%BB%B6%E5%8C%85%E6%BA%90/Untitled.avif)
2023-04-04 13:27:36 +08:00
2023-04-04 13:19:06 +08:00
再按一下 A选择 Save Changes
2023-04-04 13:27:36 +08:00
2024-07-31 16:52:27 +08:00
![](https://img.mitsea.com/blog/posts/2023/04/FreeBSD%20%E6%9B%B4%E6%8D%A2%E4%B8%AD%E7%A7%91%E5%A4%A7%E8%BD%AF%E4%BB%B6%E5%8C%85%E6%BA%90/Untitled%201.avif)
2023-04-04 13:27:36 +08:00
2023-04-04 13:19:06 +08:00
3. 更新索引
2023-04-04 13:27:36 +08:00
2023-04-04 13:19:06 +08:00
```bash
pkg update -f
2023-04-04 13:27:36 +08:00
```