
Debian/ubuntu system delete docker virtual bridge
After installing docker, sometimes the docker is uninstalled, and the virtual bridge is still there. At this time, the docker bridge needs to be manually uninstalled
ifconfig
to view the name of the network card created by docker, which usually starts with br and docker0
Install the brctl tool
1
2
3
4
5
6
7
Fedora/Centos system
$ yum install -y bridge-utils
Debian/Ubuntu system
$ apt-get install -y bridge-utils
stop docker service
systemctl stop docker
Stop the docker virtual network card
ifconfig br-69ec69521ef3 down && ifconfig docker0 down
Delete virtual network card
brctl delbr br-69ec69521ef3 && brctl delbr docker0
💘 相关文章
- debian/ubuntu系统删除docker虚拟网桥
- ubuntu/Debian出现 libcrypto.so.1.1: cannot open shared object file:的解决方法
- debian/Ubuntu simple firewall setupthing
- debian,ubuntu赋予普通用户绑定端口权限的方法
- ubuntu、debian等Linux系统ssh登陆显示系统信息的软件推荐
- 在ubuntu和Debian系统单网卡绑定多个IP v6地址的方法
- debian/Ubuntu系统超级简单的防火墙配置
- debian /ubuntu系统安装测速软件的方法
- how can do speed test network for debian /ubuntu?
- debian安装docker和Docker面板Portainer并部署Wordpress