linux命令

设置计时器。 crontab –e

服务重启 service httpd restart 或者   /etc/init.d/bastille-firewall restart

改变文件的 所属用户和用户组 chown  root:root  index.html

/etc/init.d/postfix reload &> /dev/null  服务重载

 

&> /dev/null  的意思是屏蔽回显。

which ‘mysql' > /dev/null 2> /dev/null 查找mysql的目录禁止回显

mysql 用户赋予权限命令

grant select,update,insert,delete on *.* to root@192.168.10.174 identified by "123456"

也可以这样写 grant All on  databasename.tablename  to username@ip  identified by  password

 

今天使用 grant all on *.* to root identified by “123456” 赋值所有权限给其他用户。后来我在grant命令的时候还是用不了,原来

grant ALL [PRIVILEGES]设置除GRANT OPTION之外的所有简单权限

要使其他用户还具有grant的权限就必须 再次 grant grant option on *.* to root identified by ‘123456’ 才能使用户具有grant权限。

修改完,之后,别忘了刷新哦。命令 flush privileges

ubuntu 下设置静态ip

1。设定IP


sudo gedit  /etc/network/interfaces
auto lo
iface lo inet loopback            #lo 是本地回环地址:127.1
auto eth0
iface eth0 inet static
address 192.168.1.152
gateway 192.168.1.1
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255      #设定eth0的IP
这样,IP并没有立即生效。


sudo /etc/init.d/networking restart


2。这时候就能ping到局域网中的电脑了。但是上不了Internet,是因为没有设置DNS的原因。DNS信息保存在/etc/resolv.conf中

,一旦更改,立即生效。


sudo gedit /etc/resolv.conf
nameserver 208.67.222.222
nameserver 208.67.220.220


现在可以上网了。
附网卡设置相关命令:
查看网卡信息: ifconfig
设定一个网卡IP:ifconfig eth1 192.168.1.10 netmask 255.255.255.0 
重启网卡使设定生效:sudo /etc/init.d/networking restart
更改MAC地址:ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx
查看路由相关信息:route -n

posted @ 2009-10-15 16:20  phpzxh  阅读(193)  评论(0编辑  收藏  举报