debian换源方法

nano /etc/apt/sources.list注释掉原来的所有源粘贴阿里云镜像源:deb http://mirrors.aliyun.com/debian/ stretch main non-f

2020-02-06 通过网页

debian以root身份通过ssh登录操作系统

nano /etc/ssh/sshd_config将#PermitRootLogin prohibit-password修改为PermitRootLogin yes重启ssh即可s

2020-02-06 通过网页

debian中的ifconfig等命令不能使用之解决办法

当我们安装好Linux后,因为里面有很多功能服务没有安装(如ifconfig、vsftpd) 所以出现一些command  '***** ' not 

2020-02-06 通过网页

debian静态ip配置

1.在虚拟机的编辑-虚拟网络编辑器里面,把dhcp服务关掉。 2. 使用 ip addr 或者 ifconfg查看网卡是什么 比如 ens33 静态ip命令:vim /etc/network/inte

2020-02-06 通过网页

解决Debian下Vi编辑器的方向键和退格键失灵的问题

发现Debian下Vi编辑器在文本输入模式时,不能正确使用方向键和退格键,解决方法: 用vi 打开/etc/vim/vimrc.tiny,输入以下两行: set nocompati

2020-02-06 通过网页

centos7关闭防火墙

有些人安装的linux的系统默认防火墙不是iptables,而是firewall,那就得使用以下方式关闭防火墙了。 >>>关闭防火墙 systemctl stop 

2020-02-03 通过网页

Debian删除文件(夹)命令

Debian删除文件(夹)命令在Debian下删除文件一般用rm命令  删除文件夹用rmdir命令  如果想要屏蔽中间的询问,加上参数 -f  这些很简单,保是

2020-02-01 通过网页