平时总能遇到一些命令想不起来,现在这里做一个记录,把每次想不起来,还要去查的命令在这里积累起来.
cat
/proc/version
查看当前内核版本号
ps
-e
查看所有进程
u
vi中撤消一次操作的命令
修改telnet服务配置文件
vi /etc/xinetd.d/telnet
service telnet
{
disable = yes
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
将disable=yes行前加#,或者改为disable=no
重新启动xinetd守护进程
由于telnet服务也是由xinetd守护的,所以安装完telnet-server,要启动telnet服务就必须重新启动xinetd
[root@localhost root]#service xinetd restart
关闭系统的防火墙
linux系统默认的防火墙是“high”。
(方法:[root@localhost root]# setup
选择:“firewall configuration”
选择:security level——“no firewall”)
如果想允许root以telnet登入linux主机?因为 telnet
不是很安全,自然预設的情況之下就是无法允许 root 以 telnet 登入
Linux 主机!想要开放 root 以 telnet 登入 Linux
主机的話,可以这样做:
vi /etc/pam.d/login
在 auth
required
/lib/security/pam_securetty.so
这行前加 # ,即把这行注释掉就行啦!
阅读(886) | 评论(0) | 转发(0) |