随笔分类 -  Debian与Ubuntu

摘要:测试中发现Debian下Vi编辑器在文本输入模式时,不能正确使用方向键和退格键,解决方法: gedit /etc/vim/vimrc.tiny set nocompatible set backspace=2 这样就切换到非兼容模式,并且退格键也可以正常使用了。 阅读全文
posted @ 2021-11-29 12:38 流~~苏 阅读(513) 评论(0) 推荐(0)
摘要:Debian从8.0开始,默认关闭了SSH。打开的方式如下: 1.修改/etc/ssh/sshd_config 2.将#PermitRootLogin yes 3.启动SSH服务,命令为:/etc/init.d/ssh start // 或者service ssh start 4.验证SSH服务状态 阅读全文
posted @ 2021-11-29 10:50 流~~苏 阅读(701) 评论(0) 推荐(0)
摘要:默认情况下debian是不允许以root用户登录的,只能以游客登录系统中,然后su到root用户下进行操作。 1.修改/etc/gdm3/daemon.conf文件,新增下面一行 [security] AllowRoot = true 2.修改/etc/pam.d/gdm-password,注释掉下 阅读全文
posted @ 2021-11-29 10:44 流~~苏 阅读(339) 评论(0) 推荐(0)