红联Linux门户
Linux帮助
当前位置: 红联Linux门户 > SuSE

OpenSUSE 一些命令

发布时间:2008-01-27 01:03:40来源:红联作者:nxzcc
OpenSUSE(yast)相当于Linux(setup) 嘿嘿 个人认为还比较好用,适合于我们不是很精通的吧。不用去记很多的命令。

使用vi编辑/etc/inittab文件,将里面的initdefault由5改为3就可以进文本模式

配置双IP
/etc/sysconfig/network # vi ifcfg-eth0
例子:
IPADDR='221.234.43.254'
NETMASK=''255.255.255.0'
IPADDR_0='58.19.87.254'
NETMASK_0=''255.255.255.0'

DNS修改 /etc/resolv.conf

要么可以用脚本设置,
#!/bin/bash
route add default gw "202.112.13.X " dev eth0


##查看服务在每个级别的运行状态
chkconfig --list
httpd 0:关闭 1:关闭 2:关闭 3:关闭 4:关闭 5:启用 6:关闭
bluetooth 0:关闭 1:关闭 2:关闭 3:关闭 4:关闭 5:关闭 6:关闭

#停止 HTTPD服务
[root@zhangxx etc]# service httpd stop
停止 httpd:[ 确定 ]
#启动httpd服务
[root@zhangxx etc]# service httpd start
启动 httpd:[ 确定 ]
#重起HTTD服务
[root@zhangxx etc]# service httpd restart
停止 httpd:[ 确定 ]
启动 httpd:[ 确定 ]
#让httpd 在机器启动的时候在运行级别上停止
[root@zhangxx etc]# chkconfig --level 345 httpd off
[root@zhangxx etc]# chkconfig --list |grep httpd
httpd 0:关闭 1:关闭 2:关闭 3:关闭 4:关闭 5:关闭 6:关闭
#让httpd 在机器启动的时候在运行级别上启动
[root@zhangxx etc]# chkconfig --level 345 httpd on
[root@zhangxx etc]# chkconfig --list |grep httpd
httpd 0:关闭 1:关闭 2:关闭 3:启用 4:启用 5:启用 6:关闭
[root@zhangxx etc]#

linux 查看进程信息
查看进程的命令有很多,我只是列出了我最常用的几个。
netstat -tln //查看服务监听端口

netstat //查看进程号

ps -aux //查看进程号

ps -aux | more //全部查看

ps -ef | grep mysql //查看mysql的进程

kill -9 3306 //强制杀掉进程号3306

防火墙的设置

设置防火墙: yast (setup)

查看防火墙设置: iptables -L

关闭防火墙: iptables -F

Red Hat linux as 4 修改 /etc/sysconfig/iptables
增加 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
表示允许访问80端口
要想要配置生效可以重启电脑,或者允许下面两个命令:
# service iptables stop
# service iptables start
文章评论

共有 2 条评论

  1. uncline 于 2008-01-29 21:04:06发表:

    谢谢!?
    学习了!

  2. uncline 于 2008-01-29 21:03:07发表:

    :0wszxc