Debian 9更新源报错public key is not available
在安装Debian 9之后修改了更新源。 ```csharp nano /etc/apt/sources.list ``` ```csharp deb http://archive.debian.org/debian/ stretch main contrib non-free deb http://archive.debian.org/debian/ stretch-prop
在安装Debian 9之后修改了更新源。 ```csharp nano /etc/apt/sources.list ``` ```csharp deb http://archive.debian.org/debian/ stretch main contrib non-free deb http://archive.debian.org/debian/ stretch-prop
Debian 9默认的ocserv是0.11。6的版本,会有一些兼容性的问题,加上Debian没有CentOS的EPEL套件,所以只能手工编译,来回折腾了好几遍终于编译成功了。 ```csharp apt update apt install wget net-tools curl less wget https://github.com/radcli/radcli/releases/
Github项目:https://github.com/zhboner/realm 特点 支持DDNS 只要传入一个域名,那么就能自动后台更新解析。 支持DDNS 只要传入一个域名,那么就能自动后台更新解析。 高效,低消耗 依托于Rust语言,Realm保证内存安全。另外,相较于采用Go语言编写的Brook和gost,Realm执行速度更快,资源占用更低,非常适合在低配置的主机上使
有一台主机是Debian 10的,网上找了一个方法修改SSH端口,发现只要机器重启后,端口还是会回到默认的22端口。通过命令查看SSH服务也没有激活。后来在某位朋友的指点下再修改了ssh.socket就正常。具体方法如下: 1、修改ssh_config文件 ```csharp nano /etc/ssh/sshd_config ``` 在文件中增加端口 ```csharp Por
编辑源地址文件 ```csharp nano /etc/apt/sources.list ``` 腾讯源 ```csharp deb http://mirrors.cloud.tencent.com/debian/ buster main non-free contrib deb http://mirrors.cloud.tencent.com/debian-security b
最近Debian9源失效了,无法更新,查了一下,原来是地址变了,替换一下就好了 ```csharp sudo sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list sudo sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list.d
此教程基于 Debian 一、卸载旧版 cURL ```csharp apt-get remove curl ``` 二、下载最新版的及其依赖 截至发文日,最新版本为 7.87.0,直接使用以下命令即可: ```csharp mark curl cd curl wget http://ftp.cn.debian.org/debian/pool/main/c/
今天在重新安装的Debian 10上准备更新一下源, ```csharp root@server:~# apt-get update ``` 结果出现报错如下报错,无法完成更新 ```csharp Get:1 http://deb.debian.org/debian buster InRelease [122 kB] Get:2 http://security.debian.or
UFW安装 ```csharp sudo apt install ufw ``` 基本控制命令 开机启动 ```csharp sudo ufw enable ``` 当前运行状态 ```csharp sudo ufw status verbose ``` 关闭/启动/重启命令 ```csharp sudo ufw stop|start|restart ``` 开启
直接编辑vim的配置文件 ```csharp vim /usr/share/vim/vim80/defaults.vim ``` ```csharp 将 set mouse=a 改为:set mouse-=a ``` 然后按ESC后`:wq` 保存即可!