分类
子分类
专题
标签
排序
Debian安装sudo
最近试用Debian,用root用户登录,执行sudo apt-get install ...时,居然提示:sudo: command not found 先su到root用户,输入su root,然后按照提示输入相应的root密码,就可登录到root权限下。...
VPS安装Curl
如果运行脚本时提示 curl: command not found ,那是因为你的 VPS 没装 Curl. ubuntu/debian 系统安装 Curl 方法: apt-get update -y && apt-get install curl -y centos 系统安装 Cur...
vps测速整合脚本—整合bench.sh/LemonBench/UnixBench/路由测试等
脚本整合了1. bench.sh2. LemonBench3. superspeed4. superbench修复版5. 91yuntest6. ZBench7. superbench修复+多节点版8. UnixBench9. GeekBench510.kos回程测试11.超内存测试12.路由测试(注...
VPS一键测试脚本—测速/路由
wget -qO- git.io/superbench.sh | bash VPS测试 wget -qO- sb.oldking.net | bash wget -qO- bench.sh | bash wget -qO- https://git.io/Jvh0J | bash bash <(curl -sL mcnb.top/besttcp.sh...
在Debian 10中安装wget
听说debian10自带bbr,想体验一下不同的系统,正好我的buyvm大盘鸡重装系统,于是从centos7换到了debian10. 一开始用wget的时候竟然没有安装......有点蛋疼 用sudo apt-get install wget后也不成功...
wget: command not found 解决方案
新买的vps有时候在执行wget时会出现-bash: wget: command not found: 如果你是centos系统的话,可以用yum来安装wget yum -y install wget 执行完后就可以使用wget了 如果你是debian/Ubuntu,可以...
contabo的vps免费换CPU的邮件模板
商家背景 contabo成立于2003年,最初以Giga-International作为其品牌运营。经过多年发展,他们已经从一家小型公司发展成为欧洲最大且最受人尊重的主机托管公司之一。主要业务是独立服务器出租和...
解决类似ERROR: The certificate of `github.com’ is not trusted.的问题
近日,空白论坛又回来了,于是下载开心版宝塔专业版玩玩. 在安装的时候,出现了ERROR: The certificate of `xxxxx’ is not trusted.(xxxx为某个网站) 出现这个的原因是该网站的证书不被信任。 解...
Linux常用命令
查询目录中的内容:ls ls -a :显示所有文件,包括隐藏文件ls -l :显示详细信息,也可写作 llls -d :查看目录属性ls -h :人性化显示文件大小ls -i :显示inode 这些命令不加文件默认会操作当前文...
修改linux服务器的root密码
使用putty等连接工具连接到服务器中,使用root账户登录 然后执行sudo passwd root 此时会提示输入新的密码。你输入新的密码,再确认输入一次密码回车,就可以完成root密码的修改。 如果你是debia...
Linux vps修改主机名
ssh连接你的服务器,分别对应系统输入以下命令 centos: vim /etc/hostname debian/ubuntu: nano /etc/hostname 会看到你现有的主机名,删了它重新输入你要定义的主机名保存即可,重启一下你的 ...