V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  sbldehanhan  ›  全部回复第 10 页 / 共 19 页
回复总数  367
1 ... 2  3  4  5  6  7  8  9  10  11 ... 19  
2023-10-19 11:03:03 +08:00
回复了 sbldehanhan 创建的主题 Linux Ubuntu20.04.5 没有配置清华源, update 什么是清华源?
@asdf12303116 #25 一直这样吗?还是最近改的?以前没注意,都是直接换国内源。
2023-10-18 09:20:54 +08:00
回复了 sbldehanhan 创建的主题 Linux Ubuntu20.04.5 没有配置清华源, update 什么是清华源?
@totoro52 #23 我的是 20.04 ,不是新版本,也会跳到清华源。应该是服务端做了重定位。
2023-10-17 14:36:44 +08:00
回复了 sbldehanhan 创建的主题 Linux Ubuntu20.04.5 没有配置清华源, update 什么是清华源?
@ziwen1943 #16 了解了,感谢。
2023-10-17 14:35:56 +08:00
回复了 sbldehanhan 创建的主题 Linux Ubuntu20.04.5 没有配置清华源, update 什么是清华源?
@unclemcz #18 我开代理不跳,关了代理就跳到清华源了。应该是楼上大哥说的那种机制。
2023-10-17 13:54:53 +08:00
回复了 sbldehanhan 创建的主题 Linux Ubuntu20.04.5 没有配置清华源, update 什么是清华源?
@vicacheung #11 是吗?那以后是不是不需要手动换源了?
2023-10-17 13:52:13 +08:00
回复了 sbldehanhan 创建的主题 Linux Ubuntu20.04.5 没有配置清华源, update 什么是清华源?
@ysc3839 #9
```
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://cn.archive.ubuntu.com/ubuntu/ focal universe
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal universe
deb http://cn.archive.ubuntu.com/ubuntu/ focal-updates universe
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://cn.archive.ubuntu.com/ubuntu/ focal multiverse
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ focal-updates multiverse
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://cn.archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu focal partner
# deb-src http://archive.canonical.com/ubuntu focal partner

deb http://security.ubuntu.com/ubuntu focal-security main restricted
# deb-src http://security.ubuntu.com/ubuntu focal-security main restricted
deb http://security.ubuntu.com/ubuntu focal-security universe
# deb-src http://security.ubuntu.com/ubuntu focal-security universe
deb http://security.ubuntu.com/ubuntu focal-security multiverse
# deb-src http://security.ubuntu.com/ubuntu focal-security multiverse
```
都是自带的,我没改过。
2023-10-17 11:44:01 +08:00
回复了 sbldehanhan 创建的主题 Linux Ubuntu20.04.5 没有配置清华源, update 什么是清华源?
@dangyuluo #6 没有。一切正常,可以更新缓存。我好奇他到底配置到哪儿了。
2023-10-17 11:42:44 +08:00
回复了 sbldehanhan 创建的主题 Linux Ubuntu20.04.5 没有配置清华源, update 什么是清华源?
@czphoenix #5 没有。我 grep 了整个 apt 目录,没有发现 tsinghua 的字段。
2023-10-17 11:01:50 +08:00
回复了 sbldehanhan 创建的主题 Linux Ubuntu20.04.5 没有配置清华源, update 什么是清华源?
@anytk #2 这个怎么看?从哪儿看出来有清华源?
2023-10-17 10:57:31 +08:00
回复了 sbldehanhan 创建的主题 Linux Ubuntu20.04.5 没有配置清华源, update 什么是清华源?
@cheng6563 #1 那它不会添加到 source.list 文件中吗?
2023-10-13 11:18:39 +08:00
回复了 sbldehanhan 创建的主题 C++ 这段代码有问题吗?
@hitmanx #18 我的意思是根据参数创建对应个数的条件变量的实例。vector 里的指针不是指向一个条件变量,而是指向参数个条件变量。
2023-10-13 09:35:19 +08:00
回复了 sbldehanhan 创建的主题 C++ 这段代码有问题吗?
@hitmanx #10 但是我需要多个条件变量,数量也不想写死。而是能在类实例化时用参数指定。
2023-10-13 09:33:07 +08:00
回复了 sbldehanhan 创建的主题 C++ 这段代码有问题吗?
@cnbatch #9 那你的 vector 里面的元素数量是写死的?还是在初始化时可以根据参数设置?
2023-10-13 09:30:01 +08:00
回复了 sbldehanhan 创建的主题 C++ 这段代码有问题吗?
@cnbatch #5 无论怎么 back ,调用的都是拷贝构造函数。条件变量把拷贝构造函数删了,也就是不允许复制。
2023-10-12 17:33:31 +08:00
回复了 sbldehanhan 创建的主题 C++ 这段代码有问题吗?
@sheyueji #2 那我也需要有条件变量的实例。我就是要在初始化时根据参数指定的数量创建条件变量的个数。
2023-10-12 17:31:33 +08:00
回复了 sbldehanhan 创建的主题 C++ 这段代码有问题吗?
@crissx #1 牛啊。说的好详细啊。
2023-10-10 14:07:54 +08:00
回复了 sariya 创建的主题 Pixel Google store 能发到国内吗
国内说的是中国大陆吗?会上架 pixel ?那不就相当于在中国销售了吗?
2023-10-10 09:43:17 +08:00
回复了 lxiian 创建的主题 站长 把你们的博客交出来
现在哪个平台最好?
Ib98VU_8TYl 已用
1 ... 2  3  4  5  6  7  8  9  10  11 ... 19  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2711 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 20ms · UTC 11:25 · PVG 19:25 · LAX 03:25 · JFK 06:25
Developed with CodeLauncher
♥ Do have faith in what you're doing.