首页
关于
留言板
友情链接
Search
1
提取并下载谷歌应用商店软件(Google Play APK download)教程
4,904 阅读
2
常用VPS测试脚本代码:综合性能/硬件/IO Speed/CPU跑分/回程路由/硬盘读写/测速ping延迟测试一键脚本
363 阅读
3
不知道自己的VPS速度有多快?VPS测速脚本分享
349 阅读
4
一次在CentOS系统单用户模式下使用passwd命令破密失败的案例
305 阅读
5
宝塔面板首次登录,提示填入绑定手机号,强制提示且不能关闭
275 阅读
Windows
Linux
Kvm
程序源码
主机教程
NAS
登录
Search
标签搜索
命令
文件
服务器
etc
root
服务
server
重启
yum
程序
start
install
界面
windows
安装
update
宝塔
权限
chmod
默认
Typecho
累计撰写
160
篇文章
累计收到
11
条评论
首页
栏目
Windows
Linux
Kvm
程序源码
主机教程
NAS
页面
关于
留言板
友情链接
搜索到
160
篇与
的结果
2021-06-03
不知道自己的VPS速度有多快?VPS测速脚本分享
很多人买到自己的VPS后都不知道自己的VPS速度到底有多快,今天就给大家分享一个我自己常用的VPS测速脚本,专门用来测试VPS国内下载速度测试脚本:Superspeed,这个测试脚本优势就是能测国内包括电信、移动、联通几十个节点的上传和下载速度,以及延迟。一、Superspeed介绍Superspeed项目地址:https://github.com/ernisn/superspeedSuperspeed是从 oldking 的VPS测试脚本发展而来的,删除了性能测试部分,增加了全国几十个测试节点,包含电信、移动、联通三大运营商,测试目标VPS服务器在每个节点的上传和下载速度,以及延迟。其实这个VPS服务器测速脚本在之前的VPS测评中已经用过很多次了,具体的效果如图:二、Superspeed使用方法下面直接介绍这个VPS服务器测速脚本的使用方法:bash <(curl -Lso- https://git.io/superspeed)之后选择开始测速,回车即可。整个测速过程跟你VPS服务器的网络有关,一般在10-15分钟完成,如果耗时太久,可以通过Ctrl+C命令结束测速。
2021年06月03日
349 阅读
0 评论
0 点赞
2021-06-03
Centos6.8 yum报错及修复YumRepo Error: All mirror URLs are not using ftp, http[s] or file. Eg. Invalid
本来是要安装python的,结果发现yum报错YumRepo Error: All mirror URLs are not using ftp, http[s] or file. Eg. Invalid release/repo/arch combination/ removing mirrorlist with no valid mirrors: /var/cache/yum/x86_64/6/base/mirrorlist.txt0.查看yum配置vim /etc/yum.repos.d/CentOS-Base.repo 将原配置中的mirrorlist添加注释,并把baseurl删去注释–以base为例,其他的做同样修改[base] name=CentOS-$releasever - Base #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6发现配置文件中$ releasever,因此首先检查$releasever是否能获取到相应版本[root@hadoop1 yum.repos.d]# lsb_release -a LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch Distributor ID: CentOS Description: CentOS release 6.8 (Final) Release: 6.8 Codename: Final发现版本号获取没有问题,此时仍会报错https://vault.centos.org/6/extras/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" Trying other mirror. To address this issue please refer to the below knowledge base article https://access.redhat.com/articles/1320623 If above article doesn't help to resolve this issue please open a ticket with Red Hat Support. Error: Cannot retrieve repository metadata (repomd.xml) for repository: extras. Please verify its path and try againbaseurl链接http://mirror.centos.org/centos/已经没有资源了重新配置资源路径https://vault.centos.org/6.8/修改后的配置# CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors that are updated to and # geographically close to the client. You should use this for CentOS updates # unless you are manually picking other mirrors. # # If the mirrorlist= does not work for you, as a fall back you can try the # remarked out baseurl= line instead. # # [base] name=CentOS-$releasever - Base #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra baseurl=https://vault.centos.org/6.8/os/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #released updates [updates] name=CentOS-$releasever - Updates #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra baseurl=https://vault.centos.org/6.8/updates/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #additional packages that may be useful [extras] name=CentOS-$releasever - Extras #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras&infra=$infra baseurl=https://vault.centos.org/6.8/extras/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #additional packages that extend functionality of existing packages [centosplus] name=CentOS-$releasever - Plus #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus&infra=$infra baseurl=https://vault.centos.org/6.8/centosplus/$basearch/ gpgcheck=1 enabled=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #contrib - packages by Centos Users [contrib] name=CentOS-$releasever - Contrib #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib&infra=$infra baseurl=https://vault.centos.org/6.8/contrib/$basearch/ gpgcheck=1 enabled=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6再次运行,yum恢复正常
2021年06月03日
39 阅读
0 评论
0 点赞
2021-06-03
魔方云设置开机脚本让云主机开机提示一段字符
设置路径:魔方云主控-镜像和ISO-镜像管理-修改输入以下内容并保存即可,根据自己的需求修改提示内容echo -e "\n\n\nWelcome to YouWebCloud.Net `date`\n\n\n" > /etc/motd效果如下:
2021年06月03日
37 阅读
0 评论
0 点赞
2021-06-03
重启网卡提示Bringing up interface eth0:
当我们克隆centos虚拟机无法正常获取IP地址,重启网卡也提示Bringing up interface eth0: Device eth0 does not seem to be present,delaying initialization. [FAILED]: 该如何解决呢,今天为大家演示解决过程:
2021年06月03日
24 阅读
0 评论
0 点赞
2021-06-03
nokvm升级2.2.0 IP池无法更改备用DNS的解决办法
ssh登录主控 替换IpPoolsController.php文件(附件和目录结构如下)/home/wwwroot/control/app/Http/Controllers/IpPoolsController.phpIpPoolsController.zip
2021年06月03日
14 阅读
0 评论
0 点赞
1
...
11
12
13
...
32