^_^

2005年11月11日星期五

Linux tips

Linux下的MAC地址更改
1.首先必须关闭网卡设备,否则会报告系统忙,无法更改。命令是:“/sbin/ifconfig eth0 down”
2.修改MAC地址,这一步较Windows中的修改要简单。命令是:“/sbin/ifconfig eth0 hw ether 00AABBCCDDEE”
3.重新启用网卡,“/sbin/ifconfig eth0 up”网卡的MAC地址更改就完成了。
与网络设置有关的几个文件
1.dns:/etc/resolv.conf
2.ip:/etc/sysconfig/network-scripts/ifcfg-eth0
3.gateway:/etc/sysconfig/network
4.restart network:service network restart,/etc/rc.d/init.d/network restart
5.set services:ntsysv,setup
/etc/hosts: 包含一个IP地址和对应的节点名。一般来说,/etc/hosts只包含本机的地址,如在只有loopback的情况下,/etc/hosts类似于“127.0.0.1 localhost”,只有一行。
/etc/resolv.conf: 设置名字服务器,给出名子服务器的地址和本网络的DNS域名(域名是本机完整的节点名去掉第一部分).一个例子如下: domain mmm.com,nameserver 10.82.17.68。可以在/etc/resolv.conf中设置不止一个名字服务器,每个都必须一nameserver开头并独占一行。
用当前路径作提示符
对于bash,在\root\.bashrc文件中加入“PS1="\$PWD>"”
对于tcsh,在\root\.tcshrc里加入“set prompt="%/>"”
设置启动后是进入X Windows还是Console
编辑/etc/inittab文件,当id:3:initdefautl中的3为5时,linux启动后自动进入xwindow界面,否则直接进入console界面。
添加PATH路径
PATH=$PATH:/sbin
查看当前SHELL名
echo $SHELL
更改shell
chsh -s /bin/bash
使用鼠标中键滚轴
在2个config文件:
1./etc/X11/XF86Config
2./etc/X11/XF86Config-4
在 “section "pointer"”段加入:
Section "pointer"
Protocol "IMPS/2"
Device "/dev/mouse"
ZAxisMapping 4 5
ChordMiddle
查看启动信息
1.demesg
2.less /var/log/messages
查看linux的内核版本
1。uname -a
2。less /proc/version
3。rpm -q kernel
切换桌面环境gnome/kde等
switchdesk
本站文章除注明外,均为本站原创
转载请注明文章转载自: 大笨熊乐园 [ https://blog.foolbear.com/ ]
文章标题: Linux tips
文章地址: https://blog.foolbear.com/2008/11/linux-tips.html

没有评论 :

发表评论

Related Posts with Thumbnails